127 lines
2.6 KiB
SCSS
127 lines
2.6 KiB
SCSS
.attachments {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.attachments-header {
|
|
background: $whitish;
|
|
@include clearfix;
|
|
padding: .5rem 1rem;
|
|
.button {
|
|
float: right;
|
|
padding: .2rem 6rem;
|
|
}
|
|
.icon,
|
|
.attachments-num,
|
|
.attachments-text {
|
|
@extend %medium;
|
|
margin-right: .5rem;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
}
|
|
|
|
.single-attachment {
|
|
@include table-flex();
|
|
@extend %small;
|
|
align-items: center;
|
|
border-bottom: 1px solid #cdcdcd;
|
|
padding: 1rem 0 1rem 1rem;
|
|
position: relative;
|
|
&:last-child {
|
|
border: 0;
|
|
}
|
|
.attachment-name {
|
|
@include ellipsis(200px);
|
|
@include table-flex-child(1, 200px);
|
|
padding-right: 1rem;
|
|
.icon {
|
|
margin-right: .5rem;
|
|
}
|
|
}
|
|
.attachment-comment {
|
|
@include table-flex-child(10, 300px);
|
|
.attachment-size {
|
|
color: $gray-light;
|
|
margin-left: .5rem;
|
|
}
|
|
}
|
|
.settings {
|
|
@extend %large;
|
|
color: $gray-light;
|
|
display: none;
|
|
}
|
|
.editable {
|
|
@include table-flex-child(10, 300px);
|
|
display: none;
|
|
}
|
|
.attachment-delete {
|
|
@include table-flex-child(1, 10px);
|
|
}
|
|
.icon-delete {
|
|
@extend %large;
|
|
color: $gray-light;
|
|
&:hover {
|
|
color: $red;
|
|
}
|
|
}
|
|
.editable-attachment-deprecated {
|
|
padding-left: 1rem;
|
|
span {
|
|
color: $gray-light;
|
|
}
|
|
input {
|
|
margin-right: .5rem;
|
|
&:checked {
|
|
+ span {
|
|
color: $grayer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.editable-attachment-comment {
|
|
input {
|
|
color: $white;
|
|
}
|
|
}
|
|
&.edit {
|
|
.settings,
|
|
.attachment-comment {
|
|
display: none;
|
|
}
|
|
.editable {
|
|
display: block;
|
|
}
|
|
}
|
|
&:hover {
|
|
&:not(.edit) {
|
|
@include transition (background .2s ease-in);
|
|
background: lighten($green-taiga, 60%);
|
|
.settings {
|
|
@include transition (opacity .2s ease-in);
|
|
display: block;
|
|
position: absolute;
|
|
top: 1rem;
|
|
}
|
|
.icon-edit {
|
|
right: 4rem;
|
|
}
|
|
.icon-drag-v {
|
|
cursor: move;
|
|
right: 1rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.more-attachments {
|
|
@extend %small;
|
|
border-bottom: 1px solid $gray-light;
|
|
color: $gray-light;
|
|
display: block;
|
|
padding: 1rem 0 1rem 1rem;
|
|
.more-attachments-num {
|
|
color: $green-taiga;
|
|
margin-left: .5rem;
|
|
}
|
|
}
|