mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
3852ca632b
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
32 lines
476 B
CSS
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;
|
|
}
|
|
|
|
|