mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-17 16:56:08 +10:00
51 lines
581 B
CSS
Executable File
51 lines
581 B
CSS
Executable File
/**
|
|
* import components to builds angular-ui.css
|
|
*/
|
|
|
|
/* ui-reset */
|
|
|
|
.ui-resetwrap {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.ui-reset {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 2;
|
|
display: none;
|
|
height: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ui-resetwrap:hover .ui-reset {
|
|
display: block;
|
|
}
|
|
|
|
/* ui-currency */
|
|
|
|
.ui-currency-pos {
|
|
color: green;
|
|
}
|
|
|
|
.ui-currency-neg {
|
|
color: red;
|
|
}
|
|
|
|
.ui-currency-zero {
|
|
color: blue;
|
|
}
|
|
|
|
.ui-currency-pos.ui-bignum,
|
|
.ui-currency-neg.ui-smallnum {
|
|
font-size: 110%;
|
|
}
|
|
|
|
/* highlight */
|
|
|
|
.ui-match {
|
|
background: yellow;
|
|
}
|
|
|