mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Standard colors on config-tables
Summary: Moving standard colors in some new places, going well so far. Test Plan: reload page Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6876
This commit is contained in:
parent
4bb920f396
commit
6e63adaf54
2 changed files with 10 additions and 8 deletions
|
@ -963,7 +963,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'config-options-css' =>
|
||||
array(
|
||||
'uri' => '/res/39061c0e/rsrc/css/application/config/config-options.css',
|
||||
'uri' => '/res/cbef6aae/rsrc/css/application/config/config-options.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -5,37 +5,39 @@
|
|||
.config-option-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid {$lightgreyborder};
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.config-option-table th,
|
||||
.config-option-table td {
|
||||
padding: 4px 12px;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid {$lightgreyborder};
|
||||
}
|
||||
|
||||
.config-option-table th {
|
||||
background: #e9e9e9;
|
||||
background: {$lightgreybackground};
|
||||
color: {$bluetext};
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.config-option-table th em {
|
||||
.config-option-table th em,
|
||||
.config-option-table td em {
|
||||
font-weight: normal;
|
||||
color: {$greytext};
|
||||
}
|
||||
|
||||
.config-option-table td {
|
||||
color: #333333;
|
||||
color: {$darkgreytext};
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.config-option-table .column-labels th {
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
color: {$bluetext};
|
||||
text-align: center;
|
||||
background: #e0e0e0;
|
||||
background: {$greybackground};
|
||||
}
|
||||
|
||||
.config-options-current-value {
|
||||
|
|
Loading…
Reference in a new issue