From 9e7838732bfe4c70b0cb2d15ed69135965959744 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Tue, 23 Feb 2016 19:28:07 +0000 Subject: [PATCH] Mobile theme W.I.P.: - Implement white SVGs for toolbar actions --- pixelegg/mobile/fw_mobile.css | 16 ++++++++++++++++ pixelegg/mobile/fw_mobile.less | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/pixelegg/mobile/fw_mobile.css b/pixelegg/mobile/fw_mobile.css index d123602d97..41fe7380b6 100644 --- a/pixelegg/mobile/fw_mobile.css +++ b/pixelegg/mobile/fw_mobile.css @@ -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; + } } diff --git a/pixelegg/mobile/fw_mobile.less b/pixelegg/mobile/fw_mobile.less index 8f00e47d2c..f2ccf64871 100644 --- a/pixelegg/mobile/fw_mobile.less +++ b/pixelegg/mobile/fw_mobile.less @@ -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; + } } }