2014-02-18 19:39:54 +01:00
|
|
|
|
2014-03-05 16:23:51 +01:00
|
|
|
div.config-form-buttons {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2014-03-05 13:38:38 +01:00
|
|
|
table.configTable {
|
2014-03-05 15:28:10 +01:00
|
|
|
border-spacing: 15px;
|
2014-03-05 13:38:38 +01:00
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.configTable {
|
|
|
|
border: solid;
|
|
|
|
border-width: thin;
|
|
|
|
padding: 10px;
|
2014-03-05 17:40:08 +01:00
|
|
|
min-width: 300px;
|
2014-03-05 13:38:38 +01:00
|
|
|
}
|
|
|
|
|
2014-03-05 15:28:10 +01:00
|
|
|
div.config-form-group {
|
2014-03-05 13:38:38 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:39:54 +01:00
|
|
|
.form-group {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
2014-02-25 11:07:36 +01:00
|
|
|
display: block;
|
2014-02-18 19:39:54 +01:00
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:07:36 +01:00
|
|
|
input, select {
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2014-03-09 01:56:34 +01:00
|
|
|
background: #ddd;
|
|
|
|
color: #333;
|
2014-02-25 11:07:36 +01:00
|
|
|
padding: 0.2em;
|
2014-03-09 01:56:34 +01:00
|
|
|
border: 2px solid #ddd;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
|
2014-02-25 11:07:36 +01:00
|
|
|
select {
|
|
|
|
/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 */
|
|
|
|
-moz-appearance: none;
|
|
|
|
padding-right: 5px;
|
|
|
|
text-overflow: '';
|
|
|
|
-webkit-appearance: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2014-02-18 19:39:54 +01:00
|
|
|
|
2014-02-25 11:07:36 +01:00
|
|
|
input[type=submit] {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
color: #eee;
|
2014-03-09 01:56:34 +01:00
|
|
|
border-color: #777;
|
2014-02-25 11:07:36 +01:00
|
|
|
background: #777;
|
|
|
|
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;
|
2014-02-25 11:07:36 +01:00
|
|
|
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 {
|
2014-02-25 11:07:36 +01:00
|
|
|
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-25 11:07:36 +01:00
|
|
|
}
|
2014-02-18 19:39:54 +01:00
|
|
|
|
2014-02-25 11:07:36 +01:00
|
|
|
input::-moz-focus-inner {
|
|
|
|
border: 0;
|
2014-03-09 01:56:34 +01:00
|
|
|
outline: 0;
|
2014-02-25 11:07:36 +01:00
|
|
|
}
|
2014-02-18 19:39:54 +01:00
|
|
|
|
2014-02-25 11:07:36 +01:00
|
|
|
select::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 20:26:19 +01:00
|
|
|
input:disabled, select:disabled {
|
|
|
|
background-color: #fff;
|
|
|
|
border-color: white;
|
|
|
|
}
|
|
|
|
|
2014-03-08 17:01:27 +01:00
|
|
|
form.inline {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.link-like {
|
|
|
|
color: @colorLinkDefault;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.link-like:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2014-02-25 11:07:36 +01:00
|
|
|
|
|
|
|
form ul.errors {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
|
2014-03-06 13:08:11 +01:00
|
|
|
form ul.errors li {
|
2014-02-25 11:07:36 +01:00
|
|
|
color: @colorCritical;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.5em;
|
2014-02-18 19:39:54 +01:00
|
|
|
}
|
|
|
|
|
2014-06-17 15:34:41 +02:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|