atst/styles/core/_util.scss
Montana 4242632a30 Change More/Less anchor styling
-no longer overlaps text in an ugly way
2019-06-05 15:52:56 -04:00

70 lines
911 B
SCSS

.nowrap {
white-space: nowrap;
}
@mixin hide {
border: 0;
clip: rect(0 0 0 0);
clip-path: inset(100%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.hide {
@include hide;
}
.right {
float: right;
}
@mixin unhide {
clip: auto;
clip-path: none;
height: auto;
overflow: visible;
position: static;
white-space: inherit;
width: auto;
}
@mixin line-max {
max-width: 45em;
}
[v-cloak] {
display: none;
}
@mixin ie-only {
// Applies to IE 10+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}
.semi-collapsed {
overflow: hidden;
height: 5.1rem;
}
.more {
margin-top: -4.4rem;
padding-left: 1.25rem;
background-color: $color-offwhite;
position: relative;
cursor: pointer;
}
.green {
color: $color-green;
}
.user-permission {
font-weight: $font-normal;
}