mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
93eac1f9d3
Summary: Let's see if I did this right. This adds on and off state icons (1 and 2x) for conpherence. I think I need to tweak and add more CSS to have the off hover state be the on icon. Will check. Test Plan: spritegen Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2400 Differential Revision: https://secure.phabricator.com/D4709
67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
/**
|
|
* @provides sprite-conpher-css
|
|
* @generated
|
|
*/
|
|
|
|
.sprite-conpher {
|
|
background-image: url(/rsrc/image/sprite-conpher.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-conpher-X2.png);
|
|
background-size: 99px 132px;
|
|
}
|
|
}
|
|
|
|
|
|
conpher_calendar_off {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
conpher_calendar_on {
|
|
background-position: -33px 0px;
|
|
}
|
|
|
|
conpher_files_off {
|
|
background-position: -66px 0px;
|
|
}
|
|
|
|
conpher_files_on {
|
|
background-position: 0px -33px;
|
|
}
|
|
|
|
conpher_list_off {
|
|
background-position: -33px -33px;
|
|
}
|
|
|
|
conpher_list_on {
|
|
background-position: -66px -33px;
|
|
}
|
|
|
|
conpher_more_off {
|
|
background-position: 0px -66px;
|
|
}
|
|
|
|
conpher_more_on {
|
|
background-position: -33px -66px;
|
|
}
|
|
|
|
conpher_people_off {
|
|
background-position: -66px -66px;
|
|
}
|
|
|
|
conpher_people_on {
|
|
background-position: 0px -99px;
|
|
}
|
|
|
|
conpher_settings_off {
|
|
background-position: -33px -99px;
|
|
}
|
|
|
|
conpher_settings_on {
|
|
background-position: -66px -99px;
|
|
}
|