icingaweb2/public/css/icinga/forms.less

262 lines
3.8 KiB
Plaintext
Raw Normal View History

/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
2014-02-18 19:39:54 +01:00
div.config-form-buttons {
margin-top: 5px;
}
table.configTable {
2014-03-05 15:28:10 +01:00
border-spacing: 15px;
border-collapse: separate;
}
td.configTable {
border: solid;
border-width: thin;
padding: 10px;
min-width: 300px;
}
.form-element {
2014-02-18 19:39:54 +01:00
margin-bottom: 1em;
}
label {
display: block;
2014-02-18 19:39:54 +01:00
font-weight: bold;
}
input, select {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
border: 1px solid #ddd;
2014-11-07 11:38:32 +01:00
font-size: 0.9em;
padding: 0.2em;
background: #fff;
2014-11-07 11:38:32 +01:00
font-family: Calibri, Helvetica, sans-serif;
2014-02-18 19:39:54 +01:00
}
input:focus, select:focus {
border-color: #333;
}
2014-02-18 19:39:54 +01:00
input[type=submit] {
font-weight: bold;
text-align: center;
2014-11-07 11:38:32 +01:00
color: #fff;
border: 2px solid #ddd;
2014-11-13 17:20:06 +01:00
border-color: @colorPetrol;
background: @colorPetrol;
outline: 0;
}
2014-02-18 19:39:54 +01:00
2014-03-09 01:56:34 +01:00
input[type=submit]:hover, a.button:hover, input[type=submit]:focus {
background-color: #333;
border-color: #333;
2014-03-09 01:56:34 +01:00
}
input[type=submit]:hover, a.button:hover {
cursor: pointer;
color: white;
}
input:focus, select:focus {
background: white;
outline: 0;
}
2014-02-18 19:39:54 +01:00
2014-03-09 01:56:34 +01:00
input::-moz-placeholder {
color: #333;
}
input::-webkit-input-placeholder {
color: #333;
}
input:-ms-input-placeholder {
color: #333;
}
2014-02-18 19:39:54 +01:00
input::-moz-focus-inner {
border: 0;
2014-03-09 01:56:34 +01:00
outline: 0;
}
2014-02-18 19:39:54 +01:00
button::-moz-focus-inner {
border: 0;
outline: 0;
}
2015-05-15 13:24:27 +02:00
button {
cursor: pointer;
}
select::-moz-focus-inner {
border: 0;
outline: 0;
2014-02-18 19:39:54 +01:00
}
form.inline {
margin: 0;
padding: 0;
display: inline;
}
form.link-like input[type="submit"], form.link-like button[type="submit"], input.link-like, button.link-like {
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,
form.link-like button[type="submit"]:hover,
form.link-like button[type="submit"]:focus,
input.link-like:hover, button.link-like:focus {
text-decoration: underline;
background: none;
color: @colorLinkDefault;
}
.non-list-like-list {
list-style-type: none;
margin: 0;
padding: 0.5em 0.5em 0;
li {
padding-bottom: 0.5em;
}
2014-02-18 19:39:54 +01:00
}
form div.element ul.errors {
.non-list-like-list;
margin: 0.3em 0 0 0.6em;
li {
color: @colorCritical;
font-weight: bold;
}
}
form ul.form-errors {
.non-list-like-list;
margin-bottom: 1em;
background-color: @colorCritical;
ul.errors {
.non-list-like-list;
padding: 0;
li:last-child {
padding-bottom: 0;
}
}
li {
color: white;
font-weight: bold;
}
2014-02-18 19:39:54 +01:00
}
form ul.form-notifications {
.non-list-like-list;
margin-bottom: 1em;
padding: 0;
ul {
.non-list-like-list;
&.info {
background-color: @colorFormNotificationInfo;
}
&.warning {
background-color: @colorFormNotificationWarning;
}
&.error {
background-color: @colorFormNotificationError;
}
}
li {
color: white;
font-weight: bold;
}
}
2014-10-15 15:46:07 +02:00
form div.element {
margin: 0.5em 0;
2014-02-18 19:39:54 +01:00
}
2014-10-01 10:01:25 +02:00
form label {
display: inline-block;
margin-right: 1em;
font-size: 0.9em;
width: 10em;
}
2014-11-20 13:22:38 +01:00
select, input[type=text], textarea {
width: 20em;
2014-11-20 13:22:38 +01:00
display: inline-block;
}
textarea {
height: 4em;
}
textarea.resource {
&.ssh-identity {
width: 50%;
height: 25em;
}
}
2014-10-01 10:01:25 +02:00
form .description {
font-size: 0.8em;
2014-10-15 15:46:07 +02:00
margin: 0.3em 0 0 0.6em;
}
2014-09-24 07:43:33 +02:00
.description {
display: block;
}
select.grant-permissions {
height: 20em;
width: auto;
}
label ~ input, label ~ select {
margin-left: 1.35em;
}
label + i ~ input, label + i ~ select {
margin-left: 0;
}
button.noscript-apply {
margin-left: 0.5em;
}
html.no-js i.autosubmit-warning {
.sr-only;
}
form ul.descriptions {
.info-box;
padding: 0.5em 0.5em 0 1.8em;
li {
padding-bottom: 0.5em;
&:only-child {
margin-left: -1.3em;
list-style-type: none;
}
}
}