mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
31 lines
711 B
CSS
31 lines
711 B
CSS
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/*
|
|
* Autorepeatbutton
|
|
*/
|
|
.autorepeatbutton-up
|
|
{
|
|
list-style-image : url("chrome://global/skin/arrow/arrow-up.gif")
|
|
}
|
|
|
|
.autorepeatbutton-down
|
|
{
|
|
list-style-image : url("chrome://global/skin/arrow/arrow-dn.gif")
|
|
}
|
|
|
|
autorepeatbutton
|
|
{
|
|
-moz-box-align : center;
|
|
-moz-box-pack : center;
|
|
margin : 1px 2px 2px 1px;
|
|
border : 1px solid transparent;
|
|
padding : 1px;
|
|
}
|
|
|
|
autorepeatbutton:hover
|
|
{
|
|
margin : 1px;
|
|
border : 1px inset ThreeDFace;
|
|
padding : 2px 1px 1px 2px;
|
|
}
|