2013-01-01 23:09:59 +01:00
|
|
|
/**
|
|
|
|
* @provides config-options-css
|
|
|
|
*/
|
|
|
|
|
2013-01-01 23:10:33 +01:00
|
|
|
.config-option-table {
|
2013-01-01 23:09:59 +01:00
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
2017-09-06 00:21:12 +02:00
|
|
|
border: none;
|
2017-07-17 20:08:17 +02:00
|
|
|
background: {$page.content};
|
2013-01-01 23:09:59 +01:00
|
|
|
}
|
|
|
|
|
2013-01-01 23:10:33 +01:00
|
|
|
.config-option-table th,
|
|
|
|
.config-option-table td {
|
2017-09-06 00:21:12 +02:00
|
|
|
padding: 8px 12px;
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2013-01-01 23:09:59 +01:00
|
|
|
}
|
|
|
|
|
2013-01-01 23:10:33 +01:00
|
|
|
.config-option-table th {
|
2013-09-03 19:18:43 +02:00
|
|
|
background: {$lightgreybackground};
|
|
|
|
color: {$bluetext};
|
2017-09-06 00:21:12 +02:00
|
|
|
text-align: left;
|
2013-01-01 23:10:33 +01:00
|
|
|
white-space: nowrap;
|
2013-01-01 23:09:59 +01:00
|
|
|
}
|
|
|
|
|
2013-09-03 19:18:43 +02:00
|
|
|
.config-option-table th em,
|
|
|
|
.config-option-table td em {
|
2013-01-01 23:09:59 +01:00
|
|
|
font-weight: normal;
|
2013-09-02 17:08:54 +02:00
|
|
|
color: {$greytext};
|
2013-01-01 23:09:59 +01:00
|
|
|
}
|
|
|
|
|
2013-01-01 23:10:33 +01:00
|
|
|
.config-option-table td {
|
2013-09-03 19:18:43 +02:00
|
|
|
color: {$darkgreytext};
|
2013-01-01 23:10:33 +01:00
|
|
|
width: 100%;
|
2013-09-13 20:11:05 +02:00
|
|
|
white-space: pre-wrap;
|
2013-01-01 23:10:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.config-option-table .column-labels th {
|
|
|
|
font-weight: bold;
|
2013-09-03 19:18:43 +02:00
|
|
|
color: {$bluetext};
|
2017-09-06 00:21:12 +02:00
|
|
|
background: {$lightgreybackground};
|
|
|
|
border-right: 1px solid {$thinblueborder};
|
2013-01-01 23:09:59 +01:00
|
|
|
}
|
|
|
|
|
2013-01-01 23:11:39 +01:00
|
|
|
.config-options-current-value {
|
2017-09-06 00:21:12 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
width: 200px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2013-01-01 23:11:39 +01:00
|
|
|
}
|
2013-01-01 23:09:59 +01:00
|
|
|
|
2017-09-06 00:21:12 +02:00
|
|
|
.config-options-current-value.violet {
|
|
|
|
color: {$violet};
|
2013-01-01 23:11:39 +01:00
|
|
|
}
|
2015-09-03 21:15:30 +02:00
|
|
|
|
|
|
|
.config-options-effective-value,
|
|
|
|
.config-option-table .config-options-effective-value th {
|
2017-07-19 23:38:55 +02:00
|
|
|
background: {$gentle.highlight};
|
2015-09-03 21:15:30 +02:00
|
|
|
}
|