diff --git a/htdocs/core/boxes/modules_boxes.php b/htdocs/core/boxes/modules_boxes.php
index 84d49c468b1..76fac773eaa 100644
--- a/htdocs/core/boxes/modules_boxes.php
+++ b/htdocs/core/boxes/modules_boxes.php
@@ -161,7 +161,7 @@ class ModeleBoxes // Can't be abtract as it is instanciated to build "empty"
}
if ($conf->use_javascript_ajax)
{
- print '
';
+ print ' | ';
// The image must have the class 'boxhandle' beause it's value used in DOM draggable objects to define the area used to catch the full object
print img_picto($langs->trans("MoveBox",$this->box_id),'grip','class="boxhandle" style="cursor:move;"');
print img_picto($langs->trans("Close",$this->box_id),'close','class="boxclose" style="cursor:pointer;" id="imgclose'.$this->box_id.'"');
diff --git a/htdocs/theme/amarok/img/close.png b/htdocs/theme/amarok/img/close.png
index 3c92b099986..e6a186ac71d 100755
Binary files a/htdocs/theme/amarok/img/close.png and b/htdocs/theme/amarok/img/close.png differ
diff --git a/htdocs/theme/amarok/style.css.php b/htdocs/theme/amarok/style.css.php
index 761bcf1212f..879810b5300 100755
--- a/htdocs/theme/amarok/style.css.php
+++ b/htdocs/theme/amarok/style.css.php
@@ -284,6 +284,10 @@ table.login_table .vmenu {
font-size:120%;
}
+.blockvmenubookmarks .menu_contenu {
+ background-color: transparent;
+}
+
/* ! Message d'erreur lors du login : */
center .error { padding:8px !important; padding-left:26px !important; padding-right:20px; width:inherit; max-width:450px;color:#552323 !important; font-size:14px; border-radius:8px; text-align: left;}
@@ -852,6 +856,10 @@ tr.liste_titre, tr.box_titre {
);
}
+tr.box_titre td.boxclose {
+ width: 36px;
+}
+
tr.liste_titre td {
padding:2px;
padding-left:2px !important;
diff --git a/htdocs/theme/auguria/style.css.php b/htdocs/theme/auguria/style.css.php
index 13c466f7bfc..cac0c269e51 100644
--- a/htdocs/theme/auguria/style.css.php
+++ b/htdocs/theme/auguria/style.css.php
@@ -1411,6 +1411,10 @@ white-space: nowrap;
-moz-border-radius-topright:6px;
}
+tr.box_titre td.boxclose {
+ width: 30px;
+}
+
tr.box_impair {
/* background: #e6ebed; */
background: #F5F6F7;
diff --git a/htdocs/theme/bureau2crea/style.css.php b/htdocs/theme/bureau2crea/style.css.php
index 6bbaddc7f45..5543e69791c 100644
--- a/htdocs/theme/bureau2crea/style.css.php
+++ b/htdocs/theme/bureau2crea/style.css.php
@@ -1570,6 +1570,10 @@ tr.box_titre {
-moz-border-radius-topright:6px;
}
+tr.box_titre td.boxclose {
+ width: 30px;
+}
+
tr.box_impair {
/* background: #e6ebed; */
background: #eaeaea;
diff --git a/htdocs/theme/cameleo/style.css.php b/htdocs/theme/cameleo/style.css.php
index 70a5bd23ddb..06811782e6b 100644
--- a/htdocs/theme/cameleo/style.css.php
+++ b/htdocs/theme/cameleo/style.css.php
@@ -1477,6 +1477,10 @@ tr.box_titre {
border-top-right-radius:6px;
}
+tr.box_titre td.boxclose {
+ width: 30px;
+}
+
tr.box_impair {
/* background: #e6ebed; */
background: #eaeaea;
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index 3e77e3df23b..f56c2897927 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -1724,6 +1724,10 @@ tr.box_titre {
white-space: nowrap;
}
+tr.box_titre td.boxclose {
+ width: 30px;
+}
+
tr.box_impair {
background: -o-linear-gradient(bottom, rgb() 85%, rgb() 100%);
|