33 lines
563 B
SCSS
33 lines
563 B
SCSS
/***** Attachments *****/
|
|
/* Styles attachments inside posts, articles and comments */
|
|
.attachments {
|
|
.attachment-item {
|
|
padding-left: 20px;
|
|
position: relative;
|
|
margin-bottom: 10px;
|
|
|
|
&:last-child { margin-bottom: 0; }
|
|
|
|
.attachment-icon {
|
|
color: $text_color;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 5px;
|
|
}
|
|
|
|
[dir="rtl"] & {
|
|
padding-left: 0;
|
|
padding-right: 20px;
|
|
|
|
.attachment-icon {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.upload-dropzone span {
|
|
color: $secondary-text-color;
|
|
}
|