angular-docs-cn/public/resources/css/_state.scss

24 lines
316 B
SCSS
Raw Normal View History

2015-03-11 20:56:08 -04:00
/*
* States
*
* Utility classes for different element states
*/
2015-03-03 09:41:37 -05:00
.is-hidden {
display: none !important;
2015-03-04 13:35:30 -05:00
}
2015-03-11 20:56:08 -04:00
2015-03-04 23:27:30 -05:00
.is-visible {
display: block !important;
2015-03-11 20:56:08 -04:00
}
.is-visually-hidden {
height: 1px;
width: 1px;
overflow: hidden;
opacity: 0.01;
position: absolute;
bottom: 0px;
right: 0px;
z-index: $layer-1;
}