зеркало из https://github.com/nextcloud/spreed.git
Fix icons in contacts menu
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:
Родитель
a52f7cb450
Коммит
ab4e9cacb5
|
@ -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
|
||||
*/
|
||||
|
|
Загрузка…
Ссылка в новой задаче