Elastic: Remove border from attachments list in upload widget

pull/6759/merge
Aleksander Machniak 5 years ago
parent 14849be400
commit 1e365b4d9d

@ -26,6 +26,7 @@ CHANGELOG Roundcube Webmail
- Elastic: Add hide/show for advanced preferences (#6632)
- Elastic: Add default icon on Settings/Preferences lists for external plugins (#6814)
- Elastic: Move compose attachments/options to the right side (#6839)
- Elastic: Add border/background to attachments list widget (#6842)
- Elastic: Fix bug where toolbar disappears on attachment menu use in Chrome (#6677)
- Elastic: Fix folders list scrolling on touch devices (#6706)
- Elastic: Fix non-working pretty selects in Chrome browser (#6705)

@ -867,6 +867,9 @@ html.ms .propform {
}
.attachmentslist {
border: 0;
background: transparent;
li {
position: relative;
display: flex;
@ -882,10 +885,10 @@ html.ms .propform {
position: absolute;
right: 0.25em;
width: auto; // fix button width if the widget is in a .popupmenu
}
&:before {
margin: 0;
}
a.dropdown {
margin-right: .5em;
}
.inner {

@ -928,6 +928,11 @@ html.touch {
content: @fa-var-trash-alt;
line-height: @attachmentslist-item-height;
height: @attachmentslist-item-height;
margin: 0;
}
a.dropdown:before {
margin: 0;
}
&.uploading:before {

Loading…
Cancel
Save