mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 11:42:42 +01:00
dd995984eb
Summary: This adds standard 'blues' and start integration of standard colors for text, backgrounds, and borders. Test Plan: sb Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6857
48 lines
770 B
CSS
48 lines
770 B
CSS
/**
|
|
* @provides config-options-css
|
|
*/
|
|
|
|
.config-option-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #cccccc;
|
|
background: #fff;
|
|
}
|
|
|
|
.config-option-table th,
|
|
.config-option-table td {
|
|
padding: 4px 12px;
|
|
border: 1px solid #cccccc;
|
|
}
|
|
|
|
.config-option-table th {
|
|
background: #e9e9e9;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.config-option-table th em {
|
|
font-weight: normal;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.config-option-table td {
|
|
color: #333333;
|
|
width: 100%;
|
|
}
|
|
|
|
.config-option-table .column-labels th {
|
|
font-weight: bold;
|
|
color: #333333;
|
|
text-align: center;
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
.config-options-current-value {
|
|
padding: 0 8px 6px;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.config-options-current-value span {
|
|
color: {$greytext};
|
|
}
|