mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d61ac3468b
Summary: Initial pass at an action header. The idea is to support current and future planned needs in 'headers' with various colors and icons. The overall goal here is to keep markup light and allow other classes to wrap and extend with more specific features. Test Plan: Tested UIExamples and Workboards. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin, AnhNhan Differential Revision: https://secure.phabricator.com/D5585
51 lines
903 B
CSS
51 lines
903 B
CSS
/**
|
|
* @provides sprite-minicons-css
|
|
* @generated
|
|
*/
|
|
|
|
.sprite-minicons {
|
|
background-image: url(/rsrc/image/sprite-minicons.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-minicons {
|
|
background-image: url(/rsrc/image/sprite-minicons-X2.png);
|
|
background-size: 51px 51px;
|
|
}
|
|
}
|
|
|
|
|
|
.minicons-company-white {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.minicons-move-white {
|
|
background-position: -17px 0px;
|
|
}
|
|
|
|
.minicons-public-white {
|
|
background-position: -34px 0px;
|
|
}
|
|
|
|
.minicons-restricted-white {
|
|
background-position: 0px -17px;
|
|
}
|
|
|
|
.minicons-company-dark {
|
|
background-position: -17px -17px;
|
|
}
|
|
|
|
.minicons-move-dark {
|
|
background-position: -34px -17px;
|
|
}
|
|
|
|
.minicons-public-dark {
|
|
background-position: 0px -34px;
|
|
}
|
|
|
|
.minicons-restricted-dark {
|
|
background-position: -17px -34px;
|
|
}
|