icingaweb2/public/css/icinga/setup.less

194 lines
3.2 KiB
Plaintext
Raw Normal View History

#layout {
overflow: auto; // TODO: Shouldn't be necessary, here, IMHO
}
2014-10-14 16:14:28 +02:00
#setup {
.header {
width: 100%;
height: 5.4em;
background-color: #555;
background-image: -moz-linear-gradient(top, #777, #555);
background-image: -webkit-linear-gradient(top, #777, #555);
background-image: -o-linear-gradient(top, #777, #555);
background-image: -ms-linear-gradient(top, #777, #555);
background-image: linear-gradient(top, #777, #555);
img {
width: 12.5em;
margin: 0.5em;
float: left;
}
.progress-bar {
overflow: hidden;
padding-top: 1em;
.step {
float: left;
h1 {
margin: 0;
color: white;
font-size: 1em;
text-align: center;
}
table {
margin-top: 0.7em;
td {
padding: 0;
&.left, &.right {
width: 50%;
}
}
}
div {
background-color: lightgrey;
&.line {
height: 0.5em;
&.left {
margin-left: 0.1em;
margin-right: -0.1em;
border-top-left-radius: 0.5em;
border-bottom-left-radius: 0.5em;
}
&.right {
margin-left: -0.1em;
margin-right: 0.1em;
border-top-right-radius: 0.5em;
border-bottom-right-radius: 0.5em;
}
}
&.bubble {
width: 1.5em;
height: 1.5em;
border-radius: 1.5em;
// Make sure that such a bubble overlays lines
position: relative;
z-index: 1337;
}
&.active {
background-color: white;
}
&.complete {
background-color: #2e8b57;
2014-10-14 16:14:28 +02:00
}
}
}
}
}
.setup-content {
margin: 1.5em 1.8em 0 1.8em;
}
}
#setup div.buttons {
margin-top: 1.5em;
.double {
position: absolute;
left: -1337px;
}
}
#setup table.requirements {
2014-10-14 16:45:04 +02:00
margin-top: -1em;
margin-left: -1em;
border-spacing: 1em;
border-collapse: separate;
td {
2014-10-14 16:45:04 +02:00
h2 {
margin: 0 1em 0 0;
}
2014-10-14 16:45:04 +02:00
&.state {
color: white;
padding: 0.4em;
border-radius: 0.2em;
&.fulfilled {
background-color: #4fad4b;
}
&.not-available {
color: black;
background-color: #e8ec70;
}
2014-10-14 16:45:04 +02:00
&.missing {
background-color: #fd7770;
}
}
}
}
#setup_ldap_discovery_confirm table {
margin: 1em 0;
border-collapse: separate;
border-spacing: 1em 0.2em;
}
#setup_admin_account {
div.instructions {
width: 30.2em;
display: inline-block;
}
div.radiobox {
vertical-align: top;
display: inline-block;
2014-10-15 15:47:24 +02:00
padding: 0.9em 0.2em 0;
}
2014-10-02 17:11:00 +02:00
}
#setup div.summary {
2014-10-02 17:11:00 +02:00
div.page {
h2 {
font-size: 1.2em;
}
.paragraph {
margin-left: 2em;
h3 {
font-size: 1em;
}
.topic {
h4 {
font-size: 0.8em;
}
}
div.topic {
margin-left: 2em;
}
}
}
}
#setup div.report {
p {
margin: 1em;
&.ok {
color: green;
}
&.failure {
color: red;
}
}
}