47 lines
903 B
SCSS
47 lines
903 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
.ui-widget {
|
|
font-family: $fontFamily;
|
|
font-size: $fontSize;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.ui-icon {
|
|
font-size: $iconSize;
|
|
display: inline-block;
|
|
vertical-align: baseline;
|
|
margin: 0;
|
|
position: static;
|
|
text-indent: 0;
|
|
overflow: visible;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.pi {
|
|
font-size: $iconSize;
|
|
}
|
|
|
|
.ui-widget-overlay {
|
|
-webkit-animation-name: modal-in;
|
|
animation-name: modal-in;
|
|
animation-duration: $animationDuration;
|
|
animation-timing-function: $animationTimingFunction;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
.ui-helper-reset {
|
|
line-height: normal;
|
|
}
|
|
|
|
.ui-state-disabled {
|
|
opacity: $disabledOpacity;
|
|
}
|
|
|
|
.ui-widget-overlay {
|
|
background: $maskBg;
|
|
}
|
|
}
|