Fix header-title alignment calculation, remove redundant style

pull/5742/merge
Aleksander Machniak 7 years ago
parent f6c7f6b7f5
commit 1b08b9de4b

@ -14,7 +14,6 @@
.listing { .listing {
tbody td, tbody td,
li { li {
display: block;
border-bottom: 1px solid @color-list-border; border-bottom: 1px solid @color-list-border;
cursor: default; cursor: default;
font-weight: normal; font-weight: normal;
@ -99,7 +98,6 @@ table.listing {
} }
ul.listing { ul.listing {
display: block;
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0; padding: 0;

@ -61,6 +61,7 @@
/* box-shadow: 1px 1px 2px @color-message-shadow; */ /* box-shadow: 1px 1px 2px @color-message-shadow; */
background-color: @color-message-background; background-color: @color-message-background;
display: flex; display: flex;
align-items: center;
@media screen and (max-width: @screen-width-xs) { @media screen and (max-width: @screen-width-xs) {
margin-bottom: 0; margin-bottom: 0;

@ -926,7 +926,7 @@ function rcube_elastic_ui()
} }
else { else {
left = 0; left = 0;
right = sizes.left - padding + sizes.right; right = sizes.left - (padding + sizes.right);
} }
$(title).css({ $(title).css({

Loading…
Cancel
Save