1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 09:48:47 +02:00
phorge-phorge/webroot/rsrc/css/application/config/config-options.css
epriestley 25ca17da46 Show current value in configuration list; show default vs non-default values
Summary:
  - When viewing a config list, show the current effective value.
  - Add an icon showing default vs nondefault values.

Test Plan: {F28475}

Reviewers: btrahan, codeblock

Reviewed By: codeblock

CC: aran

Maniphest Tasks: T2255

Differential Revision: https://secure.phabricator.com/D4313
2013-01-01 14:11:39 -08:00

47 lines
742 B
CSS

/**
* @provides config-options-css
*/
.config-option-table {
width: 100%;
border-collapse: collapse;
border: 1px solid #cccccc;
}
.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: #666666;
}
.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 6px 2px;
white-space: pre-wrap;
}
.config-options-current-value span {
color: #666666;
}