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