mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
a211f97737
Summary: this was originally "just" adding the icons like I had bundled into D4790. It morphed a bit though and does a few things - adds the icons - cleans up widget CSS generally a bit so scrolling always works - phutil_tag -- probably was a bad idea but I wanted to play with it. I think its harder to not break conpherence when you land the branch now maybs. Still up for fixing it immediately post land though. Test Plan: played with conphernece a bit. Used FF and Chrome to verify CSS was looking okay-ish. Reviewers: epriestley, chad Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2399 Differential Revision: https://secure.phabricator.com/D4814
75 lines
1.5 KiB
CSS
75 lines
1.5 KiB
CSS
/**
|
|
* @provides sprite-conpher-css
|
|
* @generated
|
|
*/
|
|
|
|
.sprite-conpher {
|
|
background-image: url(/rsrc/image/sprite-conph.png);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
@media
|
|
only screen and (min-device-pixel-ratio: 1.5),
|
|
only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
|
.sprite-conpher {
|
|
background-image: url(/rsrc/image/sprite-conph-X2.png);
|
|
background-size: 132px 132px;
|
|
}
|
|
}
|
|
|
|
|
|
.conpher_calendar_off {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.conpher_calendar_on, .device-desktop .conpher_calendar_off:hover {
|
|
background-position: -33px 0px;
|
|
}
|
|
|
|
.conpher_conversation_off {
|
|
background-position: -66px 0px;
|
|
}
|
|
|
|
.conpher_conversation_on, .device-desktop .conpher_conversation_off:hover {
|
|
background-position: -99px 0px;
|
|
}
|
|
|
|
.conpher_files_off {
|
|
background-position: 0px -33px;
|
|
}
|
|
|
|
.conpher_files_on, .device-desktop .conpher_files_off:hover {
|
|
background-position: -33px -33px;
|
|
}
|
|
|
|
.conpher_list_off {
|
|
background-position: -66px -33px;
|
|
}
|
|
|
|
.conpher_list_on, .device-desktop .conpher_list_off:hover {
|
|
background-position: -99px -33px;
|
|
}
|
|
|
|
.conpher_more_off {
|
|
background-position: 0px -66px;
|
|
}
|
|
|
|
.conpher_more_on, .device-desktop .conpher_more_off:hover {
|
|
background-position: -33px -66px;
|
|
}
|
|
|
|
.conpher_people_off {
|
|
background-position: -66px -66px;
|
|
}
|
|
|
|
.conpher_people_on, .device-desktop .conpher_people_off:hover {
|
|
background-position: 0px -99px;
|
|
}
|
|
|
|
.conpher_settings_off {
|
|
background-position: -33px -99px;
|
|
}
|
|
|
|
.conpher_settings_on, .device-desktop .conpher_settings_off:hover {
|
|
background-position: -66px -99px;
|
|
}
|