179 lines
2.6 KiB
Plaintext
179 lines
2.6 KiB
Plaintext
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
div.config-form-buttons {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
table.configTable {
|
|
border-spacing: 15px;
|
|
border-collapse: separate;
|
|
}
|
|
|
|
td.configTable {
|
|
border: solid;
|
|
border-width: thin;
|
|
padding: 10px;
|
|
min-width: 300px;
|
|
}
|
|
|
|
.form-element {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-weight: bold;
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
input, select {
|
|
box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
border: 1px solid #ddd;
|
|
padding: 0.2em;
|
|
background: #fff;
|
|
}
|
|
|
|
input:focus, select:focus {
|
|
border-color: #333;
|
|
}
|
|
|
|
input[type=submit] {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: #eee;
|
|
border-color: #777;
|
|
background: #777;
|
|
outline: 0;
|
|
}
|
|
|
|
input[type=submit]:hover, a.button:hover, input[type=submit]:focus {
|
|
background-color: #333;
|
|
border-color: #333;
|
|
}
|
|
|
|
input[type=submit]:hover, a.button:hover {
|
|
cursor: pointer;
|
|
color: white;
|
|
}
|
|
|
|
input:focus, select:focus {
|
|
background: white;
|
|
outline: 0;
|
|
}
|
|
|
|
input::-moz-placeholder {
|
|
color: #333;
|
|
}
|
|
|
|
input::-webkit-input-placeholder {
|
|
color: #333;
|
|
}
|
|
|
|
input:-ms-input-placeholder {
|
|
color: #333;
|
|
}
|
|
|
|
input::-moz-focus-inner {
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
select::-moz-focus-inner {
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
input:disabled, select:disabled {
|
|
background-color: #fff;
|
|
border-color: white;
|
|
}
|
|
|
|
form.inline {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline;
|
|
}
|
|
|
|
form.link-like input[type="submit"] {
|
|
color: @colorLinkDefault;
|
|
font-weight: normal;
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
font-size: 1em;
|
|
cursor: pointer;
|
|
}
|
|
|
|
form.link-like input[type="submit"]:hover, form.link-like input[type="submit"]:focus {
|
|
text-decoration: underline;
|
|
background: none;
|
|
color: @colorLinkDefault;
|
|
}
|
|
|
|
form ul.errors {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
form ul.errors li {
|
|
color: @colorCritical;
|
|
font-weight: bold;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
#main form label {
|
|
display: inline-block;
|
|
margin-right: 1em;
|
|
font-size: 0.9em;
|
|
width: 10em;
|
|
}
|
|
|
|
#main select, #main input[type=text] {
|
|
width: 20em;
|
|
}
|
|
|
|
#main form .help-block, #main form .description {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.description {
|
|
display: block;
|
|
}
|
|
|
|
textarea {
|
|
height: 4em;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
input, select, textarea {
|
|
display: inline;
|
|
}
|
|
|
|
.control-group {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-flow: row wrap;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
.control-group > div {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
.control-group > div {
|
|
width: auto;
|
|
}
|
|
}
|