mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Add missing favorites icons in mobile view
This commit is contained in:
parent
62ffaa5574
commit
acd54fbfb3
@ -7678,6 +7678,26 @@ form[id^="wiki-"] .dialogHeadbar {
|
||||
border: 1px solid silver;
|
||||
overflow-y: auto !important;
|
||||
}
|
||||
body .et2_nextmatch .nm-mob-header div.nm_favorites_div div[name="favorite"] ul.favorites li.ui-menu-item[data-id="blank"]:before {
|
||||
content: '';
|
||||
background-image: url(../images/trash.png);
|
||||
background-size: 12px;
|
||||
background-repeat: no-repeat;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
}
|
||||
body .et2_nextmatch .nm-mob-header div.nm_favorites_div div[name="favorite"] ul.favorites li.ui-menu-item:not([data-id="add"]):not([data-id="blank"]):before {
|
||||
content: '';
|
||||
background-image: url(../images/fav_filter.png);
|
||||
background-size: 12px;
|
||||
background-repeat: no-repeat;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
}
|
||||
body .et2_nextmatch .nm-mob-header div.nm_favorites_div div[name="favorite"] ul.favorites li.ui-menu-item {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
|
@ -773,6 +773,31 @@
|
||||
box-shadow: 0px 4px 5px 2px silver;
|
||||
border: 1px solid silver;
|
||||
overflow-y:auto !important;
|
||||
li.ui-menu-item[data-id="blank"]
|
||||
{
|
||||
&:before{
|
||||
content: '';
|
||||
background-image: url(../images/trash.png);
|
||||
background-size: 12px;
|
||||
background-repeat: no-repeat;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
}
|
||||
}
|
||||
li.ui-menu-item:not([data-id="add"]):not([data-id="blank"]) {
|
||||
&:before{
|
||||
content: '';
|
||||
background-image: url(../images/fav_filter.png);
|
||||
background-size: 12px;
|
||||
background-repeat: no-repeat;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
}
|
||||
}
|
||||
li.ui-menu-item {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
|
Loading…
Reference in New Issue
Block a user