1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-27 09:09:44 +02:00
documize/gui/app/styles/view/folder/wizard.scss

102 lines
1.8 KiB
SCSS
Raw Normal View History

2017-03-24 17:43:41 +00:00
.new-document-wizard {
@include content-container();
2017-03-24 17:43:41 +00:00
.import-document-button {
2017-03-23 18:28:42 +00:00
width: 100%;
padding: 20px;
2017-03-24 17:43:41 +00:00
margin: 0 0 30px 0;
2017-03-23 18:28:42 +00:00
text-align: center;
color: $color-gray;
cursor: pointer;
font-size: 1.2rem;
2017-03-23 18:28:42 +00:00
line-height: 1.7rem;
@include ease-in();
@extend .no-select;
border: 1px solid $color-stroke;
background-color: $color-off-white;
2017-03-23 18:28:42 +00:00
&:hover {
border-color: $color-link;
color: $color-link;
}
> .dz-preview,
.dz-processing {
display: none !important;
}
}
> .input-control {
> .list-wrapper {
> .template-list {
margin: 0;
padding: 0;
2017-03-23 18:28:42 +00:00
.item {
2017-03-24 17:43:41 +00:00
@include ease-in();
@include border-radius(4px);
list-style: none;
cursor: pointer;
display: inline-block;
background-color: $color-blue;
margin: 0 20px 20px 0;
padding: 12px 0 0 20px;
width: 423px;
height: 60px;
position: relative;
&:hover {
@include ease-in();
border-color: $color-link;
> .template-actions {
display: block;
}
2017-03-23 18:28:42 +00:00
}
> .template-actions {
@include ease-in();
display: none;
position: absolute;
top: 10px;
right: 8px;
.material-icons {
color: $color-stroke;
font-size: 1rem;
}
2017-03-23 18:28:42 +00:00
}
> .details {
width: 350px;
2017-03-24 17:43:41 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2017-03-23 18:28:42 +00:00
> .title {
font-size: 1rem;
font-weight: normal;
color: $color-white;
letter-spacing: 0.5px;
margin-top: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
> .desc {
color: $color-white;
font-size: 0.8rem;
margin-top: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2017-03-23 18:28:42 +00:00
}
}
}
}
}
}
2017-03-24 17:43:41 +00:00