1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/application/config/config-options.css
Chad Little c9cc59a73c Tighten up object list 2px
Summary: Pulls in the top 2px and left 2px. Also reduces to 13px as standard. The 14px never looked decent to me. Main objective here is to have it feel more table-like instead of a sea of white space.

Test Plan: Tested layouts in Maniphest, Config, and UIExamples.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5551
2013-04-03 08:28:22 -07:00

47 lines
739 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 8px 6px;
white-space: pre-wrap;
}
.config-options-current-value span {
color: #777;
}