The border-box sizing is set for apps in the server, but the CSS rules
for the icons of the contacts menu (also set in the server!) assume that
content-box sizing is used. Therefore the proper size should be forced
for the icons to be visible.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2018-04-24 17:37:51 +02:00
Родитель a52f7cb450
Коммит ab4e9cacb5
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -24,6 +24,14 @@
border: 1px solid #eee;
}
.contactsmenu-popover li > a > img {
/* The app uses border-box sizing, so the size of the icon is the
* width/height plus the padding set by default in the server
* (16px + 11px*2). */
width: 38px;
height: 38px;
}
/**
* Sidebar styles
*/