2021-07-07 11:12:38 +00:00
|
|
|
// Yeti 5.0.2
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Variables
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
$web-font-path: "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
@if $web-font-path {
|
|
|
|
@import url($web-font-path);
|
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navbar
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
font-weight: $headings-font-weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-primary {
|
|
|
|
.dropdown-menu {
|
|
|
|
background-color: $primary;
|
|
|
|
|
|
|
|
.dropdown-item,
|
|
|
|
.dropdown-item:focus {
|
|
|
|
color: $navbar-dark-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item.active,
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($primary, 10%);
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-dark {
|
|
|
|
background-color: $gray-800 !important;
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
background-color: $gray-800;
|
|
|
|
|
|
|
|
.dropdown-item,
|
|
|
|
.dropdown-item:focus {
|
|
|
|
color: $navbar-dark-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item.active,
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($gray-800, 10%);
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-light {
|
|
|
|
.dropdown-menu {
|
|
|
|
background-color: $gray-200;
|
|
|
|
|
|
|
|
.dropdown-item,
|
|
|
|
.dropdown-item:focus {
|
|
|
|
color: $navbar-light-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item.active,
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: tint-color($gray-200, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $navbar-light-hover-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Buttons
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
&-primary {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($primary, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-secondary {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($secondary, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-success {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($success, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-info {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($info, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-danger {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($danger, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-warning {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($warning, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-light {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($light, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-dark {
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($dark, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group {
|
|
|
|
.dropdown-menu {
|
|
|
|
border-top-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
&.btn-primary ~ .dropdown-menu {
|
|
|
|
background-color: $primary;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($primary, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($primary, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-secondary ~ .dropdown-menu {
|
|
|
|
background-color: $secondary;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($secondary, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $body-color;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($secondary, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-success ~ .dropdown-menu {
|
|
|
|
background-color: $success;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($success, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($success, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-info ~ .dropdown-menu {
|
|
|
|
background-color: $info;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($info, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($info, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-warning ~ .dropdown-menu {
|
|
|
|
background-color: $warning;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($warning, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($warning, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-danger ~ .dropdown-menu {
|
|
|
|
background-color: $danger;
|
2021-07-07 11:12:38 +00:00
|
|
|
border-color: shade-color($danger, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item:hover,
|
|
|
|
.dropdown-item:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: shade-color($danger, 16%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Typography
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.text-secondary {
|
|
|
|
color: $gray-700 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockquote-footer {
|
|
|
|
color: $gray-600;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Tables
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
table {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Forms
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
label,
|
|
|
|
.control-label,
|
|
|
|
.help-block,
|
|
|
|
.checkbox,
|
|
|
|
.radio,
|
|
|
|
.form-control-feedback {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Navs
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.dropdown-item {
|
2020-11-06 13:16:40 +00:00
|
|
|
padding-top: .75rem;
|
|
|
|
padding-bottom: .75rem;
|
2020-05-19 16:53:54 +00:00
|
|
|
font-size: $font-size-sm;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs {
|
|
|
|
.nav-link,
|
|
|
|
.nav-link.disabled,
|
|
|
|
.nav-link.disabled:hover,
|
|
|
|
.nav-link.disabled:focus {
|
|
|
|
border-color: $nav-tabs-border-color;
|
|
|
|
background-color: $gray-200;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link:hover,
|
|
|
|
.nav-link:focus {
|
2021-07-07 11:12:38 +00:00
|
|
|
background-color: tint-color($gray-200, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills {
|
|
|
|
.active {
|
2021-07-07 11:12:38 +00:00
|
|
|
border: 1px solid shade-color($primary, 10%);
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
border: 1px solid $dropdown-border-color;
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
font-weight: 300;
|
|
|
|
text-transform: uppercase;
|
2021-07-07 11:12:38 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
.page-link {
|
|
|
|
border-color: transparent;
|
|
|
|
border-radius: 3px;
|
2020-11-06 13:16:40 +00:00
|
|
|
margin-left: .1em;
|
|
|
|
margin-right: .1em;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item.disabled {
|
|
|
|
.page-link {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination,
|
|
|
|
.pagination-lg,
|
|
|
|
.pagination-sm {
|
|
|
|
.page-item:first-child,
|
|
|
|
.page-item:last-child {
|
|
|
|
.page-link {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Indicators
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.alert {
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
font-weight: 300;
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
.alert-link {
|
2020-11-06 13:16:40 +00:00
|
|
|
color: $white;
|
2020-05-19 16:53:54 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
&:not(.alert-secondary):not(.alert-light) .btn-close {
|
|
|
|
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>");
|
|
|
|
}
|
|
|
|
|
2020-05-19 16:53:54 +00:00
|
|
|
&-secondary,
|
|
|
|
&-light {
|
|
|
|
&,
|
2020-11-06 13:16:40 +00:00
|
|
|
a:not(.btn),
|
|
|
|
.alert-link {
|
2020-05-19 16:53:54 +00:00
|
|
|
color: $body-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge {
|
2021-07-07 11:12:38 +00:00
|
|
|
&.bg-secondary,
|
|
|
|
&.bg-light {
|
|
|
|
color: $dark;
|
2020-05-19 16:53:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Progress bars
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.progress[value] {
|
|
|
|
height: 22px;
|
|
|
|
padding: 2px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
@include box-shadow(none);
|
|
|
|
}
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
// Popovers
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
.popover-header {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|