mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-04 11:51:02 +01:00
48 lines
815 B
CSS
48 lines
815 B
CSS
|
/**
|
||
|
* @provides sprite-buttonbar-css
|
||
|
* @generated
|
||
|
*/
|
||
|
|
||
|
.sprite-buttonbar {
|
||
|
background-image: url(/rsrc/image/sprite-buttonbar.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-buttonbar {
|
||
|
background-image: url(/rsrc/image/sprite-buttonbar-X2.png);
|
||
|
background-size: 45px 45px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
.buttonbar-calendar {
|
||
|
background-position: 0px 0px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-chevron-left {
|
||
|
background-position: -15px 0px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-chevron-right {
|
||
|
background-position: -30px 0px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-cog {
|
||
|
background-position: 0px -15px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-home {
|
||
|
background-position: -15px -15px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-pencil {
|
||
|
background-position: 0px -30px;
|
||
|
}
|
||
|
|
||
|
.buttonbar-time {
|
||
|
background-position: -15px -30px;
|
||
|
}
|