diff --git a/htdocs/societe/notify/card.php b/htdocs/societe/notify/card.php
index f8594a545ea..2e63d243526 100644
--- a/htdocs/societe/notify/card.php
+++ b/htdocs/societe/notify/card.php
@@ -262,6 +262,7 @@ if ($result > 0)
foreach($conf->global as $key => $val)
{
if (! preg_match('/^NOTIFICATION_FIXEDEMAIL_(.*)/', $key, $reg)) continue;
+ $var = ! $var;
print '
| ';
$listtmp=explode(',',$val);
$first=1;
diff --git a/htdocs/theme/md_dev/style.css.php b/htdocs/theme/md_dev/style.css.php
index 4dc84c90792..4d3e0937e4d 100644
--- a/htdocs/theme/md_dev/style.css.php
+++ b/htdocs/theme/md_dev/style.css.php
@@ -734,7 +734,7 @@ div.tmenuleft
dol_optimize_smallscreen)) { ?>
width: 5px;
height: px;
- background: url() 0 -6px no-repeat;
+ /* background: url() 0 -6px no-repeat; */
}
div.tmenucenter
@@ -1512,6 +1512,13 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
text-decoration: none;
white-space: nowrap;
+ /*border-bottom: none;
+ border-right: 1px solid #CCCCCC;
+ border-left: 1px solid #D0D0D0;
+ border-top: 1px solid #D8D8D8;
+ */
+
+ /*
-moz-border-radius:6px 6px 0px 0px;
-webkit-border-radius:6px 6px 0px 0px;
border-radius:6px 6px 0px 0px;
@@ -1520,11 +1527,6 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
-webkit-box-shadow: 0 -1px 4px rgba(0,0,0,.1);
box-shadow: 0 -1px 4px rgba(0,0,0,.1);
- border-bottom: none;
- border-right: 1px solid #CCCCCC;
- border-left: 1px solid #D0D0D0;
- border-top: 1px solid #D8D8D8;
-
background: rgb();
/*background-image: -o-linear-gradient(bottom, rgb() 35%, rgb() 100%);
@@ -1533,10 +1535,23 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
background-image: -ms-linear-gradient(bottom, rgb() 35%, rgb() 100%);
background-image: linear-gradient(bottom, rgb() 35%, rgb() 100%);*/
+ */
background-image: none !important;
}
-.tabactive {
+.tabactive, a.tab#active {
+ border-right: 1px solid #CCCCCC;
+ border-left: 1px solid #D0D0D0;
+ border-top: 1px solid #D8D8D8;
+
+ -moz-border-radius:6px 6px 0px 0px;
+ -webkit-border-radius:6px 6px 0px 0px;
+ border-radius:6px 6px 0px 0px;
+
+ -moz-box-shadow: 0 -1px 4px rgba(0,0,0,.1);
+ -webkit-box-shadow: 0 -1px 4px rgba(0,0,0,.1);
+ box-shadow: 0 -1px 4px rgba(0,0,0,.1);
+
background: rgb() !important;
/* border-bottom: 1px solid rgb() !important;
@@ -1549,8 +1564,10 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
}
a.tab:hover
{
+ /*
background: rgba(, 0.5) url() 50% 0 repeat-x;
- color: #;
+ color: #;*/
+ text-decoration: underline;
}
a.tab:link, a.tab:visited
{
|