Mobile theme W.I.P.:

- Implement white SVGs for toolbar actions
This commit is contained in:
Hadi Nategh 2016-02-23 19:28:07 +00:00
parent 2e396472af
commit 9e7838732b
2 changed files with 33 additions and 0 deletions

View File

@ -7099,6 +7099,10 @@ span.egw_tutorial_title {
body #egw_fw_basecontainer #egw_fw_top_toolbar div#egw_fw_topmenu_items {
padding-top: 8px;
}
body #egw_fw_basecontainer #egw_fw_sidemenu img[src$=".svg"] {
background: none;
box-shadow: none;
}
body div.dhtmlxMenu_egw_SubLevelArea_Polygon {
font-size: medium;
top: 50px !important;
@ -7635,6 +7639,14 @@ span.egw_tutorial_title {
body div.et2_toolbar.et2_head_toolbar div.et2_toolbar_actionlist {
margin-left: 50px;
}
body div.et2_toolbar.et2_head_toolbar div.et2_toolbar_actionlist button.et2_button.ui-draggable {
background-color: transparent !important;
border: none !important;
box-shadow: none !important;
background-position: center !important;
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}
body div.et2_toolbar.et2_head_toolbar div.et2_toolbar_more h.ui-state-hover {
background: none;
}
@ -7772,4 +7784,8 @@ span.egw_tutorial_title {
body .et2_searchbox.expanded .flex {
width: 100%;
}
body img.et2_button_icon[src*="svg"] {
background: none;
box-shadow: none;
}
}

View File

@ -244,6 +244,10 @@
padding-top: 8px;
}
}
#egw_fw_sidemenu img[src$=".svg"] {
background: none;
box-shadow: none;
}
}
//###################
@ -813,6 +817,14 @@
}
div.et2_toolbar_actionlist {
margin-left: 50px;
button.et2_button.ui-draggable {
background-color: transparent !important;
border: none !important;
box-shadow: none !important;
background-position: center !important;
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}
}
div.et2_toolbar_more {
@ -986,5 +998,10 @@
width:100%;
}
}
img.et2_button_icon[src*="svg"] {
background: none;
box-shadow: none;
}
}
}