mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Clean up Countdown views
Summary: Touch up Countdown timer in page, remarkup, and mobile. Test Plan: Test in page, remarkup, and mobile. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13732
This commit is contained in:
parent
559bcc42c2
commit
0525d727ee
2 changed files with 14 additions and 4 deletions
|
@ -54,7 +54,7 @@ return array(
|
|||
'rsrc/css/application/conpherence/update.css' => 'faf6be09',
|
||||
'rsrc/css/application/conpherence/widget-pane.css' => '419fd50c',
|
||||
'rsrc/css/application/contentsource/content-source-view.css' => '4b8b05d4',
|
||||
'rsrc/css/application/countdown/timer.css' => '4f02bd98',
|
||||
'rsrc/css/application/countdown/timer.css' => '3791bb38',
|
||||
'rsrc/css/application/daemon/bulk-job.css' => 'df9c1d4a',
|
||||
'rsrc/css/application/dashboard/dashboard.css' => 'eb458607',
|
||||
'rsrc/css/application/diff/inline-comment-summary.css' => '51efda3a',
|
||||
|
@ -722,7 +722,7 @@ return array(
|
|||
'phabricator-chatlog-css' => 'd295b020',
|
||||
'phabricator-content-source-view-css' => '4b8b05d4',
|
||||
'phabricator-core-css' => 'a76cefc9',
|
||||
'phabricator-countdown-css' => '4f02bd98',
|
||||
'phabricator-countdown-css' => '3791bb38',
|
||||
'phabricator-dashboard-css' => 'eb458607',
|
||||
'phabricator-drag-and-drop-file-upload' => '07de8873',
|
||||
'phabricator-draggable-list' => 'a16ec1c6',
|
||||
|
|
|
@ -3,17 +3,26 @@
|
|||
*/
|
||||
|
||||
.phabricator-timer {
|
||||
margin: 16px;
|
||||
margin: 16px 16px 0 16px;
|
||||
border: 1px solid {$lightblueborder};
|
||||
border-radius: 4px;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.device-phone .phabricator-timer {
|
||||
margin-left: 8px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.phabricator-remarkup .phabricator-timer {
|
||||
width: 360px;
|
||||
margin: 0 0 12px 0;
|
||||
}
|
||||
|
||||
.device-phone .phabricator-remarkup .phabricator-timer {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.phabricator-timer-header {
|
||||
font-size: {$biggerfontsize};
|
||||
font-weight: bold;
|
||||
|
@ -30,6 +39,7 @@
|
|||
|
||||
.phabricator-timer-table th {
|
||||
text-align: center;
|
||||
font-size: {$biggerfontsize};
|
||||
color: {$greytext};
|
||||
width: 10%;
|
||||
padding: 4px;
|
||||
|
|
Loading…
Reference in a new issue