mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
aa86cf0ed8
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
45 lines
668 B
CSS
45 lines
668 B
CSS
/**
|
|
* @provides phabricator-countdown-css
|
|
*/
|
|
|
|
.phabricator-timer {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
background: #efefef;
|
|
border-top: 1px solid #cccccc;
|
|
}
|
|
|
|
.phabricator-timer-header {
|
|
padding: 8px;
|
|
background: #dfdfdf;
|
|
}
|
|
|
|
.phabricator-timer-pane {
|
|
padding: 8px 2em;
|
|
}
|
|
|
|
.phabricator-timer-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.phabricator-timer-table th {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: #666666;
|
|
width: 10%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.phabricator-timer-table td {
|
|
padding: 4px;
|
|
text-align: center;
|
|
font-size: 4em;
|
|
}
|
|
|
|
.phabricator-timer-chrome-link {
|
|
float: right;
|
|
padding: 3px 6px;
|
|
font-size: 11px;
|
|
}
|