* Swap deprecated box-sizing mixin with the box-sizing property * Linting now that box-sizing is no longer a mixin
165 lines
2.7 KiB
SCSS
165 lines
2.7 KiB
SCSS
%faded-hr-divider {
|
|
@include background-image($faded-hr-image-1);
|
|
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
|
|
%faded-hr-divider-medium {
|
|
@include background-image($faded-hr-image-4);
|
|
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
|
|
%faded-hr-divider-light {
|
|
@include background-image($faded-hr-image-5);
|
|
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
|
|
%faded-vertical-divider {
|
|
@include background-image($faded-hr-image-1);
|
|
|
|
height: 100%;
|
|
width: 1px;
|
|
}
|
|
|
|
%faded-vertical-divider-light {
|
|
@include background-image($faded-hr-image-6);
|
|
|
|
background: transparent;
|
|
height: 100%;
|
|
width: 1px;
|
|
}
|
|
|
|
%vertical-divider {
|
|
@extend %faded-vertical-divider;
|
|
|
|
position: relative;
|
|
|
|
&::after {
|
|
@extend %faded-vertical-divider-light;
|
|
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
left: 1px;
|
|
}
|
|
}
|
|
|
|
%horizontal-divider {
|
|
border: none;
|
|
|
|
@extend %faded-hr-divider;
|
|
|
|
position: relative;
|
|
|
|
&::after {
|
|
@extend %faded-hr-divider-light;
|
|
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 1px;
|
|
}
|
|
}
|
|
|
|
%fade-right-hr-divider {
|
|
@include background-image($faded-hr-image-2);
|
|
|
|
border: none;
|
|
}
|
|
|
|
%fade-left-hr-divider {
|
|
@include background-image($faded-hr-image-3);
|
|
|
|
border: none;
|
|
}
|
|
|
|
//Styles for Error messages
|
|
%error-message-colors {
|
|
background: $error-color;
|
|
border: 1px solid rgb(202, 17, 17);
|
|
color: rgb(143, 14, 14);
|
|
}
|
|
|
|
%success-message-colors {
|
|
background: rgb(19, 159, 58);
|
|
border: 1px solid rgb(6, 65, 18);
|
|
color: rgb(255, 255, 255);
|
|
}
|
|
|
|
.header-global {
|
|
.course-header {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// ====================
|
|
|
|
// needed utility extend for resetting poor basic <button> elem styling
|
|
%ui-reset-button {
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
background: transparent !important;
|
|
text-shadow: none !important;
|
|
letter-spacing: 0 !important;
|
|
text-transform: none !important;
|
|
}
|
|
|
|
// light button reset
|
|
%ui-clear-button {
|
|
background: none;
|
|
border-radius: ($baseline/4);
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
|
|
&:hover {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
&:focus,
|
|
&:active {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
// removes list styling/spacing when using uls, ols for navigation and less content-centric cases
|
|
%ui-no-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-indent: 0;
|
|
|
|
li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
%ui-deprecated {
|
|
@extend %t-weight4;
|
|
|
|
background: tint($warning-color, 85%);
|
|
padding: ($baseline/5) ($baseline/2);
|
|
color: shade($warning-color, 45%);
|
|
}
|
|
|
|
// extends - content - text overflow by ellipsis
|
|
%cont-truncated {
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
// Adds a simple extend that indicates that this user interface element should not print
|
|
%ui-print-excluded {
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|