Skip to content

Commit

Permalink
CSS using the SVG
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 24, 2020
1 parent 457d066 commit 1cda54c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions htdocs/install/default.css
Expand Up @@ -206,7 +206,7 @@ input:-webkit-autofill {

table.listofchoices, table.listofchoices tr, table.listofchoices td {
border-collapse: collapse;
padding: 4px;
padding: 8px;
color: #000000;
border: 1px solid #ccc !important;
line-height: 18px;
Expand Down Expand Up @@ -275,6 +275,7 @@ div.header {

a:link,a:visited,a:active {
text-decoration:none;
color: #114466;
}
a:hover {
text-decoration:underline;
Expand Down Expand Up @@ -344,10 +345,21 @@ ul {
padding-bottom: 0;
}

tr.choiceselected td.listofchoicesdesc {
color: #000 !important;
}

.button {
tr.choiceselected td .button {
background: rgb(0,113,121);
color: #fff;
}

a.button:link,a.button:visited,a.button:active {
color: #888;
}
.button {
background: #ddd;
color: #fff;
/* border: 1px solid #e0e0e0; */
padding: 0.3em 0.7em;
margin: 0 0.5em;
Expand All @@ -363,7 +375,7 @@ a.button:hover {
}

.choiceselected {
background-color: #f4fcf4;
background-color: #f4f6f4;
background-repeat: repeat-x;
background-position: top left;
}
Expand Down
2 changes: 1 addition & 1 deletion htdocs/install/inc.php
Expand Up @@ -399,7 +399,7 @@ function pHeader($subtitle, $next, $action = 'set', $param = '', $forcejqueryurl
print '<body>'."\n";

print '<div class="divlogoinstall" style="text-align:center">';
print '<img class="imglogoinstall" src="../theme/dolibarr_logo.png" alt="Dolibarr logo"><br>';
print '<img class="imglogoinstall" src="../theme/dolibarr_logo.svg" alt="Dolibarr logo" width="300px"><br>';
print DOL_VERSION;
print '</div><br>';

Expand Down

0 comments on commit 1cda54c

Please sign in to comment.