Skip to content
Snippets Groups Projects
Commit 61897bc6 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #64573 improve admin icons rendering behavior

parent e8358ddd
Branches
Tags
3 merge requests!3297WIP: Master,!3037Master,!2988Dev#64573 templates pour l interface publique libraire bootstrap
Pipeline #6420 failed with stage
in 29 minutes
...@@ -63,7 +63,9 @@ class ZendAfi_View_Helper_FonctionsAdmin extends ZendAfi_View_Helper_BaseHelper ...@@ -63,7 +63,9 @@ class ZendAfi_View_Helper_FonctionsAdmin extends ZendAfi_View_Helper_BaseHelper
return $html return $html
? $this->_tag('div', $html, ? $this->_tag('div', $html,
['class' => 'configuration_module', ['class' => (($this->_widget instanceof Class_Systeme_Widget_Widget)
? 'configuration_module'
: 'section_configuration'),
'style' => 'text-align:right']) 'style' => 'text-align:right'])
: ''; : '';
} }
......
...@@ -95,7 +95,7 @@ class ZendAfi_View_Helper_Widget_Section extends ZendAfi_View_Helper_BaseHelper ...@@ -95,7 +95,7 @@ class ZendAfi_View_Helper_Widget_Section extends ZendAfi_View_Helper_BaseHelper
public function getAdminTools() { public function getAdminTools() {
return $this->_tag('div', return $this->_tag('div',
$this->view->Admin_TagEditSection($this->_section), $this->view->Admin_TagEditSection($this->_section),
['class' => 'configuration_module', ['class' => 'section_configuration',
'style' => 'text-align:right']); 'style' => 'text-align:right']);
} }
} }
\ No newline at end of file
...@@ -413,4 +413,6 @@ main.col, ...@@ -413,4 +413,6 @@ main.col,
aside.col, aside.col,
healer.col { healer.col {
overflow: hidden; overflow: hidden;
min-height: 1px;
min-width: 1px;
} }
\ No newline at end of file
...@@ -83,7 +83,7 @@ body > .menu_admin_front a { ...@@ -83,7 +83,7 @@ body > .menu_admin_front a {
body > .menu_admin_front .amdin_menu_title, body > .menu_admin_front .amdin_menu_title,
body > .menu_admin_front form tr, body > .menu_admin_front form tr,
body > .menu_admin_front a { body > .menu_admin_front a {
line-height: 2em; line-height: 2em;
} }
.menu_admin_front .amdin_menu_title, .menu_admin_front .amdin_menu_title,
...@@ -144,6 +144,7 @@ body > .menu_admin_front .form select { ...@@ -144,6 +144,7 @@ body > .menu_admin_front .form select {
filter: invert(1); filter: invert(1);
} }
#site_web_wrapper[data-show_admin_icons="true"] .section_configuration,
#site_web_wrapper[data-show_admin_icons="true"] .configuration_module { #site_web_wrapper[data-show_admin_icons="true"] .configuration_module {
z-index: 99; z-index: 99;
display: block !important; display: block !important;
...@@ -152,6 +153,10 @@ body > .menu_admin_front .form select { ...@@ -152,6 +153,10 @@ body > .menu_admin_front .form select {
top: 10px; top: 10px;
} }
#site_web_wrapper[data-show_admin_icons="true"] .section_configuration {
top: 35px;
}
#site_web_wrapper .footer select[onchange], #site_web_wrapper .footer select[onchange],
#site_web_wrapper .footer a[href*="/admin"]:not(.menu_admin_front_anchor), #site_web_wrapper .footer a[href*="/admin"]:not(.menu_admin_front_anchor),
#site_web_wrapper .admin_tools_lock, #site_web_wrapper .admin_tools_lock,
...@@ -269,5 +274,4 @@ article header .edit_article { ...@@ -269,5 +274,4 @@ article header .edit_article {
.menu_admin_front a:hover { .menu_admin_front a:hover {
background-color: var(--line-highlight); background-color: var(--line-highlight);
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment