2022-07-06 13:44:25 -04:00
|
|
|
// Sass modules
|
|
|
|
@use "sass:math";
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
// Base font size
|
|
|
|
$base-font-size: 16px;
|
|
|
|
|
2016-08-16 19:33:02 -04:00
|
|
|
// Libraries
|
2020-02-25 17:43:02 -05:00
|
|
|
$fa-font-path: "/fonts";
|
|
|
|
@import "@fortawesome/fontawesome-free/scss/fontawesome.scss";
|
|
|
|
@import "@fortawesome/fontawesome-free/scss/solid.scss";
|
2016-08-16 19:33:02 -04:00
|
|
|
|
2022-07-06 13:44:25 -04:00
|
|
|
$enable-smooth-scroll: false;
|
|
|
|
@import "bootstrap/scss/bootstrap.scss";
|
2016-08-16 19:33:02 -04:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
// Functions
|
|
|
|
@import "functions/**/*.scss";
|
|
|
|
|
2022-07-06 13:44:25 -04:00
|
|
|
// Core
|
|
|
|
@import "_fonts";
|
|
|
|
@import "_common-vars";
|
|
|
|
|
2018-04-25 01:22:33 -04:00
|
|
|
// Supplementary
|
|
|
|
@import "mixins/**/*.scss";
|
|
|
|
|
2018-01-11 23:36:17 -05:00
|
|
|
// Colours
|
|
|
|
$c-text: #111; // text
|
2018-04-24 20:38:04 -04:00
|
|
|
$c-text-inactive: fade-out($c-text, 0.25); // inactive text
|
2018-01-11 23:36:17 -05:00
|
|
|
$c-text-light: #fff; // light text
|
2018-04-24 20:38:04 -04:00
|
|
|
$c-text-light-inactive: fade-out($c-text-light, 0.25); // inactive light text
|
2018-04-10 00:09:20 -04:00
|
|
|
$c-input-bg: #fff; // white
|
2018-04-16 00:45:32 -04:00
|
|
|
$c-dashboard-error: #a80000;
|
2021-07-29 17:45:47 -04:00
|
|
|
$c-dashboard-dark: #111;
|
2018-01-11 23:36:17 -05:00
|
|
|
$c-dashboard-light: #f1f1f1;
|
|
|
|
$c-dashboard-edit: #87823e;
|
|
|
|
$c-dashboard-delete: #87483e;
|
|
|
|
|
2016-08-19 00:33:12 -04:00
|
|
|
//
|
|
|
|
// Main Dashboard Styles
|
|
|
|
//
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
* {
|
|
|
|
outline: none !important;
|
2016-08-16 19:33:02 -04:00
|
|
|
}
|
|
|
|
|
2022-07-06 13:44:25 -04:00
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
font-size: $base-font-size;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xxxl) {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xxxxl) {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 19:33:02 -04:00
|
|
|
body {
|
|
|
|
@include font-sans;
|
2016-01-26 23:20:08 -05:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2018-01-12 23:48:21 -05:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-24 20:38:04 -04:00
|
|
|
.site-content {
|
2018-04-25 23:27:45 -04:00
|
|
|
position: relative;
|
2018-04-24 20:38:04 -04:00
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.page-content {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.dashboard-background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-07-29 18:01:04 -04:00
|
|
|
background-image: url("/img/dashboard/line-bg.svg");
|
2018-04-25 23:27:45 -04:00
|
|
|
background-position: center top;
|
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar, .dashboard-footer {
|
|
|
|
z-index: 10;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-08-16 19:33:02 -04:00
|
|
|
.navbar {
|
2018-04-16 12:24:28 -04:00
|
|
|
margin-bottom: $grid-gutter-width;
|
2018-04-10 00:09:20 -04:00
|
|
|
border: 0;
|
2016-08-16 19:33:02 -04:00
|
|
|
background-color: $c-dashboard-dark;
|
2018-04-18 00:38:11 -04:00
|
|
|
user-select: none;
|
2017-01-04 23:50:17 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
padding-right: pxrem(8);
|
|
|
|
padding-left: pxrem(8);
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-04-16 12:24:28 -04:00
|
|
|
margin-bottom: 0px;
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&-brand {
|
2018-04-16 12:24:28 -04:00
|
|
|
@include font-sans-bold;
|
2018-04-10 00:09:20 -04:00
|
|
|
overflow: hidden;
|
2021-05-21 22:33:55 -04:00
|
|
|
max-width: calc(100vw - #{pxrem(60)});
|
2018-04-18 00:38:11 -04:00
|
|
|
color: $c-text-light;
|
2018-04-10 00:09:20 -04:00
|
|
|
white-space: nowrap;
|
2017-01-04 23:50:17 -05:00
|
|
|
|
2018-04-18 00:38:11 -04:00
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
color: $c-text-light;
|
|
|
|
}
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
font-size: pxrem(12);
|
2017-01-04 23:50:17 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
&-toggler {
|
|
|
|
position: absolute;
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(3);
|
2018-04-16 12:24:28 -04:00
|
|
|
right: 0px;
|
2016-08-16 19:33:02 -04:00
|
|
|
border: 0;
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(10);
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
2018-04-18 00:38:11 -04:00
|
|
|
|
|
|
|
&-icon {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&-bar {
|
2021-05-21 22:33:55 -04:00
|
|
|
$v-inset: pxrem(6);
|
|
|
|
$h-inset: pxrem(3);
|
2018-04-18 00:38:11 -04:00
|
|
|
position: absolute;
|
|
|
|
left: $h-inset;
|
|
|
|
width: calc(100% - #{$h-inset * 2});
|
2021-05-21 22:33:55 -04:00
|
|
|
height: pxrem(2);
|
2018-04-18 00:38:11 -04:00
|
|
|
background-color: $c-text-light;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
top: $v-inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
bottom: $v-inset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
2018-04-24 20:38:04 -04:00
|
|
|
color: $c-text-light-inactive;
|
|
|
|
transition: color 150ms;
|
2018-04-18 00:38:11 -04:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
&.show {
|
|
|
|
color: $c-text-light-inactive;
|
|
|
|
}
|
|
|
|
|
2018-04-18 00:38:11 -04:00
|
|
|
&.active {
|
|
|
|
color: $c-text-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dropdown-toggle {
|
2021-05-21 22:33:55 -04:00
|
|
|
border: 0;
|
|
|
|
background-color: transparent;
|
2018-04-18 00:38:11 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
.dropdown-menu {
|
2021-05-21 22:33:55 -04:00
|
|
|
right: 0px;
|
|
|
|
left: auto;
|
2018-04-16 12:24:28 -04:00
|
|
|
padding: 0px;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-top-left-radius: 0;
|
2021-05-21 22:33:55 -04:00
|
|
|
list-style: none;
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(45);
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
2018-04-16 12:24:28 -04:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
.dropdown-item {
|
2018-04-18 00:38:11 -04:00
|
|
|
background-color: transparent;
|
2018-04-26 01:28:49 -04:00
|
|
|
transition: background-color 150ms, color 150ms;
|
2018-04-18 00:38:11 -04:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
padding-right: pxrem(8);
|
|
|
|
padding-left: pxrem(8);
|
2018-04-26 01:28:49 -04:00
|
|
|
background-color: darken($c-dashboard-dark, 2%);
|
|
|
|
color: $c-text-light-inactive;
|
2018-04-16 12:24:28 -04:00
|
|
|
}
|
2018-04-18 00:38:11 -04:00
|
|
|
|
2018-04-18 00:47:14 -04:00
|
|
|
&.active, &:hover, &:focus, &:active {
|
2018-04-18 00:38:11 -04:00
|
|
|
color: $c-text;
|
2018-04-26 01:28:49 -04:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
2018-04-26 01:28:49 -04:00
|
|
|
color: $c-text-light;
|
|
|
|
}
|
2018-04-18 00:38:11 -04:00
|
|
|
}
|
2018-04-24 20:38:04 -04:00
|
|
|
|
|
|
|
&:hover, &:focus {
|
2018-04-26 01:28:49 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
background-color: fade-out(#000, 0.97);
|
|
|
|
}
|
2018-04-24 20:38:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2018-04-26 01:28:49 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
background-color: fade-out(#000, 0.93);
|
|
|
|
}
|
2018-04-24 20:38:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-footer {
|
|
|
|
margin-top: $grid-gutter-width;
|
|
|
|
width: 100%;
|
2022-07-06 13:44:25 -04:00
|
|
|
padding: pxrem(8) $half-gutter-width;
|
2018-04-24 20:38:04 -04:00
|
|
|
background-color: $c-dashboard-dark;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $c-text-light-inactive;
|
2021-08-04 16:49:57 -04:00
|
|
|
text-decoration: none;
|
2018-04-24 20:38:04 -04:00
|
|
|
transition: color 150ms;
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $c-text-light;
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
.card {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(20);
|
|
|
|
margin-bottom: pxrem(20);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
> .card-header {
|
2018-04-26 00:03:16 -04:00
|
|
|
@include font-sans-bold;
|
2018-04-18 23:32:22 -04:00
|
|
|
position: relative;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(9) pxrem(15);
|
2018-04-18 23:32:22 -04:00
|
|
|
border-top: 1px solid darken($c-dashboard-dark, 5%);
|
|
|
|
border-right: 1px solid darken($c-dashboard-dark, 5%);
|
|
|
|
border-left: 1px solid darken($c-dashboard-dark, 5%);
|
|
|
|
background-color: $c-dashboard-dark;
|
|
|
|
color: $c-dashboard-light;
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(14);
|
2018-04-18 23:32:22 -04:00
|
|
|
|
|
|
|
.dashboard-heading {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2021-05-21 22:33:55 -04:00
|
|
|
right: pxrem(8);
|
2018-04-18 23:32:22 -04:00
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
|
|
.btn {
|
2021-05-21 22:33:55 -04:00
|
|
|
min-width: pxrem(70);
|
|
|
|
height: pxrem(26);
|
|
|
|
padding-top: pxrem(1);
|
|
|
|
padding-bottom: pxrem(2);
|
2018-04-18 23:32:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $c-text;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
.card-body {
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(15);
|
2016-08-16 19:33:02 -04:00
|
|
|
background-color: lighten($c-dashboard-light, 1%);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-21 21:36:37 -05:00
|
|
|
&.dashboard {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
padding: pxrem(10) pxrem(8) pxrem(12) pxrem(8);
|
2018-01-21 21:36:37 -05:00
|
|
|
}
|
2016-12-22 00:20:44 -05:00
|
|
|
}
|
|
|
|
|
2020-04-24 00:22:42 -04:00
|
|
|
.search-form {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2022-07-06 13:44:25 -04:00
|
|
|
margin-bottom: $half-gutter-width;
|
2021-05-21 22:33:55 -04:00
|
|
|
}
|
|
|
|
|
2020-04-24 00:22:42 -04:00
|
|
|
&-input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-submit {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(2);
|
|
|
|
margin-left: pxrem(10);
|
|
|
|
height: pxrem(32);
|
2020-04-24 00:22:42 -04:00
|
|
|
border: 1px solid fade-out($c-text, 0.75);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(4);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 00:20:44 -05:00
|
|
|
.search {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(10);
|
2016-12-22 00:20:44 -05:00
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(3) pxrem(8);
|
2018-06-18 15:27:07 -04:00
|
|
|
border: 1px solid fade-out(#000, 0.875);
|
|
|
|
border-radius: 0.25rem;
|
2016-12-22 00:20:44 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
margin: pxrem(3) pxrem(3) 0px pxrem(3);
|
|
|
|
width: calc(100% - #{pxrem(6)});
|
2016-12-22 00:20:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
.help-text {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(10);
|
|
|
|
margin-bottom: pxrem(10);
|
|
|
|
padding: pxrem(5) pxrem(10);
|
2016-08-16 19:33:02 -04:00
|
|
|
border: 1px solid darken($c-dashboard-dark, 5%);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(5);
|
2016-08-16 19:33:02 -04:00
|
|
|
background-color: $c-dashboard-dark;
|
|
|
|
color: $c-text-light;
|
2023-07-03 22:26:24 -04:00
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
.form-group {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
label {
|
|
|
|
@include font-sans-semibold;
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(14);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2016-12-19 22:31:04 -05:00
|
|
|
}
|
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
.form-control {
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(14);
|
2018-04-18 23:32:22 -04:00
|
|
|
transition: border-color 150ms, box-shadow 150ms;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
&:focus {
|
|
|
|
border-color: $c-dashboard-dark;
|
2021-05-21 22:33:55 -04:00
|
|
|
box-shadow: inset 0 pxrem(1) pxrem(1) fade-out(#000, 0.925), 0 0 pxrem(8) fade-out($c-dashboard-dark, 0.4);
|
2018-04-18 23:32:22 -04:00
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
&.has-error .form-control {
|
|
|
|
border-color: $c-dashboard-error;
|
|
|
|
}
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
.checkbox {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
min-height: 0px;
|
|
|
|
padding-top: 0px;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-left: pxrem(22);
|
2018-04-18 23:32:22 -04:00
|
|
|
user-select: none;
|
2018-04-16 00:45:32 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
span, input {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0px;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
display: block;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(16);
|
|
|
|
height: pxrem(16);
|
2018-04-18 23:32:22 -04:00
|
|
|
}
|
2018-04-16 00:45:32 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
span {
|
|
|
|
border: 1px solid lighten($c-text, 50%);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(4);
|
2018-04-18 23:32:22 -04:00
|
|
|
background-color: $c-input-bg;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
transform: scale(0);
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-04-29 00:36:25 -04:00
|
|
|
background-image: url("/img/dashboard/checkmark.svg");
|
2018-04-18 23:32:22 -04:00
|
|
|
background-position: center center;
|
|
|
|
background-size: 65% auto;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
opacity: 0;
|
|
|
|
transition: transform 150ms, opacity 150ms;
|
|
|
|
}
|
|
|
|
}
|
2018-04-16 00:45:32 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
input {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
&:checked + span:after {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
.text-muted {
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(10);
|
2018-04-18 23:32:22 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
.dashboard-credits {
|
|
|
|
padding: $grid-gutter-width;
|
2018-04-16 00:45:32 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
h2 {
|
|
|
|
@include font-sans-semibold;
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
|
|
|
font-size: pxrem(18);
|
2018-04-18 23:32:22 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(25);
|
2018-04-18 23:32:22 -04:00
|
|
|
}
|
2018-04-16 00:45:32 -04:00
|
|
|
}
|
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
ul {
|
|
|
|
margin-bottom: 0px;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-left: pxrem(20);
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2018-04-18 23:32:22 -04:00
|
|
|
li a {
|
|
|
|
color: $c-text;
|
|
|
|
}
|
2018-04-16 00:45:32 -04:00
|
|
|
}
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
.btn {
|
2016-08-16 19:33:02 -04:00
|
|
|
border-color: darken($c-dashboard-dark, 5%);
|
|
|
|
background-color: $c-dashboard-dark;
|
2018-04-16 00:45:32 -04:00
|
|
|
color: $c-text-light;
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(14);
|
2016-01-26 23:20:08 -05:00
|
|
|
transition: background-color 100ms;
|
2018-04-16 12:24:28 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($c-dashboard-dark, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: lighten($c-dashboard-dark, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&, &:hover, &:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-10 00:09:20 -04:00
|
|
|
&.vertical-margin {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(3);
|
|
|
|
margin-bottom: pxrem(3);
|
2018-04-10 00:09:20 -04:00
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
&.btn-warning, &.btn-danger {
|
2021-05-21 22:33:55 -04:00
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
color: $c-text-light !important;
|
|
|
|
}
|
2018-04-16 00:45:32 -04:00
|
|
|
}
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
&.btn-warning {
|
2016-08-16 19:33:02 -04:00
|
|
|
border-color: darken($c-dashboard-edit, 10%);
|
|
|
|
background-color: $c-dashboard-edit;
|
2018-04-16 12:24:28 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($c-dashboard-edit, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: lighten($c-dashboard-edit, 5%);
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-danger {
|
2016-08-16 19:33:02 -04:00
|
|
|
border-color: darken($c-dashboard-delete, 10%);
|
|
|
|
background-color: $c-dashboard-delete;
|
2018-04-16 12:24:28 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($c-dashboard-delete, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: lighten($c-dashboard-delete, 5%);
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
&.btn-secondary {
|
2016-08-16 19:33:02 -04:00
|
|
|
border-color: darken($c-dashboard-light, 10%);
|
|
|
|
background-color: $c-dashboard-light;
|
|
|
|
color: $c-text;
|
2018-04-16 12:24:28 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($c-dashboard-light, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: lighten($c-dashboard-light, 5%);
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-04-16 12:24:28 -04:00
|
|
|
&.btn-link {
|
|
|
|
color: $c-dashboard-light;
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&.btn-outline {
|
|
|
|
background-color: transparent;
|
|
|
|
color: $c-text;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-inactive {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-01-21 22:40:42 -05:00
|
|
|
.view-table-container {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
padding: pxrem(10) pxrem(5);
|
2018-01-21 22:40:42 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-21 22:40:42 -05:00
|
|
|
.table {
|
|
|
|
margin-bottom: 0px;
|
2021-05-21 22:33:55 -04:00
|
|
|
border-bottom-color: transparent;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
@include media-breakpoint-down(xl) {
|
2023-07-24 12:29:21 -04:00
|
|
|
overflow-x: auto;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
> thead {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(xl) {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
> tr > th {
|
2021-05-21 22:33:55 -04:00
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 1px solid #666;
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 00:09:20 -04:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
> tbody {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(xl) {
|
2024-03-19 17:11:58 -04:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
}
|
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
> tr {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(xl) {
|
2018-01-21 22:40:42 -05:00
|
|
|
display: block;
|
2024-03-19 17:11:58 -04:00
|
|
|
width: 100%;
|
2018-01-22 23:25:07 -05:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
&:not(:first-child) {
|
|
|
|
border-top: 1px solid #ddd;
|
2018-01-22 23:25:07 -05:00
|
|
|
}
|
2024-03-19 17:11:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
border-bottom: 1px solid #ddd;
|
2018-01-22 23:25:07 -05:00
|
|
|
|
|
|
|
&:last-child {
|
2024-03-19 17:11:58 -04:00
|
|
|
border-bottom-color: transparent;
|
|
|
|
|
|
|
|
> td {
|
|
|
|
padding-bottom: pxrem(10);
|
|
|
|
}
|
2018-01-22 23:25:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
> td {
|
|
|
|
@include media-breakpoint-down(xl) {
|
|
|
|
display: block;
|
|
|
|
border-top: 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-top: pxrem(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: pxrem(20);
|
|
|
|
}
|
|
|
|
}
|
2021-05-21 22:33:55 -04:00
|
|
|
|
2022-03-30 17:40:24 -04:00
|
|
|
@include media-breakpoint-up(xl) {
|
2024-03-19 17:11:58 -04:00
|
|
|
padding: pxrem(20) pxrem(8);
|
2021-05-21 22:33:55 -04:00
|
|
|
}
|
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
.mobile-heading {
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-01-21 22:40:42 -05:00
|
|
|
}
|
2021-05-21 22:33:55 -04:00
|
|
|
}
|
2018-01-21 22:40:42 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 00:22:42 -04:00
|
|
|
.pagination-navigation-bar {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(10);
|
|
|
|
margin-left: pxrem(4);
|
2020-04-24 00:22:42 -04:00
|
|
|
display: flex;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: calc(100% - #{pxrem(8)});
|
2020-04-24 00:22:42 -04:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
2020-04-24 00:22:42 -04:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-arrow {
|
|
|
|
position: relative;
|
|
|
|
font-size: 0px;
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
height: pxrem(35);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.prev {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
margin-bottom: pxrem(8);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2022-07-06 13:44:25 -04:00
|
|
|
margin-right: $half-gutter-width;
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.next {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
margin-top: pxrem(8);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2022-07-06 13:44:25 -04:00
|
|
|
margin-left: $half-gutter-width;
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before, &:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2021-05-21 22:33:55 -04:00
|
|
|
top: calc(50% - #{pxrem(1px)});
|
2020-04-24 00:22:42 -04:00
|
|
|
left: 25%;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(16);
|
|
|
|
height: pxrem(2);
|
2020-04-24 00:22:42 -04:00
|
|
|
background-color: $c-text-light;
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
2020-04-24 00:22:42 -04:00
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
transform-origin: bottom left;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
transform-origin: top left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-page-count {
|
|
|
|
display: flex;
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
2020-04-24 00:22:42 -04:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
2021-05-21 22:33:55 -04:00
|
|
|
$spacing: pxrem(3);
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: $spacing;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: $spacing;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.space {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "...";
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
2021-05-21 22:33:55 -04:00
|
|
|
line-height: pxrem(25);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-right: pxrem(20);
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&:after {
|
2021-05-21 22:33:55 -04:00
|
|
|
left: calc(100% + #{pxrem(7)});
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-left: pxrem(20);
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&:after {
|
2021-05-21 22:33:55 -04:00
|
|
|
right: calc(100% + #{pxrem(7)});
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
.list-group {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
2018-01-12 23:48:21 -05:00
|
|
|
&.menu-list .list-group-item {
|
|
|
|
position: relative;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(10) pxrem(15);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-12 23:48:21 -05:00
|
|
|
&-link {
|
2018-04-02 22:47:09 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2018-01-12 23:48:21 -05:00
|
|
|
display: block;
|
2018-04-02 22:47:09 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-01-12 23:48:21 -05:00
|
|
|
background-color: transparent;
|
|
|
|
color: $c-text;
|
|
|
|
transition: background-color 150ms;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-12 23:48:21 -05:00
|
|
|
&:hover {
|
|
|
|
background-color: fade-out(#000, 0.97);
|
|
|
|
text-decoration: none;
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
2018-01-12 23:48:21 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-13 01:16:19 -05:00
|
|
|
&.edit-list {
|
|
|
|
.list-group-item {
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-top: pxrem(4);
|
|
|
|
padding-bottom: pxrem(4);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
margin: pxrem(3);
|
2018-01-21 22:47:59 -05:00
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2018-01-21 22:47:59 -05:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.sortable {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
padding-left: pxrem(50);
|
2018-01-21 22:47:59 -05:00
|
|
|
}
|
2018-01-12 23:48:21 -05:00
|
|
|
}
|
2016-12-22 00:20:44 -05:00
|
|
|
|
2018-01-13 01:16:19 -05:00
|
|
|
.title-column {
|
2024-03-19 17:11:58 -04:00
|
|
|
@include font-sans-semibold;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-top: pxrem(6);
|
|
|
|
padding-bottom: pxrem(6);
|
2018-01-13 01:16:19 -05:00
|
|
|
padding-left: 0px;
|
2017-01-03 23:33:24 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-01-13 01:16:19 -05:00
|
|
|
text-align: center;
|
2016-12-20 23:26:10 -05:00
|
|
|
}
|
2018-01-11 23:57:49 -05:00
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2018-01-21 22:47:59 -05:00
|
|
|
overflow: hidden;
|
2022-07-25 17:16:55 -04:00
|
|
|
display: flex;
|
2018-01-21 22:47:59 -05:00
|
|
|
flex-grow: 1;
|
|
|
|
white-space: nowrap;
|
2018-01-13 01:16:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.sort-icon {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-right: pxrem(10);
|
2018-01-13 01:16:19 -05:00
|
|
|
display: inline-block;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 100ms;
|
|
|
|
cursor: grab;
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-01-13 01:16:19 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2021-05-21 22:33:55 -04:00
|
|
|
left: pxrem(20);
|
2018-01-13 01:16:19 -05:00
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
2018-04-15 20:43:23 -04:00
|
|
|
|
|
|
|
&-inner {
|
|
|
|
position: relative;
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(2);
|
2018-04-15 20:43:23 -04:00
|
|
|
display: inline-block;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(12);
|
|
|
|
height: pxrem(14);
|
2018-04-15 20:43:23 -04:00
|
|
|
|
|
|
|
&-bar {
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
height: pxrem(2);
|
2018-04-15 20:43:23 -04:00
|
|
|
background-color: $c-text;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(2);
|
2018-04-15 20:43:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
2021-05-21 22:33:55 -04:00
|
|
|
bottom: pxrem(2);
|
2018-04-15 20:43:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-11 23:57:49 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-13 01:16:19 -05:00
|
|
|
.column {
|
2018-01-15 22:35:36 -05:00
|
|
|
display: inline-block;
|
2022-07-25 17:16:55 -04:00
|
|
|
|
|
|
|
.image-preview {
|
|
|
|
@include aspect-ratio(16, 9);
|
|
|
|
display: block;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
width: pxrem(150);
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
width: pxrem(43);
|
|
|
|
}
|
|
|
|
}
|
2018-01-15 22:35:36 -05:00
|
|
|
}
|
2017-01-04 23:50:17 -05:00
|
|
|
|
2018-01-15 22:35:36 -05:00
|
|
|
.spacer {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-01-15 22:35:36 -05:00
|
|
|
display: block;
|
|
|
|
font-size: 0;
|
2018-01-13 01:16:19 -05:00
|
|
|
}
|
2017-01-04 23:50:17 -05:00
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2022-07-25 17:16:55 -04:00
|
|
|
margin: 0px pxrem(5);
|
2018-01-15 22:35:36 -05:00
|
|
|
display: inline-block;
|
2018-01-13 01:16:19 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-12 23:48:21 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-01-13 01:16:19 -05:00
|
|
|
.button-column {
|
|
|
|
padding-right: 0px;
|
2016-12-22 00:20:44 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
padding-bottom: pxrem(5);
|
2018-01-21 22:47:59 -05:00
|
|
|
padding-left: 0px;
|
2018-01-13 01:16:19 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-04-16 00:45:32 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-left: pxrem(5);
|
2018-01-21 22:47:59 -05:00
|
|
|
flex-shrink: 0;
|
2018-01-13 01:16:19 -05:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin: pxrem(5) pxrem(3);
|
|
|
|
min-width: pxrem(70);
|
|
|
|
height: pxrem(26);
|
|
|
|
padding-top: pxrem(1);
|
|
|
|
padding-bottom: pxrem(2);
|
2018-01-13 01:16:19 -05:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-01-13 01:16:19 -05:00
|
|
|
min-width: 33%;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 01:16:19 -05:00
|
|
|
|
|
|
|
&.filtered .list-group-item .title-column .sort-icon {
|
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
form {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(10);
|
2018-01-15 23:43:20 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.form-title {
|
|
|
|
@include font-sans-semibold;
|
|
|
|
margin-top: 0px;
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
|
|
|
font-size: pxrem(14);
|
2018-04-25 23:27:45 -04:00
|
|
|
text-transform: uppercase;
|
2018-01-15 23:43:20 -05:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.edit-item {
|
2021-05-21 22:33:55 -04:00
|
|
|
$label-height: pxrem(35);
|
2018-01-16 00:38:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.CodeMirror {
|
2021-05-21 22:33:55 -04:00
|
|
|
height: pxrem(300);
|
|
|
|
padding: pxrem(5);
|
2018-01-16 00:38:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&-code {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(10);
|
2018-01-16 00:38:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
.container-fluid {
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 00:22:42 -04:00
|
|
|
.list {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
|
|
|
padding-bottom: pxrem(15);
|
|
|
|
border-bottom: 1px solid fade-out($c-text, 0.9);
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&-template, &-data {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-items-row {
|
2022-06-14 01:36:21 -04:00
|
|
|
position: relative;
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(10);
|
2022-06-14 01:36:21 -04:00
|
|
|
padding: pxrem(8) pxrem(8) pxrem(8) pxrem(33);
|
|
|
|
border-radius: pxrem(6);
|
|
|
|
background-color: darken($c-input-bg, 2%);
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
display: flex;
|
|
|
|
padding: pxrem(5) pxrem(5) pxrem(5) pxrem(30);
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-bottom: pxrem(15);
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
.sort-icon {
|
2022-06-14 01:36:21 -04:00
|
|
|
position: absolute;
|
|
|
|
top: pxrem(11);
|
|
|
|
left: pxrem(10);
|
2020-04-24 00:22:42 -04:00
|
|
|
display: inline-block;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 100ms;
|
|
|
|
cursor: grab;
|
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
top: pxrem(9);
|
|
|
|
}
|
|
|
|
|
2020-04-24 00:22:42 -04:00
|
|
|
&-inner {
|
|
|
|
position: relative;
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(2);
|
2020-04-24 00:22:42 -04:00
|
|
|
display: inline-block;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(12);
|
|
|
|
height: pxrem(14);
|
2020-04-24 00:22:42 -04:00
|
|
|
|
|
|
|
&-bar {
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
height: pxrem(2);
|
2020-04-24 00:22:42 -04:00
|
|
|
background-color: $c-text;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
2021-05-21 22:33:55 -04:00
|
|
|
top: pxrem(2);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
2021-05-21 22:33:55 -04:00
|
|
|
bottom: pxrem(2);
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
&-content, &-button {
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
width: 100%;
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
2022-06-14 01:36:21 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-bottom: pxrem(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
margin-right: pxrem(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
margin-left: pxrem(5);
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
&-content {
|
2020-04-24 00:22:42 -04:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.wide {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-inner {
|
2022-06-14 01:36:21 -04:00
|
|
|
$row-height: pxrem(36);
|
|
|
|
display: flex;
|
|
|
|
height: $row-height;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.list-input {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
height: auto;
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
.image-link {
|
|
|
|
margin-right: pxrem(10);
|
|
|
|
display: block;
|
|
|
|
width: pxrem(50);
|
|
|
|
height: $row-height;
|
|
|
|
background-color: $c-input-bg;
|
|
|
|
|
|
|
|
&:not(.active) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-preview {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 01:36:21 -04:00
|
|
|
&-buttons {
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-delete {
|
|
|
|
min-width: pxrem(70);
|
|
|
|
height: $label-height;
|
|
|
|
border: 1px solid fade-out($c-text, 0.75);
|
|
|
|
border-radius: pxrem(4);
|
|
|
|
background-color: $c-dashboard-delete;
|
|
|
|
color: $c-text-light;
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-add-button {
|
|
|
|
height: $label-height;
|
|
|
|
border: 1px solid fade-out($c-text, 0.75);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(4);
|
2022-06-14 01:36:21 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-top: pxrem(15);
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-04-24 00:22:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.picker__holder {
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
|
|
|
.picker__button--today {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.picker__select--year, .picker__select--month, .picker__month, .picker__day, .picker__weekday, .picker__footer {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
font-size: pxrem(16);
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.picker__select--year, .picker__select--month {
|
|
|
|
width: auto;
|
|
|
|
height: 1.5em;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2018-01-16 00:38:08 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
label {
|
|
|
|
min-height: $label-height;
|
|
|
|
line-height: $label-height;
|
2018-04-24 00:17:42 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2018-04-24 00:17:42 -04:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2024-04-10 18:25:20 -04:00
|
|
|
.text-display, .mkd-editor-container, input:not([type="file"]), textarea, select, .upload-wrapper {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
2018-04-24 00:17:42 -04:00
|
|
|
|
2020-04-23 22:17:13 -04:00
|
|
|
input, textarea {
|
2018-04-25 23:27:45 -04:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2018-01-15 23:43:20 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&:not([type="file"]) {
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(5) pxrem(8);
|
2018-04-25 23:27:45 -04:00
|
|
|
border: 1px solid darken($c-dashboard-light, 10%);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(2);
|
2018-04-25 23:27:45 -04:00
|
|
|
transition: border-color 150ms;
|
2018-04-24 20:38:04 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.error {
|
|
|
|
border-color: $c-dashboard-error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-10 18:25:20 -04:00
|
|
|
&.date-picker {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-wrapper {
|
|
|
|
display: flex;
|
|
|
|
height: $label-height;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
input {
|
2018-04-26 01:20:49 -04:00
|
|
|
overflow: hidden;
|
|
|
|
max-width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
font-size: pxrem(14);
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
2024-04-10 18:39:48 -04:00
|
|
|
|
|
|
|
.clear-upload {
|
|
|
|
position: relative;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
width: pxrem(20);
|
|
|
|
height: pxrem(20);
|
|
|
|
padding: 0px;
|
|
|
|
border: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
&:before, &:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
background-color: $c-dashboard-error;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
width: 2px;
|
|
|
|
height: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
width: 50%;
|
|
|
|
height: 2px;
|
|
|
|
}
|
|
|
|
}
|
2018-01-15 23:43:20 -05:00
|
|
|
}
|
|
|
|
|
2020-04-23 22:17:13 -04:00
|
|
|
textarea {
|
|
|
|
resize: none;
|
2021-09-05 17:45:58 -04:00
|
|
|
min-height: pxrem(175);
|
2020-04-23 22:17:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.current-image {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-bottom: pxrem(15);
|
2018-04-25 23:27:45 -04:00
|
|
|
display: block;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(125);
|
2018-04-25 23:27:45 -04:00
|
|
|
max-width: 100%;
|
2018-04-24 00:17:42 -04:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.edit-button {
|
2022-07-06 13:44:25 -04:00
|
|
|
margin-bottom: $half-gutter-width;
|
2018-04-25 23:27:45 -04:00
|
|
|
display: inline-block;
|
2021-05-21 22:33:55 -04:00
|
|
|
padding: pxrem(5) pxrem(10);
|
|
|
|
border-radius: pxrem(5);
|
2018-04-25 23:27:45 -04:00
|
|
|
text-transform: uppercase;
|
2022-06-14 01:36:21 -04:00
|
|
|
text-decoration: none;
|
2018-04-25 23:27:45 -04:00
|
|
|
transition: background-color 150ms;
|
2018-01-15 23:43:20 -05:00
|
|
|
cursor: pointer;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&:hover, &:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.view {
|
|
|
|
border: 1px solid darken($c-dashboard-dark, 5%);
|
|
|
|
background-color: $c-dashboard-dark;
|
|
|
|
color: $c-text-light;
|
2018-01-18 22:29:49 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: lighten($c-dashboard-dark, 5%);
|
|
|
|
}
|
|
|
|
}
|
2018-01-18 22:29:49 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.delete {
|
|
|
|
border: 1px solid darken($c-dashboard-delete, 5%);
|
|
|
|
background-color: $c-dashboard-delete;
|
|
|
|
color: $c-text-light;
|
2018-01-21 20:55:07 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: lighten($c-dashboard-delete, 5%);
|
|
|
|
}
|
2018-01-21 20:55:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
.back-button, .submit-button {
|
|
|
|
margin: pxrem(20) pxrem(15) pxrem(15) pxrem(15);
|
|
|
|
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-right: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0px;
|
|
|
|
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-top: pxrem(20);
|
|
|
|
margin-bottom: pxrem(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-top: pxrem(10);
|
|
|
|
margin-bottom: pxrem(20);
|
|
|
|
}
|
2022-06-14 01:36:21 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2021-05-21 22:33:55 -04:00
|
|
|
}
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
2018-01-21 20:55:07 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.submit-button {
|
|
|
|
transition: opacity 150ms;
|
|
|
|
|
|
|
|
&.no-input {
|
|
|
|
opacity: 0.65;
|
|
|
|
pointer-events: none;
|
2018-01-21 20:55:07 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-12 23:19:24 -05:00
|
|
|
}
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.dashboard-settings-container {
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
form {
|
|
|
|
&.user-profile-image {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
max-width: pxrem(150);
|
2018-04-16 12:25:58 -04:00
|
|
|
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
2018-04-25 23:27:45 -04:00
|
|
|
margin: $grid-gutter-width auto;
|
2018-04-16 12:25:58 -04:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
flex-shrink: 0;
|
2018-04-24 00:17:42 -04:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.image-display {
|
|
|
|
@include aspect-ratio(1, 1);
|
|
|
|
position: relative;
|
2018-04-24 00:17:42 -04:00
|
|
|
width: 100%;
|
2018-04-25 23:27:45 -04:00
|
|
|
border: 1px solid darken($c-dashboard-light, 10%);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(3);
|
2018-04-25 23:27:45 -04:00
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2018-04-16 12:25:58 -04:00
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.image-buttons {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin-top: pxrem(20);
|
2018-04-25 23:27:45 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
input {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-04-25 01:41:45 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.image-upload-button, .image-delete-button {
|
|
|
|
display: block;
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(40);
|
|
|
|
height: pxrem(40);
|
2018-04-25 23:27:45 -04:00
|
|
|
min-height: 0;
|
|
|
|
border: 1px solid darken($c-dashboard-light, 14%);
|
2021-05-21 22:33:55 -04:00
|
|
|
border-radius: pxrem(3);
|
2018-04-25 23:27:45 -04:00
|
|
|
background-color: darken($c-dashboard-light, 10%);
|
|
|
|
line-height: 1;
|
|
|
|
cursor: pointer;
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: darken($c-dashboard-light, 7%);
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.image-upload-button {
|
2020-04-29 00:36:25 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-04-25 23:27:45 -04:00
|
|
|
transition: background-color 150ms;
|
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
.image-delete-button {
|
|
|
|
opacity: 1;
|
|
|
|
transition: background-color 150ms, opacity 150ms;
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.inactive {
|
|
|
|
opacity: 0.35;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
}
|
|
|
|
}
|
2018-04-25 23:27:45 -04:00
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.user-profile-update {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
2018-04-25 23:27:45 -04:00
|
|
|
border-top: 1px solid darken($c-dashboard-light, 10%);
|
|
|
|
border-bottom: 1px solid darken($c-dashboard-light, 10%);
|
2018-04-25 01:22:33 -04:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
margin-right: $grid-gutter-width;
|
|
|
|
margin-left: $grid-gutter-width;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0px $grid-gutter-width;
|
|
|
|
flex-grow: 1;
|
|
|
|
border-right: 1px solid darken($c-dashboard-light, 10%);
|
|
|
|
border-left: 1px solid darken($c-dashboard-light, 10%);
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 01:22:33 -04:00
|
|
|
|
2018-04-25 23:27:45 -04:00
|
|
|
&.user-password-update {
|
|
|
|
@include media-breakpoint-up(lg) {
|
2021-05-21 22:33:55 -04:00
|
|
|
width: pxrem(225);
|
2018-04-25 23:27:45 -04:00
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-title {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
margin-top: pxrem(25);
|
|
|
|
margin-bottom: pxrem(20);
|
2018-04-25 23:27:45 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.submit-button {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-04-25 23:27:45 -04:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
float: none;
|
2022-07-06 13:44:25 -04:00
|
|
|
margin: $half-gutter-width 0px;
|
2018-04-25 01:22:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#loading-modal {
|
2016-08-16 19:33:02 -04:00
|
|
|
z-index: 1000;
|
2016-01-26 23:20:08 -05:00
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2016-08-16 19:33:02 -04:00
|
|
|
visibility: hidden;
|
2016-01-26 23:20:08 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-08-16 19:33:02 -04:00
|
|
|
background-color: fade-out(lighten($c-dashboard-light, 1%), 0.6);
|
2016-01-26 23:20:08 -05:00
|
|
|
opacity: 0;
|
2016-08-16 19:33:02 -04:00
|
|
|
transition: opacity 250ms;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
.spinner-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2016-08-16 19:33:02 -04:00
|
|
|
z-index: 1000;
|
2016-01-26 23:20:08 -05:00
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
2016-08-16 19:33:02 -04:00
|
|
|
visibility: hidden;
|
2018-06-18 16:50:50 -04:00
|
|
|
display: flex;
|
2016-01-26 23:20:08 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-06-18 16:50:50 -04:00
|
|
|
padding: $grid-gutter-width;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-04-23 22:17:13 -04:00
|
|
|
background-color: fade-out(lighten($c-dashboard-light, 1%), 0.3);
|
2016-01-26 23:20:08 -05:00
|
|
|
opacity: 0;
|
2016-08-16 19:33:02 -04:00
|
|
|
transition: opacity 250ms;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-06-18 16:50:50 -04:00
|
|
|
.card {
|
|
|
|
position: relative;
|
|
|
|
margin: 0px;
|
2020-04-24 00:22:42 -04:00
|
|
|
width: 100%;
|
2021-05-21 22:33:55 -04:00
|
|
|
max-width: pxrem(500);
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
.btn {
|
2021-05-21 22:33:55 -04:00
|
|
|
margin: pxrem(20) pxrem(15);
|
2016-08-16 19:33:02 -04:00
|
|
|
display: inline-block;
|
2018-04-16 00:45:32 -04:00
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 16:50:50 -04:00
|
|
|
&.alert .card {
|
|
|
|
.message {
|
2021-05-21 22:33:55 -04:00
|
|
|
min-height: pxrem(50);
|
|
|
|
padding: pxrem(15) pxrem(20);
|
2018-06-18 16:50:50 -04:00
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
2021-05-21 22:33:55 -04:00
|
|
|
padding-right: pxrem(85);
|
2018-04-16 00:45:32 -04:00
|
|
|
}
|
2018-06-18 16:50:50 -04:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-06-18 16:50:50 -04:00
|
|
|
.btn {
|
2021-05-21 22:33:55 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
2018-06-18 16:50:50 -04:00
|
|
|
margin-top: 0px;
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
|
2018-06-18 16:50:50 -04:00
|
|
|
@include media-breakpoint-up(md) {
|
2016-01-26 23:20:08 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2016-08-16 19:33:02 -04:00
|
|
|
right: 0px;
|
2016-01-26 23:20:08 -05:00
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|