2012-08-10 19:44:04 +02:00
|
|
|
/**
|
|
|
|
* @provides ponder-vote-css
|
|
|
|
*/
|
|
|
|
|
adding comments to ponder
Summary: This is pretty spartan, but it does the job.
Test Plan:
Patch, update storage, add some comment
to your favorite question or answer.
Reviewers: nh, vrana, epriestley
Reviewed By: epriestley
CC: aran, Korvin, starruler, syrneus, me.here, victorzarate7
Maniphest Tasks: T1645
Differential Revision: https://secure.phabricator.com/D3471
2012-09-11 21:13:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
.ponder-votable .phabricator-transaction-view {
|
|
|
|
margin : 0;
|
|
|
|
padding : 0;
|
2012-08-10 19:44:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-votable .phabricator-transaction-detail {
|
|
|
|
min-height : 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-votebox {
|
|
|
|
float : left;
|
|
|
|
width : 32px;
|
|
|
|
height : 60px;
|
|
|
|
margin-top : 56px;
|
|
|
|
margin-left : 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-upbutton {
|
|
|
|
border : none;
|
|
|
|
padding : 0;
|
|
|
|
margin : 0;
|
|
|
|
width : 32px;
|
|
|
|
height : 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-downbutton {
|
|
|
|
border : none;
|
|
|
|
padding : 0;
|
|
|
|
margin : 0;
|
|
|
|
width : 32px;
|
|
|
|
height : 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-votecount {
|
|
|
|
width : 32px;
|
|
|
|
height : 22pt;
|
|
|
|
padding : 0;
|
|
|
|
margin : 0;
|
|
|
|
overflow : visible;
|
|
|
|
text-align : center;
|
|
|
|
font-size : 15pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-upbutton:hover {
|
|
|
|
cursor : pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-downbutton:hover {
|
|
|
|
cursor : pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-votable-bottom {
|
|
|
|
clear : both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-upbutton {
|
|
|
|
background : url(/rsrc/image/application/ponder/upvote.png) 0 -13px no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-upbutton.ponder-vote-up {
|
|
|
|
background : url(/rsrc/image/application/ponder/upvote.png) 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-downbutton {
|
|
|
|
background : url(/rsrc/image/application/ponder/downvote.png)
|
|
|
|
0 -13px no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ponder-downbutton.ponder-vote-down {
|
|
|
|
background : url(/rsrc/image/application/ponder/downvote.png) 0 0 no-repeat;
|
|
|
|
}
|