From 4c4725883e5ae6f33ec1d078816f90c35867528c Mon Sep 17 00:00:00 2001 From: milan Date: Thu, 12 Dec 2024 17:10:20 +0100 Subject: [PATCH] change 'insert timestamp' icon from 'magic' to 'pin-map' regarding #101741 Also removed ellipsis from fancy tab header --- api/src/Image.php | 2 +- pixelegg/css/fancy.css | 7 ++++--- pixelegg/css/fancy.less | 27 +++++++++++++++------------ 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/api/src/Image.php b/api/src/Image.php index 1982b861af..9c9a0dde70 100644 --- a/api/src/Image.php +++ b/api/src/Image.php @@ -215,7 +215,7 @@ class Image 'symlink' => 'reply', 'tag_message' => 'tag', 'tentative' => 'clock-history', - 'timestamp' => 'magic', + 'timestamp' => 'pin-map', //'unlock' => 'unlock', 'up' => 'arrow-bar-up', 'update' => 'shield-exclamation', diff --git a/pixelegg/css/fancy.css b/pixelegg/css/fancy.css index 54873ce2a2..cedeffefd5 100644 --- a/pixelegg/css/fancy.css +++ b/pixelegg/css/fancy.css @@ -7287,6 +7287,10 @@ div.flatpickr-calendar .shortcut-buttons-flatpickr-buttons button:last-child { #egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active { border-bottom-width: 0px !important; } +#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header { + padding: 0 0.5em; + overflow: initial; +} #egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 { display: none; } @@ -7299,9 +7303,6 @@ div.flatpickr-calendar .shortcut-buttons-flatpickr-buttons button:last-child { padding-right: 0.5em; padding-left: 0.5em; } -#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header { - padding: 0 0.5em; -} #egw_fw_main #egw_fw_tabs .egw_fw_ui_tab_close_button { background-size: 12px 12px; right: 0px; diff --git a/pixelegg/css/fancy.less b/pixelegg/css/fancy.less index f6c1903c6e..f3332ece41 100644 --- a/pixelegg/css/fancy.less +++ b/pixelegg/css/fancy.less @@ -136,21 +136,24 @@ div.flatpickr-calendar .shortcut-buttons-flatpickr-buttons button:last-child { } } -#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 { - display: none; -} -#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header img.egw_fw_ui_tab_icon { - width: 40px !important; - height: 28px !important; - margin: 0; - padding: 0; - padding-top: .2em; - padding-right:.5em; - padding-left: .5em; -} #egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header{ padding: 0 0.5em; + overflow: initial; + + h1 { + display: none; + } + + img.egw_fw_ui_tab_icon { + width: 40px !important; + height: 28px !important; + margin: 0; + padding: 0; + padding-top: .2em; + padding-right: .5em; + padding-left: .5em; + } }