2014-10-06 11:32:12 +02:00
|
|
|
#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 {
|
2014-10-15 15:48:37 +02:00
|
|
|
background-color: #2e8b57;
|
2014-10-14 16:14:28 +02:00
|
|
|
}
|
2014-10-17 15:41:25 +02:00
|
|
|
|
|
|
|
&.visited {
|
|
|
|
background-color: #77bf97;
|
|
|
|
}
|
2014-10-14 16:14:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.setup-content {
|
|
|
|
margin: 1.5em 1.8em 0 1.8em;
|
|
|
|
}
|
2014-10-13 09:43:12 +02:00
|
|
|
}
|
|
|
|
|
2014-10-06 16:04:58 +02:00
|
|
|
#setup div.buttons {
|
2014-10-13 09:43:12 +02:00
|
|
|
margin-top: 1.5em;
|
2014-10-09 13:41:06 +02:00
|
|
|
|
|
|
|
.double {
|
|
|
|
position: absolute;
|
|
|
|
left: -1337px;
|
|
|
|
}
|
2014-10-15 15:49:38 +02:00
|
|
|
|
|
|
|
#btn_prev {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, .button-like {
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
outline: 0;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 0.2em;
|
|
|
|
background: #666;
|
|
|
|
color: #eee;
|
|
|
|
|
2014-10-20 13:44:11 +02:00
|
|
|
&[disabled="1"] {
|
|
|
|
background-color: #aaa;
|
|
|
|
border: 1px dotted black;
|
|
|
|
}
|
|
|
|
|
2014-10-15 15:49:38 +02:00
|
|
|
&:hover, &:focus {
|
|
|
|
background-color: #333;
|
2014-10-20 13:44:11 +02:00
|
|
|
|
|
|
|
&[disabled="1"] {
|
|
|
|
background-color: #aaa;
|
|
|
|
}
|
2014-10-15 15:49:38 +02:00
|
|
|
}
|
|
|
|
|
2014-10-17 09:18:10 +02:00
|
|
|
&.install, &.login {
|
2014-10-15 15:49:38 +02:00
|
|
|
width: 25em;
|
|
|
|
color: #fffafa;
|
|
|
|
background: #aaa;
|
|
|
|
|
2014-10-17 09:18:10 +02:00
|
|
|
&:hover, &:focus {
|
2014-10-15 15:49:38 +02:00
|
|
|
background: #888;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.button-like {
|
|
|
|
cursor: default;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-10-06 11:07:21 +02:00
|
|
|
}
|
|
|
|
|
2014-10-06 16:04:58 +02:00
|
|
|
#setup table.requirements {
|
2014-10-14 16:45:04 +02:00
|
|
|
margin-top: -1em;
|
|
|
|
margin-left: -1em;
|
|
|
|
border-spacing: 1em;
|
|
|
|
border-collapse: separate;
|
|
|
|
|
2014-10-01 15:46:58 +02:00
|
|
|
td {
|
2014-10-14 16:45:04 +02:00
|
|
|
h2 {
|
|
|
|
margin: 0 1em 0 0;
|
2014-10-01 15:46:58 +02:00
|
|
|
}
|
|
|
|
|
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-01 15:46:58 +02:00
|
|
|
|
2014-10-14 16:45:04 +02:00
|
|
|
&.missing {
|
|
|
|
background-color: #fd7770;
|
|
|
|
}
|
2014-10-01 15:46:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 15:46:54 +02:00
|
|
|
#setup_ldap_discovery_confirm table {
|
|
|
|
margin: 1em 0;
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 1em 0.2em;
|
|
|
|
}
|
|
|
|
|
2014-10-01 15:46:58 +02:00
|
|
|
#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-01 15:46:58 +02:00
|
|
|
}
|
2014-10-02 17:11:00 +02:00
|
|
|
}
|
|
|
|
|
2014-10-06 16:04:58 +02:00
|
|
|
#setup div.summary {
|
2014-10-02 17:11:00 +02:00
|
|
|
div.page {
|
2014-10-16 14:52:26 +02:00
|
|
|
float: left;
|
|
|
|
width: 30em;
|
|
|
|
padding: 0 1em 1em;
|
|
|
|
margin: 1em 2em 2em;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
border: 1px dashed lightgrey;
|
|
|
|
|
2014-10-02 17:11:00 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2014-10-16 14:52:26 +02:00
|
|
|
div.topic {
|
2014-10-02 17:11:00 +02:00
|
|
|
margin-left: 2em;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
2014-10-16 14:52:26 +02:00
|
|
|
ul {
|
|
|
|
list-style-type: circle;
|
2014-10-02 17:11:00 +02:00
|
|
|
}
|
|
|
|
|
2014-10-16 14:52:26 +02:00
|
|
|
table {
|
|
|
|
border-spacing: 0.5em;
|
|
|
|
border-collapse: separate;
|
|
|
|
font-size: 0.9em;
|
2014-10-02 17:11:00 +02:00
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-16 14:52:26 +02:00
|
|
|
|
|
|
|
form {
|
|
|
|
clear: left;
|
|
|
|
}
|
2014-10-06 16:49:29 +02:00
|
|
|
}
|
|
|
|
|
2014-10-17 09:18:10 +02:00
|
|
|
.conspicuous-state-notification {
|
|
|
|
width: 66%;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0.5em;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#installer {
|
|
|
|
div.report {
|
|
|
|
padding: 1em;
|
|
|
|
border-radius: 2em;
|
|
|
|
background-color: #eee;
|
2014-10-06 16:49:29 +02:00
|
|
|
|
2014-10-23 11:41:16 +02:00
|
|
|
div.line-separator {
|
|
|
|
width: 50%;
|
|
|
|
height: 1px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2014-10-17 09:18:10 +02:00
|
|
|
p {
|
|
|
|
margin: 1em;
|
|
|
|
color: #444;
|
|
|
|
text-align: center;
|
2014-10-06 16:49:29 +02:00
|
|
|
|
2014-10-17 09:18:10 +02:00
|
|
|
&.error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.failure {
|
|
|
|
.conspicuous-state-notification;
|
|
|
|
background-color: @colorCritical;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.success {
|
|
|
|
.conspicuous-state-notification;
|
|
|
|
background-color: @colorOk;
|
|
|
|
}
|
2014-10-06 16:49:29 +02:00
|
|
|
}
|
|
|
|
}
|
2014-10-17 09:18:10 +02:00
|
|
|
|
|
|
|
div.buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2014-10-17 11:19:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#setup_welcome {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.info {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 1em;
|
|
|
|
border-radius: 1em;
|
|
|
|
background-color: #eee;
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
}
|
2014-10-01 15:46:58 +02:00
|
|
|
}
|