Add missing favorites icons in mobile view

This commit is contained in:
Hadi Nategh 2017-08-21 11:47:33 +02:00
parent 62ffaa5574
commit acd54fbfb3
2 changed files with 45 additions and 0 deletions

View File

@ -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;

View File

@ -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;