From ba6d379287a42993c84b2b15b2eda3143c4f066b Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Tue, 9 Jun 2020 13:51:41 +0200 Subject: [PATCH] Fix arrow closed/opened icons in filemanager --- pixelegg/css/mobile.css | 2 ++ pixelegg/css/monochrome.css | 2 ++ pixelegg/less/layout_table.less | 2 ++ pixelegg/mobile/fw_mobile.css | 2 ++ 4 files changed, 8 insertions(+) diff --git a/pixelegg/css/mobile.css b/pixelegg/css/mobile.css index 5914742049..6347433748 100644 --- a/pixelegg/css/mobile.css +++ b/pixelegg/css/mobile.css @@ -5790,10 +5790,12 @@ table.egwGridView_grid span.arrow { table.egwGridView_grid span.arrow.opened { background-image: url("../images/arrow_down.svg"); cursor: pointer; + background-position: bottom; } table.egwGridView_grid span.arrow.closed { background-image: url("../images/arrow_right.svg"); cursor: pointer; + background-position: right; } table.egwGridView_grid span.arrow.loading { background-image: url("../egw_action/ajax-loader.gif"); diff --git a/pixelegg/css/monochrome.css b/pixelegg/css/monochrome.css index 339ceefa1c..6537a6c33c 100644 --- a/pixelegg/css/monochrome.css +++ b/pixelegg/css/monochrome.css @@ -5779,10 +5779,12 @@ table.egwGridView_grid span.arrow { table.egwGridView_grid span.arrow.opened { background-image: url("../images/arrow_down.svg"); cursor: pointer; + background-position: bottom; } table.egwGridView_grid span.arrow.closed { background-image: url("../images/arrow_right.svg"); cursor: pointer; + background-position: right; } table.egwGridView_grid span.arrow.loading { background-image: url("../egw_action/ajax-loader.gif"); diff --git a/pixelegg/less/layout_table.less b/pixelegg/less/layout_table.less index 1c53b8174e..931192b780 100755 --- a/pixelegg/less/layout_table.less +++ b/pixelegg/less/layout_table.less @@ -325,10 +325,12 @@ table.egwGridView_grid{ span.arrow.opened { background-image: url("../images/arrow_down.svg"); cursor: pointer; + background-position: bottom; } span.arrow.closed { background-image: url("../images/arrow_right.svg"); cursor: pointer; + background-position: right; } span.arrow.loading { background-image: url("../egw_action/ajax-loader.gif"); diff --git a/pixelegg/mobile/fw_mobile.css b/pixelegg/mobile/fw_mobile.css index 344a951c88..a36436b411 100644 --- a/pixelegg/mobile/fw_mobile.css +++ b/pixelegg/mobile/fw_mobile.css @@ -5801,10 +5801,12 @@ table.egwGridView_grid span.arrow { table.egwGridView_grid span.arrow.opened { background-image: url("../images/arrow_down.svg"); cursor: pointer; + background-position: bottom; } table.egwGridView_grid span.arrow.closed { background-image: url("../images/arrow_right.svg"); cursor: pointer; + background-position: right; } table.egwGridView_grid span.arrow.loading { background-image: url("../egw_action/ajax-loader.gif");