mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +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
42 lines
640 B
CSS
42 lines
640 B
CSS
/**
|
|
* @provides ponder-vote-css
|
|
*/
|
|
|
|
.ponder-votable {
|
|
float: right;
|
|
margin: 4px 0 4px 24px;
|
|
}
|
|
|
|
.ponder-votebox {
|
|
border-radius: 4px;
|
|
background: #f3f3f3;
|
|
border: 1px solid {$blueborder};
|
|
text-align: center;
|
|
width: 24px;
|
|
}
|
|
|
|
.ponder-votebox a {
|
|
font-size: 20px;
|
|
line-height: 24px;
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
color: #aaaaaa;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.ponder-votebox a.ponder-vote-active {
|
|
color: {$blue};
|
|
}
|
|
|
|
.ponder-votebox a:hover {
|
|
color: #ffffff;
|
|
background: {$blue};
|
|
}
|
|
|
|
.ponder-vote-count {
|
|
color: {$darkbluetext};
|
|
font-size: {$biggerfontsize};
|
|
line-height: 20px;
|
|
font-weight: bold;
|
|
}
|