mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
092020a7a6
Summary: Ponder was pretty unusable on mobile, I fixed most of the issues and ran some pht's as well. Test Plan: Use Ponder //shudder// Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5977
61 lines
876 B
CSS
61 lines
876 B
CSS
/**
|
|
* @provides ponder-vote-css
|
|
*/
|
|
|
|
.ponder-votebox {
|
|
text-align: center;
|
|
}
|
|
|
|
.ponder-votebox a {
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
color: #a1a5a9;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.ponder-votebox a:hover {
|
|
color: #606060;
|
|
}
|
|
|
|
.ponder-votebox a.ponder-vote-active {
|
|
color: #3b5998;
|
|
}
|
|
|
|
.ponder-votebox a.ponder-vote-active:hover {
|
|
color: #a1bbe5;
|
|
}
|
|
|
|
.ponder-vote-count {
|
|
color: #888888;
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ponder-votebox {
|
|
float: left;
|
|
width: 32px;
|
|
height: 60px;
|
|
margin-top: 56px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.device-phone .ponder-votebox {
|
|
margin: 0;
|
|
}
|
|
|
|
.device-phone .ponder-votebox-content {
|
|
margin-left: 35px;
|
|
}
|
|
|
|
.ponder-votable .phabricator-transaction-view {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ponder-votable .phabricator-transaction-detail {
|
|
min-height : 90px;
|
|
}
|