2011-06-13 01:06:17 +02:00
|
|
|
/**
|
|
|
|
* @provides phabricator-countdown-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phabricator-timer {
|
2013-07-23 15:16:19 +02:00
|
|
|
width: 90%;
|
|
|
|
margin: 12px auto;
|
2013-09-02 17:08:54 +02:00
|
|
|
border: 1px solid {$greytext};
|
2013-07-23 15:16:19 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #ffffff;
|
|
|
|
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
.phabricator-remarkup .phabricator-timer {
|
|
|
|
width: 300px;
|
2011-06-13 01:06:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-23 15:16:19 +02:00
|
|
|
.phabricator-timer-header {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 4px 8px;
|
|
|
|
background: #f0f0f0;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
border-bottom: 1px solid #d7d7d7;
|
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 {
|
|
|
|
color: #999999;
|
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
|
|
|
}
|