1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 17:02:41 +01:00
phorge-phorge/webroot/rsrc/css/application/config/config-options.css
epriestley 3852ca632b Display examples when editing configuratoin
Summary: Show example config values to the user when available.

Test Plan:
{F28465}
{F28466}

Reviewers: btrahan, codeblock

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2221, T2255

Differential Revision: https://secure.phabricator.com/D4311
2013-01-01 14:09:59 -08:00

32 lines
476 B
CSS

/**
* @provides config-options-css
*/
.config-option-examples {
width: 100%;
border-collapse: collapse;
border: 1px solid #cccccc;
}
.config-option-examples th,
.config-option-examples td {
padding: 4px 6px;
border: 1px solid #cccccc;
}
.config-option-examples th {
background: #dfdfdf;
text-align: right;
font-weight: bold;
}
.config-option-examples th em {
font-weight: normal;
color: #666666;
}
.config-option-examples td {
color: #333333;
}