Fix color codes and badges

This commit is contained in:
Bernd Erk 2014-11-12 16:19:00 +01:00
parent f456ad3a04
commit f2c4c3bb1b
7 changed files with 11 additions and 16 deletions

View File

@ -78,12 +78,8 @@ div.contacts div.notification-periods {
h3.tinystatesummary { h3.tinystatesummary {
line-height: 2em; line-height: 2em;
font-size: 0.95em; font-size: 0.95em;
padding-left: 1em;
margin-right: 1em; margin-right: 1em;
background-color: #eee; border-bottom: 2px solid @colorPetrol;
color: @colorTextDefault;
border: 1px solid #d9d9d9;
border-left: 5px solid #049baf;
} }
h3.tinystatesummary a { h3.tinystatesummary a {
@ -99,11 +95,11 @@ h3.tinystatesummary a:hover {
/* State badges */ /* State badges */
span.state { span.state {
font-size: 1em; font-size: 1em;
font-weight: 700;
color: white; color: white;
font-weight: bold; font-weight: bold;
padding: 1px 2px; padding: 1px 2px;
margin-right: 5px; margin-right: 5px;
border-radius: 0.2em
} }

View File

@ -43,6 +43,7 @@
@colorLinkDefault: #049baf; @colorLinkDefault: #049baf;
@colorTextDefault: #666; @colorTextDefault: #666;
@colorTextDarkDefault: #555; @colorTextDarkDefault: #555;
@colorPetrol: #049baf;
@colorOk: #44bb77; @colorOk: #44bb77;
@colorWarning: #ffaa44; @colorWarning: #ffaa44;
@colorWarningHandled: #ffcc66; @colorWarningHandled: #ffcc66;

View File

@ -152,9 +152,8 @@ html {
.dashboard > div.container h1, .container .content h1, .container .controls h1, .content h3 { .dashboard > div.container h1, .container .content h1, .container .controls h1, .content h3 {
line-height: 2em; line-height: 2em;
font-size: 1em; font-size: 1em;
padding-left: 1em;
color: @colorTextDefault; color: @colorTextDefault;
border-bottom: 2px solid #049baf; border-bottom: 2px solid @colorPetrol;
} }
.content h3 { .content h3 {

View File

@ -6,7 +6,7 @@
height: 100%; height: 100%;
.logo { .logo {
background-color: #049baf; background-color: @colorPetrol;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
@ -84,8 +84,8 @@
input[type=submit] { input[type=submit] {
color: #fff; color: #fff;
border: 2px solid #ddd; border: 2px solid #ddd;
border-color: #049baf; border-color: @colorPetrol;
background: #049baf; background: @colorPetrol;
margin-top: 1.5em; margin-top: 1.5em;
margin-left: 12.5em; margin-left: 12.5em;
} }

View File

@ -59,7 +59,7 @@
} }
#menu > ul > li.active li.active a { #menu > ul > li.active li.active a {
color: #049baf; color: @colorPetrol;
} }
#menu > ul > li.active li a:focus { #menu > ul > li.active li a:focus {
@ -125,7 +125,7 @@
-moz-box-shadow: none; -moz-box-shadow: none;
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
border-left: solid 5px #049baf; border-left: solid 5px @colorPetrol;
} }
/* BEGIN OF Hoverable menu */ /* BEGIN OF Hoverable menu */

View File

@ -7,5 +7,5 @@ div.selection-toolbar {
} }
div.selection-toolbar a { div.selection-toolbar a {
color: #049baf color: @colorPetrol;
} }

View File

@ -225,7 +225,6 @@ li li .badge-container {
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
vertical-align: baseline; vertical-align: baseline;
border-radius: 0.2em;
background-color: @colorInvalid; background-color: @colorInvalid;
} }