mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
8bcdf42762
Summary: Add a ".device" rule which means "phone or tablet". Simplify about 5000 rules which were written ".device-phone X, device-tablet X { ... }". Test Plan: Browsed the site a bit without incident. Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T1960 Differential Revision: https://secure.phabricator.com/D4103
132 lines
2.6 KiB
CSS
132 lines
2.6 KiB
CSS
/**
|
|
* @provides phabricator-timeline-view-css
|
|
*/
|
|
|
|
.phabricator-timeline-event-view {
|
|
border-width: 0 0 0 3px;
|
|
border-style: solid;
|
|
border-color: #eaeaea;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-event-view {
|
|
margin-left: 80px;
|
|
margin-right: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-spacer {
|
|
min-height: 10px;
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-major-event {
|
|
border-right-width: 3px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-wedge {
|
|
border-bottom: 3px solid #eaeaea;
|
|
position: absolute;
|
|
width: 10px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-major-event
|
|
.phabricator-timeline-content {
|
|
min-height: 70px;
|
|
}
|
|
|
|
.phabricator-timeline-major-event .phabricator-timeline-content {
|
|
border-style: solid;
|
|
border-color: #eaeaea;
|
|
border-width: 1px 0;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-minor-event
|
|
.phabricator-timeline-content {
|
|
margin-left: 35px;
|
|
padding: 5px 0;
|
|
min-height: 25px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-title {
|
|
line-height: 25px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-major-event .phabricator-timeline-wedge {
|
|
left: -10px;
|
|
top: 34px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-minor-event .phabricator-timeline-wedge {
|
|
left: 0px;
|
|
top: 17px;
|
|
}
|
|
|
|
.phabricator-timeline-image {
|
|
background: #eaeaea;
|
|
background-repeat: no-repeat;
|
|
position: absolute;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-major-event .phabricator-timeline-image {
|
|
width: 50px;
|
|
height: 50px;
|
|
top: 10px;
|
|
left: -60px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-minor-event .phabricator-timeline-image {
|
|
width: 25px;
|
|
height: 25px;
|
|
background-size: 25px auto;
|
|
top: 5px;
|
|
left: 10px;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-major-event
|
|
.phabricator-timeline-standard-title {
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
.device-desktop .phabricator-timeline-standard-title {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.phabricator-timeline-major-event .phabricator-timeline-standard-content
|
|
.phabricator-timeline-core-content {
|
|
padding: 5px;
|
|
}
|
|
|
|
|
|
.phabricator-timeline-red .phabricator-timeline-border {
|
|
border-color: #dd0000;
|
|
}
|
|
|
|
.phabricator-timeline-green .phabricator-timeline-border {
|
|
border-color: #009966;
|
|
}
|
|
|
|
.device .phabricator-timeline-event-view {
|
|
min-height: 25px;
|
|
position: relative;
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
|
|
border-right-width: 3px;
|
|
border-right-style: solid;
|
|
}
|
|
|
|
.device .phabricator-timeline-image {
|
|
display: none;
|
|
}
|
|
|
|
.device .phabricator-timeline-title {
|
|
line-height: 25px;
|
|
min-height: 25px;
|
|
background: #f7f7f7;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.device .phabricator-timeline-spacer {
|
|
min-height: 8px;
|
|
border-width: 0;
|
|
}
|