1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-12 08:36:13 +01:00
phorge-phorge/webroot/rsrc/css/application/ponder/vote.css
Pieter Hooimeijer 5883b4f50c 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 12:13:20 -07:00

77 lines
1.2 KiB
CSS

/**
* @provides ponder-vote-css
*/
.ponder-votable .phabricator-transaction-view {
margin : 0;
padding : 0;
}
.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;
}