2015-02-04 10:46:36 +01:00
|
|
|
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2014-02-18 19:39:54 +01:00
|
|
|
|
|
|
|
code {
|
|
|
|
background-color: #eee;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: 1em;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
p code {
|
|
|
|
display: inline;
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #39a;
|
|
|
|
}
|
|
|
|
|
2014-03-25 09:24:50 +01:00
|
|
|
img.icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
vertical-align: middle;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:39:54 +01:00
|
|
|
/** Notifications **/
|
|
|
|
|
|
|
|
#notifications {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#notifications > li {
|
|
|
|
list-style-type: none;
|
|
|
|
display: block;
|
|
|
|
border-bottom: 1px solid #999;
|
|
|
|
color: white;
|
|
|
|
line-height: 2.5em;
|
|
|
|
padding-left: 3em;
|
2014-03-08 00:13:58 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 1em center;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#notifications > li.warning {
|
|
|
|
background-color: @colorWarningHandled;
|
|
|
|
}
|
|
|
|
#notifications > li.error {
|
|
|
|
background-color: @colorCritical;
|
2014-03-08 00:13:58 +01:00
|
|
|
background-image: url(../img/icons/error_white.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#notifications > li.success {
|
|
|
|
background-color: #fe6;
|
|
|
|
background-image: url(../img/icons/success.png);
|
|
|
|
color: #333;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
/** END of Notifications **/
|
|
|
|
|
|
|
|
/* TODO: Remove once there is no more module container */
|
|
|
|
.container > div > pre {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:28:12 +01:00
|
|
|
table.avp {
|
2014-11-06 22:55:17 +01:00
|
|
|
color: @colorTextDarkDefault;
|
2014-03-21 19:56:55 +01:00
|
|
|
table-layout: auto;
|
2014-02-25 11:28:12 +01:00
|
|
|
width: 100%;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.avp a {
|
|
|
|
color: black;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-03-08 19:53:16 +01:00
|
|
|
table.avp > tbody > tr > th {
|
2014-11-06 15:49:26 +01:00
|
|
|
text-align: left;
|
2014-02-25 11:28:12 +01:00
|
|
|
margin: 0;
|
2014-11-06 15:49:26 +01:00
|
|
|
width: 10em;
|
2014-02-25 11:28:12 +01:00
|
|
|
vertical-align: top;
|
2014-11-06 15:49:26 +01:00
|
|
|
line-height: 1.8em;
|
2014-02-25 11:28:12 +01:00
|
|
|
}
|
|
|
|
|
2014-03-08 19:53:16 +01:00
|
|
|
table.avp > tbody > tr > td {
|
2014-02-25 11:28:12 +01:00
|
|
|
line-height: 2em;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
vertical-align: top;
|
2014-11-06 15:49:26 +01:00
|
|
|
padding: 0em 0em 0em 0em;
|
2014-02-25 11:28:12 +01:00
|
|
|
}
|
|
|
|
|
2014-03-21 19:56:55 +01:00
|
|
|
table.avp.newsection, table.avp tr.newsection {
|
2014-11-06 15:49:26 +01:00
|
|
|
border-top: 1px solid #d9d9d9;
|
2014-03-21 19:56:55 +01:00
|
|
|
}
|
|
|
|
|
2014-02-25 11:28:12 +01:00
|
|
|
.content table.avp dd, .content table.avp dd {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-06-17 16:11:25 +02:00
|
|
|
table.avp {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:28:12 +01:00
|
|
|
table.avp a {
|
|
|
|
color: @colorLinkDefault;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.avp a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Definitively monitoring-only: */
|
|
|
|
table.objectstate {
|
|
|
|
border-collapse: separate;
|
2014-06-05 05:24:30 +02:00
|
|
|
border-spacing: 1px;
|
2014-02-25 11:28:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table.objectstate td {
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.objectstate tr.state td.state {
|
|
|
|
font-size: 1em;
|
|
|
|
width: 9em;
|
|
|
|
text-align: center;
|
|
|
|
padding-left: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.objectstate tr.state.handled td.state {
|
|
|
|
}
|
|
|
|
|
|
|
|
table.perfdata {
|
|
|
|
min-width: 24em;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2014-03-08 19:53:16 +01:00
|
|
|
table.perfdata th {
|
2014-02-25 11:28:12 +01:00
|
|
|
padding: 0;
|
|
|
|
text-align: left;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
2014-03-06 14:47:26 +01:00
|
|
|
|
2014-07-10 14:54:12 +02:00
|
|
|
table.perfdata td {
|
|
|
|
white-space: nowrap;
|
2014-12-30 16:31:37 +01:00
|
|
|
padding-right: 0.5em;
|
2014-07-10 14:54:12 +02:00
|
|
|
}
|
|
|
|
|
2014-03-06 14:47:26 +01:00
|
|
|
table.objectlist {
|
|
|
|
min-width: 28em;
|
|
|
|
th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 18:03:18 +01:00
|
|
|
table.benchmark {
|
|
|
|
margin: 1em 1% 1em 1%;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 1em;
|
|
|
|
width: 96%;
|
|
|
|
}
|
|
|
|
|
2014-11-19 07:51:51 +01:00
|
|
|
.dashboard h1 {
|
2014-11-19 09:34:49 +01:00
|
|
|
font-size: 1em;
|
2014-11-19 07:51:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard h2 {
|
2014-11-19 09:34:49 +01:00
|
|
|
font-size: 1em;
|
2014-11-19 07:51:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard h3 {
|
|
|
|
font-size: 1em;
|
2015-02-03 16:27:59 +01:00
|
|
|
}
|
2014-11-19 07:51:51 +01:00
|
|
|
|
2014-03-07 18:03:18 +01:00
|
|
|
.dashboard table.benchmark {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2014-11-18 19:40:22 +01:00
|
|
|
|
|
|
|
.left {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
2014-11-19 09:40:42 +01:00
|
|
|
|
|
|
|
.controls a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2014-11-19 10:31:51 +01:00
|
|
|
|
|
|
|
[class^="icon-"]:before, [class*=" icon-"]:before {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2015-01-27 14:05:41 +01:00
|
|
|
|
|
|
|
.info-box {
|
|
|
|
padding: 0.5em;
|
|
|
|
border: 1px solid lightgrey;
|
2015-03-02 13:45:24 +01:00
|
|
|
background-color: #fbfcc5;
|
2015-01-27 14:05:41 +01:00
|
|
|
}
|
2015-05-04 17:04:50 +02:00
|
|
|
|
|
|
|
table.user-list {
|
|
|
|
th {
|
2015-05-20 13:53:19 +02:00
|
|
|
&.user-state, &.user-remove {
|
2015-05-04 17:04:50 +02:00
|
|
|
width: 6%;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.user-created, &.user-modified {
|
|
|
|
width: 12%;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 13:53:19 +02:00
|
|
|
td.user-state, td.user-created, td.user-modified, td.user-remove {
|
2015-05-04 17:04:50 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
2015-05-05 09:24:28 +02:00
|
|
|
}
|
|
|
|
|
2015-05-20 14:07:24 +02:00
|
|
|
div.content.groups {
|
|
|
|
table.group-list {
|
|
|
|
th {
|
|
|
|
&.group-parent, &.group-remove {
|
|
|
|
width: 6%;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.group-created, &.group-modified {
|
|
|
|
width: 12%;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2015-05-05 09:24:28 +02:00
|
|
|
}
|
|
|
|
|
2015-05-20 14:07:24 +02:00
|
|
|
td.group-parent, td.group-created, td.group-modified, td.group-remove {
|
2015-05-05 09:24:28 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 14:07:24 +02:00
|
|
|
p {
|
|
|
|
margin-top: 0;
|
2015-05-05 09:24:28 +02:00
|
|
|
}
|
2015-05-08 09:54:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
form.backend-selection {
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
div.element {
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
label {
|
|
|
|
width: auto;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
width: 11.5em;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 17:04:50 +02:00
|
|
|
}
|