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

Merge remote-tracking branch...

Merge remote-tracking branch 'refs/remotes/origin/dev#59621_amelioration_ergonomie_popup' into dev#59138_cip_config_zendform_migration
parents 58e6c8c9 ca76e141
Branches
Tags
1 merge request!2334Master
Pipeline #1273 passed with stage
in 18 minutes and 53 seconds
- ticket #59621 : Administration : amélioration de l'ergonomie des popups
\ No newline at end of file
......@@ -49,10 +49,11 @@ class ZendAfi_View_Helper_Admin_PropertiesReader extends ZendAfi_View_Helper_Bas
$html = $this->_tag('div', $this->_('Propriétés de l\'objet')) .
$this->view->render(basename($this->_propertiesPath));
return $this->view->tagImg(URL_ADMIN_IMG . 'ico/copier.gif',
['title' => $this->_("propriétés de l'objet"),
'style' => 'cursor:pointer',
'onclick' => "$(this).next().slideToggle();"]) .
return Class_Admin_Skin::current()->renderActionIconOn('box_configuration',
$this->view,
['title' => $this->_("propriétés de l'objet"),
'style' => 'cursor:pointer',
'onclick' => "$(this).next().slideToggle();"]) .
$this->_tag('div',
$html,
['id' => 'objet_props',
......
......@@ -71,9 +71,12 @@ class ZendAfi_View_Helper_Admin_RenderForm extends ZendAfi_View_Helper_RenderFor
protected function _renderDefaultButtons($form, $buttons = []) {
if ($this->view->isPopup())
$buttons = array_merge([$this->view->Button_Continue()],
if ($this->view->isPopup()) {
$submit = array_shift($buttons);
$buttons = array_merge([$submit],
[$this->view->Button_Continue()],
$buttons);
}
return $this->_tag('div',
implode($buttons),
......
public/admin/js/treeselect/remove.gif

97 B | W: | H:

public/admin/js/treeselect/remove.gif

573 B | W: | H:

public/admin/js/treeselect/remove.gif
public/admin/js/treeselect/remove.gif
public/admin/js/treeselect/remove.gif
public/admin/js/treeselect/remove.gif
  • 2-up
  • Swipe
  • Onion skin
......@@ -41,3 +41,7 @@ div.admin-buttons {
background-position: 1em;
overflow: visible;
}
.admin-button:disabled > img {
filter: opacity(0.2);
}
\ No newline at end of file
......@@ -63,6 +63,10 @@
-webkit-appearance: checkbox;
}
.admin-form [type="radio"] {
-webkit-appearance: radio;
}
.content_edit_head dt,
.content_edit_head dd {
display: inline-block;
......
......@@ -42,7 +42,7 @@ body [class*='ui-corner']:not(.ui-dialog) {
}
body .ui-tabs .ui-tabs-nav {
background: var(--main-background);
padding: 0;
}
body .ui-tabs .ui-tabs-nav > .ui-state-default > a {
......@@ -50,35 +50,12 @@ body .ui-tabs .ui-tabs-nav > .ui-state-default > a {
cursor: pointer;
line-height: 1em;
margin: 0;
padding: 0.3em;
padding-left: 1.5em;
padding: 0.4em 1em;
}
body .ui-tabs .ui-tabs-nav > .ui-tabs-active > a {
background: var(--anchor);
color: var(--button-highlight);
}
body .ui-tabs .ui-tabs-nav > .ui-state-default > a:before {
background-image: url('icons/actions/ouvrir_24.png');
background-repeat: no-repeat;
background-size: 0.8em;
background-position: left center;
content: '';
display: inline;
filter: opacity(50%);
height: 1em;
position: absolute;
width: 1em;
left: 5px;
top: 3px;
transition: all 0.4s;
transform: rotate(-90deg);
}
body .ui-tabs .ui-tabs-nav > .ui-tabs-active > a:before {
filter: invert();
transform: rotate(0deg);
background: var(--main-background);
color: var(--main-text);
}
.ui-dialog .zend_form,
......
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