mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
fca716d699
Summary: Fixes T9099, I think this is as much as I can come up with for unbeta. Cleans up the answer header (profile image, smaller font, smaller header). Cleans up voting (new, with color), and makes it a bit more readable. Test Plan: Review a number of answers in ponder with and without votes, comments. {F720189} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9099 Differential Revision: https://secure.phabricator.com/D13907
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
CSS
/**
|
|
* @provides ponder-view-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-question-view .phui-property-list-properties-wrap {
|
|
width: 66%;
|
|
}
|
|
|
|
.ponder-question-view .phui-property-list-actions {
|
|
width: 30%;
|
|
}
|
|
|
|
.ponder-answer-view {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.ponder-answer-view .phui-header-subheader {
|
|
display: inline;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.ponder-answer-view .phui-header-shell {
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.ponder-answer-view .phui-header-view .phui-header-header {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.ponder-answer-view .phui-header-col1 {
|
|
width: 45px;
|
|
}
|
|
|
|
.ponder-answer-view .phui-header-image {
|
|
height: 35px;
|
|
width: 35px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.ponder-footer-view {
|
|
margin: 0 4px -4px;
|
|
text-align: right;
|
|
}
|
|
|
|
.ponder-footer-view .ponder-footer-action {
|
|
padding: 4px 8px;
|
|
margin-left: 8px;
|
|
color: {$bluetext};
|
|
display: inline-block;
|
|
background-color: rgba(71, 87, 120, 0.06);
|
|
font-size: {$smallerfontsize};
|
|
}
|
|
|
|
.ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful {
|
|
background-color: {$lightyellow};
|
|
}
|
|
|
|
.ponder-footer-view .ponder-footer-action .phui-icon-view {
|
|
color: {$bluetext};
|
|
font-size: {$smallerfontsize};
|
|
}
|
|
|
|
.ponder-footer-view a:hover {
|
|
text-decoration: none;
|
|
color: {$darkbluetext};
|
|
background-color: rgba(71, 87, 120, 0.10);
|
|
}
|