Skip to content
Snippets Groups Projects
Commit 62634a1d authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #4115 from mrsof/patch-3

FIX: Multiple syntax errors
parents 863f8116 1b62cd44
Branches
Tags
No related merge requests found
...@@ -323,7 +323,7 @@ legend { margin-bottom: 8px; } ...@@ -323,7 +323,7 @@ legend { margin-bottom: 8px; }
fieldset { border: 1px solid #AAAAAA !important; box-shadow: 2px 2px 3px #DDD; } fieldset { border: 1px solid #AAAAAA !important; box-shadow: 2px 2px 3px #DDD; }
.button, sbmtConnexion { .button, input[name="sbmtConnexion"] {
font-family: <?php print $fontlist ?>; font-family: <?php print $fontlist ?>;
border-color: #c5c5c5; border-color: #c5c5c5;
border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25); border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
...@@ -847,7 +847,7 @@ div.mainmenu { ...@@ -847,7 +847,7 @@ div.mainmenu {
div.mainmenu.home{ div.mainmenu.home{
background-image: url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/menus/home.png',1) ?>); background-image: url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/menus/home.png',1) ?>);
background-position-x: middle; background-position-x: center;
} }
div.mainmenu.accountancy { div.mainmenu.accountancy {
...@@ -1017,7 +1017,7 @@ form#login { ...@@ -1017,7 +1017,7 @@ form#login {
border-radius: 5px; border-radius: 5px;
border:solid 1px rgba(80,80,80,.4); border:solid 1px rgba(80,80,80,.4);
border-top:solid 1px f8f8f8; border-top:solid 1px #f8f8f8;
} }
.login_main_message { .login_main_message {
text-align: center; text-align: center;
...@@ -1472,7 +1472,7 @@ img.toolbarbutton { ...@@ -1472,7 +1472,7 @@ img.toolbarbutton {
} }
/* hide the toggler-button when the pane is 'slid open' */ /* hide the toggler-button when the pane is 'slid open' */
.ui-layout-resizer-sliding ui-layout-toggler { .ui-layout-resizer-sliding .ui-layout-toggler {
display: none; display: none;
} }
...@@ -1645,7 +1645,7 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active { ...@@ -1645,7 +1645,7 @@ a.tab:link, a.tab:visited, a.tab:hover, a.tab#active {
-moz-box-shadow: 0 -1px 4px rgba(0,0,0,.1); -moz-box-shadow: 0 -1px 4px rgba(0,0,0,.1);
-webkit-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); box-shadow: 0 -1px 4px rgba(0,0,0,.1);
margin-bottom: 0 0.2em 0 0.2em !important; margin: 0 0.2em 0 0.2em !important;
border-right: 1px solid #AAA !important; border-right: 1px solid #AAA !important;
border-left: 1px solid #AAA !important; border-left: 1px solid #AAA !important;
...@@ -1976,7 +1976,7 @@ tr.nocellnopadd td.nobordernopadding, tr.nocellnopadd td.nocellnopadd ...@@ -1976,7 +1976,7 @@ tr.nocellnopadd td.nobordernopadding, tr.nocellnopadd td.nocellnopadd
padding-<?php print $left; ?>: 0px; padding-<?php print $left; ?>: 0px;
padding-<?php print $right; ?>: 16px; padding-<?php print $right; ?>: 16px;
padding-bottom: 4px; padding-bottom: 4px;
margin-right: 0px 0px; margin-right: 0px;
} }
.notopnoleftnoright { .notopnoleftnoright {
border-collapse: collapse; border-collapse: collapse;
...@@ -3333,7 +3333,7 @@ ul.filedirelem li { ...@@ -3333,7 +3333,7 @@ ul.filedirelem li {
border: solid 1px #DDDDDD; border: solid 1px #DDDDDD;
} }
ui-layout-north { .ui-layout-north {
} }
...@@ -3430,7 +3430,7 @@ div.dolEventError h1, div.dolEventError h2 { ...@@ -3430,7 +3430,7 @@ div.dolEventError h1, div.dolEventError h2 {
/* Maps */ /* Maps */
/* ============================================================================== */ /* ============================================================================== */
.divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, google-visualization-geomap-embed-2 { .divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, #google-visualization-geomap-embed-2 {
-moz-box-shadow: 0px 0px 10px #AAA; -moz-box-shadow: 0px 0px 10px #AAA;
-webkit-box-shadow: 0px 0px 10px #AAA; -webkit-box-shadow: 0px 0px 10px #AAA;
box-shadow: 0px 0px 10px #AAA; box-shadow: 0px 0px 10px #AAA;
...@@ -3755,7 +3755,7 @@ a.ui-link { ...@@ -3755,7 +3755,7 @@ a.ui-link {
{ {
white-space: normal; white-space: normal;
overflow: hidden; overflow: hidden;
text-overflow: hidden; text-overflow: clip; /* "hidden" : do not exists as a text-overflow value (https://developer.mozilla.org/fr/docs/Web/CSS/text-overflow) */
} }
/* Warning: setting this may make screen not beeing refreshed after a combo selection */ /* Warning: setting this may make screen not beeing refreshed after a combo selection */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment