mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
1c84d2719c
Summary: Ref T8099, Ref T8614. Reasonable attempt at a larger font size PostProcessor, will need additional UI cleanup (places where we fix height) but overall very decent. Test Plan: Use lots of the UI elements with new font sizes. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8614 Differential Revision: https://secure.phabricator.com/D13457
85 lines
1.3 KiB
CSS
85 lines
1.3 KiB
CSS
/**
|
|
* @provides ponder-comment-table-css
|
|
*/
|
|
|
|
.ponder-show-comments {
|
|
text-align: center;
|
|
padding: 8px;
|
|
margin: 0 16px;
|
|
float: right;
|
|
font-weight: bold;
|
|
background: #fff;
|
|
border-bottom: 1px solid {$blueborder};
|
|
border-left: 1px solid {$lightblueborder};
|
|
border-right: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.ponder-comments {
|
|
width: 480px;
|
|
margin: 5px 0 0 60px;
|
|
}
|
|
|
|
.device .ponder-comments {
|
|
width: 100%;
|
|
margin: 5px 0 0 0;
|
|
}
|
|
|
|
.ponder-comments th {
|
|
width: 0px;
|
|
height: 0px;
|
|
}
|
|
|
|
.ponder-comments td {
|
|
vertical-align: top;
|
|
padding: 6px;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
background: #fff;
|
|
}
|
|
|
|
.ponder-datestamp {
|
|
font-size: {$smallestfontsize};
|
|
color: {$greytext};
|
|
}
|
|
|
|
.ponder-label {
|
|
display: block;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
color: #333;
|
|
text-align: left;
|
|
margin: 0px 0px 6px;
|
|
padding: 6px 4px;
|
|
background: #ccc;
|
|
border-bottom: 1px solid #aaa;
|
|
cursor: pointer;
|
|
}
|
|
|
|
td .aphront-form-control {
|
|
padding: 0;
|
|
}
|
|
|
|
td .aphront-form-control-submit {
|
|
display: block;
|
|
}
|
|
|
|
td .aphront-form-input {
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
td .aphront-form-control textarea {
|
|
height: 50px;
|
|
}
|
|
|
|
.ponder-comment-markup p {
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
.ponder-comment-markup h2,
|
|
.ponder-comment-markup h3,
|
|
.ponder-comment-markup h4,
|
|
.ponder-comment-markup h5 {
|
|
margin: 0;
|
|
font-size: inherit;
|
|
font-weight: normal;
|
|
}
|