2011-06-13 01:06:17 +02:00
|
|
|
/**
|
|
|
|
* @provides phabricator-countdown-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phabricator-timer {
|
2015-06-26 18:33:03 +02:00
|
|
|
margin: 16px;
|
|
|
|
border: 1px solid {$lightblueborder};
|
2013-07-23 15:16:19 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #ffffff;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
.phabricator-remarkup .phabricator-timer {
|
2015-06-26 18:33:03 +02:00
|
|
|
width: 360px;
|
|
|
|
margin: 0 0 12px 0;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
.phabricator-timer-header {
|
2015-06-26 18:33:03 +02:00
|
|
|
font-size: {$biggerfontsize};
|
2013-07-23 15:16:19 +02:00
|
|
|
font-weight: bold;
|
|
|
|
padding: 4px 8px;
|
2015-06-26 18:33:03 +02:00
|
|
|
background: {$bluebackground};
|
|
|
|
border-radius: 3px 3px 0 0;
|
|
|
|
border-bottom: 1px solid {$lightblueborder};
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-timer-table {
|
|
|
|
width: 100%;
|
2013-07-23 15:16:19 +02:00
|
|
|
margin: 8px 0;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-timer-table th {
|
|
|
|
text-align: center;
|
2013-09-02 17:08:54 +02:00
|
|
|
color: {$greytext};
|
2011-06-13 01:06:17 +02:00
|
|
|
width: 10%;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-timer-table td {
|
|
|
|
padding: 4px;
|
|
|
|
text-align: center;
|
2013-07-23 15:16:19 +02:00
|
|
|
font-size: 36px;
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: auto;
|
|
|
|
height: auto;
|
|
|
|
line-height: 36px;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
.phabricator-timer-table small {
|
2013-09-02 17:12:18 +02:00
|
|
|
color: {$lightgreytext};
|
Countdown tweaks
Summary:
A few tweaks to hsb's Countdown implementation:
- Allow the page to be rendered "chromeless", suitable for display on one of
the dozens of monitors everyone has laying around.
- Show title of countdown in deletion dialog.
- When creating a new countdown default to time(), not Dec 31, 1969.
- Add extra "/" after editing to avoid needless redirect.
- Tweak some page titles.
- Show countdown author in list view.
- Highlight tab in list view.
- Tweak menu copy.
- Link countdown title in list view, separate buttons into different columns
so they pick up padding.
Test Plan:
Created, edited and deleted a timer. Viewed a timer and toggled chrome mode.
Viewed timer list.
Reviewed By: hsb
Reviewers: hsb, aran, jungejason, tuomaspelkonen
CC: aran, hsb, epriestley
Differential Revision: 454
2011-06-14 02:35:13 +02:00
|
|
|
}
|