Merge branch 'develop' into main

pull/92/head
iglocska 2021-12-22 12:27:23 +01:00
commit 88a93cbca0
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
16 changed files with 3923 additions and 4210 deletions

View File

@ -118,6 +118,7 @@ class Application extends BaseApplication implements AuthenticationServiceProvid
'collectionFactory' => null, 'collectionFactory' => null,
'logErrors' => true, 'logErrors' => true,
])); ]));
\SocialConnect\JWX\JWT::$screw = Configure::check('keycloak.screw') ? Configure::read('keycloak.screw') : 0;
} }
$middlewareQueue->add(new AuthenticationMiddleware($this)) $middlewareQueue->add(new AuthenticationMiddleware($this))
->add(new BodyParserMiddleware()); ->add(new BodyParserMiddleware());

View File

@ -68,7 +68,11 @@ class LocalToolsController extends AppController
foreach ($connections as $connection) { foreach ($connections as $connection) {
$actionDetails = $this->LocalTools->getActionDetails($actionName); $actionDetails = $this->LocalTools->getActionDetails($actionName);
$params['connection'] = $connection; $params['connection'] = $connection;
try {
$tmpResult = $this->LocalTools->action($this->ACL->getUser()['id'], $connection->connector, $actionName, $params, $this->request); $tmpResult = $this->LocalTools->action($this->ACL->getUser()['id'], $connection->connector, $actionName, $params, $this->request);
} catch (\Exception $e) {
$tmpResult = ['success' => false, 'message' => $e->getMessage(), 'data' => []];
}
$tmpResult['connection'] = $connection; $tmpResult['connection'] = $connection;
$results[$connection->id] = $tmpResult; $results[$connection->id] = $tmpResult;
$successes += $tmpResult['success'] ? 1 : 0; $successes += $tmpResult['success'] ? 1 : 0;

View File

@ -819,7 +819,7 @@ class MispConnector extends CommonConnectorTools
[ [
'field' => 'connection_ids', 'field' => 'connection_ids',
'type' => 'hidden', 'type' => 'hidden',
'value' => $params['connection_ids'] 'value' => json_encode($params['connection_ids'])
], ],
[ [
'field' => 'method', 'field' => 'method',

View File

@ -211,6 +211,13 @@ class CerebrateSettingsProvider extends BaseSettingsProvider
}, },
'dependsOn' => 'keycloak.enabled' 'dependsOn' => 'keycloak.enabled'
], ],
'keycloak.screw' => [
'name' => 'Screw',
'type' => 'string',
'severity' => 'info',
'default' => 0,
'description' => __('The misalignment allowed when validating JWT tokens between cerebrate and keycloak. Whilst crisp timings are essential for any timing push, perfect timing is only achievable by GSL participants. (given in seconds)')
],
'keycloak.mapping.org_uuid' => [ 'keycloak.mapping.org_uuid' => [
'name' => 'org_uuid mapping', 'name' => 'org_uuid mapping',
'type' => 'string', 'type' => 'string',

View File

@ -155,7 +155,7 @@ echo $this->element('genericElements/IndexTable/index_table', [
tableData tableData
) )
const $footer = $(modalObject.ajaxApi.statusNode).parent() const $footer = $(modalObject.ajaxApi.statusNode).parent()
modalObject.ajaxApi.statusNode.remove() modalObject.ajaxApi.options.statusNode.remove()
const $cancelButton = $footer.find('button[data-dismiss="modal"]') const $cancelButton = $footer.find('button[data-dismiss="modal"]')
$cancelButton.text('<?= __('OK') ?>').removeClass('btn-secondary').addClass('btn-primary') $cancelButton.text('<?= __('OK') ?>').removeClass('btn-secondary').addClass('btn-primary')
} }

View File

@ -1,284 +1,329 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid #e9ecef; border: 1px solid #e9ecef;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #fff; background-color: #fff;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.callout-primary { .callout-primary {
border-left-color: #0d6efd; border-left-color: #0d6efd;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #6c757d; border-left-color: #6c757d;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #198754; border-left-color: #198754;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #0dcaf0; border-left-color: #0dcaf0;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #ffc107; border-left-color: #ffc107;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #dc3545; border-left-color: #dc3545;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #f8f9fa; border-left-color: #f8f9fa;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #212529; border-left-color: #212529;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #04214c; color: #04214c;
background-color: #b6d4fe; background-color: #b6d4fe;
border-color: #9ec5fe; } border-color: #9ec5fe;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #85b6fe; } border-top-color: #85b6fe;
}
.toast-secondary { .toast-secondary {
color: #202326; color: #202326;
background-color: #d3d6d8; background-color: #d3d6d8;
border-color: #c4c8cb; } border-color: #c4c8cb;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #b6bbbf; } border-top-color: #b6bbbf;
}
.toast-success { .toast-success {
color: #082919; color: #082919;
background-color: #badbcc; background-color: #badbcc;
border-color: #a3cfbb; } border-color: #a3cfbb;
}
.toast-success strong { .toast-success strong {
border-top-color: #92c6af; } border-top-color: #92c6af;
}
.toast-info { .toast-info {
color: #043d48; color: #043d48;
background-color: #b6effb; background-color: #b6effb;
border-color: #9eeaf9; } border-color: #9eeaf9;
}
.toast-info strong { .toast-info strong {
border-top-color: #86e5f8; } border-top-color: #86e5f8;
}
.toast-warning { .toast-warning {
color: #4d3a02; color: #4d3a02;
background-color: #ffecb5; background-color: #ffecb5;
border-color: #ffe69c; } border-color: #ffe69c;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #ffe083; } border-top-color: #ffe083;
}
.toast-danger { .toast-danger {
color: #421015; color: #421015;
background-color: #f5c2c7; background-color: #f5c2c7;
border-color: #f1aeb5; } border-color: #f1aeb5;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #ed98a1; } border-top-color: #ed98a1;
}
.toast-light { .toast-light {
color: #4a4b4b; color: #4a4b4b;
background-color: #fdfdfe; background-color: #fdfdfe;
border-color: #fcfdfd; } border-color: #fcfdfd;
}
.toast-light strong { .toast-light strong {
border-top-color: #edf3f3; } border-top-color: #edf3f3;
}
.toast-dark { .toast-dark {
color: #0a0b0c; color: #0a0b0c;
background-color: #bcbebf; background-color: #bcbebf;
border-color: #a6a8a9; } border-color: #a6a8a9;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #999b9c; } border-top-color: #999b9c;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #0d6efd; } background-color: #0d6efd;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #0d6efd; } background-color: #0d6efd;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #6c757d; } background-color: #6c757d;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #6c757d; } background-color: #6c757d;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #198754; } background-color: #198754;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #198754; } background-color: #198754;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #000; color: #000;
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #000; color: #000;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #dc3545; } background-color: #dc3545;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #dc3545; } background-color: #dc3545;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #f8f9fa; } background-color: #f8f9fa;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #000; color: #000;
background-color: #f8f9fa; } background-color: #f8f9fa;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #212529; } background-color: #212529;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #212529; } background-color: #212529;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230dcaf0' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230dcaf0' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #0dcaf0; border-color: #0dcaf0;
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); } box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #ffc107; border-color: #ffc107;
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%230dcaf0'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%230dcaf0'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #0dcaf0; } border-color: #0dcaf0;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25); } box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #ffc107; } border-color: #ffc107;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #ffc107; } background-color: #ffc107;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}

View File

@ -1,287 +1,332 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid 1px solid none; border: 1px solid 1px solid none;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #363636; background-color: #363636;
box-shadow: none; } box-shadow: none;
}
.callout-primary { .callout-primary {
border-left-color: #375a7f; border-left-color: #375a7f;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #444; border-left-color: #444;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #00bc8c; border-left-color: #00bc8c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #3498db; border-left-color: #3498db;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #f39c12; border-left-color: #f39c12;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #e74c3c; border-left-color: #e74c3c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #adb5bd; border-left-color: #adb5bd;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #303030; border-left-color: #303030;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #111b26; color: #111b26;
background-color: #c3ced9; background-color: #c3ced9;
border-color: #afbdcc; } border-color: #afbdcc;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #9fb0c2; } border-top-color: #9fb0c2;
}
.toast-secondary { .toast-secondary {
color: #141414; color: #141414;
background-color: #c7c7c7; background-color: #c7c7c7;
border-color: #b4b4b4; } border-color: #b4b4b4;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #a7a7a7; } border-top-color: #a7a7a7;
}
.toast-success { .toast-success {
color: #00382a; color: #00382a;
background-color: #b3ebdd; background-color: #b3ebdd;
border-color: #99e4d1; } border-color: #99e4d1;
}
.toast-success strong { .toast-success strong {
border-top-color: #85dfc8; } border-top-color: #85dfc8;
}
.toast-info { .toast-info {
color: #102e42; color: #102e42;
background-color: #c2e0f4; background-color: #c2e0f4;
border-color: #aed6f1; } border-color: #aed6f1;
}
.toast-info strong { .toast-info strong {
border-top-color: #98cbed; } border-top-color: #98cbed;
}
.toast-warning { .toast-warning {
color: #492f05; color: #492f05;
background-color: #fbe1b8; background-color: #fbe1b8;
border-color: #fad7a0; } border-color: #fad7a0;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #f9cd88; } border-top-color: #f9cd88;
}
.toast-danger { .toast-danger {
color: #451712; color: #451712;
background-color: #f8c9c5; background-color: #f8c9c5;
border-color: #f5b7b1; } border-color: #f5b7b1;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #f2a29a; } border-top-color: #f2a29a;
}
.toast-light { .toast-light {
color: #343639; color: #343639;
background-color: #e6e9eb; background-color: #e6e9eb;
border-color: #dee1e5; } border-color: #dee1e5;
}
.toast-light strong { .toast-light strong {
border-top-color: #d0d4da; } border-top-color: #d0d4da;
}
.toast-dark { .toast-dark {
color: #0e0e0e; color: #0e0e0e;
background-color: #c1c1c1; background-color: #c1c1c1;
border-color: #acacac; } border-color: #acacac;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #9f9f9f; } border-top-color: #9f9f9f;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #375a7f; } background-color: #375a7f;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #375a7f; } background-color: #375a7f;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #444; } background-color: #444;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #444; } background-color: #444;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #00bc8c; } background-color: #00bc8c;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #00bc8c; } background-color: #00bc8c;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #fff; color: #fff;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #fff; color: #fff;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #adb5bd; } background-color: #adb5bd;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #fff; color: #fff;
background-color: #adb5bd; } background-color: #adb5bd;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #303030; } background-color: #303030;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #303030; } background-color: #303030;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #3498db; border-color: #3498db;
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #f39c12; border-color: #f39c12;
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #3498db; } border-color: #3498db;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #3498db; } background-color: #3498db;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #f39c12; } border-color: #f39c12;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #f39c12; } background-color: #f39c12;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}
/* Body */ /* Body */
body { body {
@ -290,87 +335,111 @@ body {
/* background by SVGBackgrounds.com */ /* background by SVGBackgrounds.com */
background-attachment: fixed; background-attachment: fixed;
background-size: cover; background-size: cover;
background-blend-mode: soft-light; } background-blend-mode: soft-light;
}
.panel { .panel {
background-color: #363636; background-color: #363636;
border: 1px solid #454545; border: 1px solid #454545;
box-shadow: none; } box-shadow: none;
}
.loading-overlay { .loading-overlay {
background-color: #222; background-color: #222;
opacity: 0.65; } opacity: 0.65;
}
/* Top navbar */ /* Top navbar */
.top-navbar { .top-navbar {
background-color: #375a7f; } background-color: #375a7f;
}
.center-navbar nav.header-breadcrumb { .center-navbar nav.header-breadcrumb {
color: #fff; } color: #fff;
}
header.top-navbar .header-menu > a:hover, header.top-navbar .header-menu > a:hover,
header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover { header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
color: #d6d6d6 !important; } color: #d6d6d6 !important;
}
.top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a { .top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
color: #fff; } color: #fff;
}
.top-navbar .right-navbar .header-menu a.nav-link { .top-navbar .right-navbar .header-menu a.nav-link {
color: #fff; } color: #fff;
}
.top-navbar .left-navbar .navbar-brand img { .top-navbar .left-navbar .navbar-brand img {
filter: invert(1); } filter: invert(1);
}
.top-navbar .left-navbar .navbar-brand:hover img { .top-navbar .left-navbar .navbar-brand:hover img {
filter: invert(1) drop-shadow(0px 0px 3px #fff); } filter: invert(1) drop-shadow(0px 0px 3px #fff);
}
.top-navbar .composed-app-icon-container > .app-icon { .top-navbar .composed-app-icon-container > .app-icon {
background-color: #fff; } background-color: #fff;
}
.breadcrumb-link-container { .breadcrumb-link-container {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #adb5bd; } background-color: #adb5bd;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {
transition: width .08s linear; transition: width 0.08s linear;
box-shadow: none; box-shadow: none;
background-color: #444; } background-color: #444;
}
.sidebar ~ main.content:after { .sidebar ~ main.content:after {
background: #000; } background: #000;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid none; } border-right: 1px solid none;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid rgba(0, 0, 0, 0.125); } border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.sidebar ul.sidebar-elements li > a.sidebar-link { .sidebar ul.sidebar-elements li > a.sidebar-link {
color: #fff; } color: #fff;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.active { .sidebar ul.sidebar-elements li > a.sidebar-link.active {
background-color: #595f64; background-color: #595f64;
color: #fff; } color: #fff;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: #595f64; background-color: #595f64;
color: #fff; } color: #fff;
}
.sidebar ul.sidebar-elements li > a.sidebar-link:hover { .sidebar ul.sidebar-elements li > a.sidebar-link:hover {
background-color: #60676c; background-color: #60676c;
color: #fff; } color: #fff;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: unset; } background-color: unset;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover {
background-color: #60676c; } background-color: #60676c;
}
ul.sidebar-elements li > a.sidebar-link.active::after { ul.sidebar-elements li > a.sidebar-link.active::after {
background-color: var(--cerebrate-color); } background-color: var(--cerebrate-color);
}
.lock-sidebar > a.btn { .lock-sidebar > a.btn {
background-color: unset; } background-color: unset;
}

View File

@ -1,287 +1,332 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid #e9ecef; border: 1px solid #e9ecef;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #fff; background-color: #fff;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.callout-primary { .callout-primary {
border-left-color: #0d6efd; border-left-color: #0d6efd;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #6c757d; border-left-color: #6c757d;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #198754; border-left-color: #198754;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #0dcaf0; border-left-color: #0dcaf0;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #ffc107; border-left-color: #ffc107;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #dc3545; border-left-color: #dc3545;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #f8f9fa; border-left-color: #f8f9fa;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #212529; border-left-color: #212529;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #04214c; color: #04214c;
background-color: #b6d4fe; background-color: #b6d4fe;
border-color: #9ec5fe; } border-color: #9ec5fe;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #85b6fe; } border-top-color: #85b6fe;
}
.toast-secondary { .toast-secondary {
color: #202326; color: #202326;
background-color: #d3d6d8; background-color: #d3d6d8;
border-color: #c4c8cb; } border-color: #c4c8cb;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #b6bbbf; } border-top-color: #b6bbbf;
}
.toast-success { .toast-success {
color: #082919; color: #082919;
background-color: #badbcc; background-color: #badbcc;
border-color: #a3cfbb; } border-color: #a3cfbb;
}
.toast-success strong { .toast-success strong {
border-top-color: #92c6af; } border-top-color: #92c6af;
}
.toast-info { .toast-info {
color: #043d48; color: #043d48;
background-color: #b6effb; background-color: #b6effb;
border-color: #9eeaf9; } border-color: #9eeaf9;
}
.toast-info strong { .toast-info strong {
border-top-color: #86e5f8; } border-top-color: #86e5f8;
}
.toast-warning { .toast-warning {
color: #4d3a02; color: #4d3a02;
background-color: #ffecb5; background-color: #ffecb5;
border-color: #ffe69c; } border-color: #ffe69c;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #ffe083; } border-top-color: #ffe083;
}
.toast-danger { .toast-danger {
color: #421015; color: #421015;
background-color: #f5c2c7; background-color: #f5c2c7;
border-color: #f1aeb5; } border-color: #f1aeb5;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #ed98a1; } border-top-color: #ed98a1;
}
.toast-light { .toast-light {
color: #4a4b4b; color: #4a4b4b;
background-color: #fdfdfe; background-color: #fdfdfe;
border-color: #fcfdfd; } border-color: #fcfdfd;
}
.toast-light strong { .toast-light strong {
border-top-color: #edf3f3; } border-top-color: #edf3f3;
}
.toast-dark { .toast-dark {
color: #0a0b0c; color: #0a0b0c;
background-color: #bcbebf; background-color: #bcbebf;
border-color: #a6a8a9; } border-color: #a6a8a9;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #999b9c; } border-top-color: #999b9c;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #0d6efd; } background-color: #0d6efd;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #0d6efd; } background-color: #0d6efd;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #6c757d; } background-color: #6c757d;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #6c757d; } background-color: #6c757d;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #198754; } background-color: #198754;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #198754; } background-color: #198754;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #000; color: #000;
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #000; color: #000;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #dc3545; } background-color: #dc3545;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #dc3545; } background-color: #dc3545;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #f8f9fa; } background-color: #f8f9fa;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #000; color: #000;
background-color: #f8f9fa; } background-color: #f8f9fa;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #212529; } background-color: #212529;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #212529; } background-color: #212529;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230dcaf0' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%230dcaf0' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #0dcaf0; border-color: #0dcaf0;
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); } box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #ffc107; border-color: #ffc107;
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%230dcaf0'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%230dcaf0'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%230dcaf0' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #0dcaf0; } border-color: #0dcaf0;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #0dcaf0; } background-color: #0dcaf0;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25); } box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #ffc107; } border-color: #ffc107;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #ffc107; } background-color: #ffc107;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}
/* Body */ /* Body */
body { body {
@ -290,87 +335,111 @@ body {
/* background by SVGBackgrounds.com */ /* background by SVGBackgrounds.com */
background-attachment: fixed; background-attachment: fixed;
background-size: cover; background-size: cover;
background-blend-mode: normal; } background-blend-mode: normal;
}
.panel { .panel {
background-color: #fff; background-color: #fff;
border: none; border: none;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.loading-overlay { .loading-overlay {
background-color: #f8f9fa; background-color: #f8f9fa;
opacity: 0.75; } opacity: 0.75;
}
/* Top navbar */ /* Top navbar */
.top-navbar { .top-navbar {
background-color: #212529; } background-color: #212529;
}
.center-navbar nav.header-breadcrumb { .center-navbar nav.header-breadcrumb {
color: #fff; } color: #fff;
}
header.top-navbar .header-menu > a:hover, header.top-navbar .header-menu > a:hover,
header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover { header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
color: #d6d6d6 !important; } color: #d6d6d6 !important;
}
.top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a { .top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
color: #fff; } color: #fff;
}
.top-navbar .right-navbar .header-menu a.nav-link { .top-navbar .right-navbar .header-menu a.nav-link {
color: #fff; } color: #fff;
}
.top-navbar .left-navbar .navbar-brand img { .top-navbar .left-navbar .navbar-brand img {
filter: invert(1); } filter: invert(1);
}
.top-navbar .left-navbar .navbar-brand:hover img { .top-navbar .left-navbar .navbar-brand:hover img {
filter: invert(1) drop-shadow(0px 0px 3px #fff); } filter: invert(1) drop-shadow(0px 0px 3px #fff);
}
.top-navbar .composed-app-icon-container > .app-icon { .top-navbar .composed-app-icon-container > .app-icon {
background-color: #fff; } background-color: #fff;
}
.breadcrumb-link-container { .breadcrumb-link-container {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #f8f9fa; } background-color: #f8f9fa;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {
transition: width .08s linear; transition: width 0.08s linear;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #f8f9fa; } background-color: #f8f9fa;
}
.sidebar ~ main.content:after { .sidebar ~ main.content:after {
background: #000; } background: #000;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid #ddd; } border-right: 1px solid #ddd;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid rgba(0, 0, 0, 0.125); } border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.sidebar ul.sidebar-elements li > a.sidebar-link { .sidebar ul.sidebar-elements li > a.sidebar-link {
color: #000; } color: #000;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.active { .sidebar ul.sidebar-elements li > a.sidebar-link.active {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #000; } color: #000;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #000; } color: #000;
}
.sidebar ul.sidebar-elements li > a.sidebar-link:hover { .sidebar ul.sidebar-elements li > a.sidebar-link:hover {
background-color: #ebebeb; background-color: #ebebeb;
color: #000; } color: #000;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: unset; } background-color: unset;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover {
background-color: #ebebeb; } background-color: #ebebeb;
}
ul.sidebar-elements li > a.sidebar-link.active::after { ul.sidebar-elements li > a.sidebar-link.active::after {
background-color: var(--cerebrate-color); } background-color: var(--cerebrate-color);
}
.lock-sidebar > a.btn { .lock-sidebar > a.btn {
background-color: #f8f9fa; } background-color: #f8f9fa;
}

View File

@ -1,287 +1,332 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid #ecf0f1; border: 1px solid #ecf0f1;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #fff; background-color: #fff;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.callout-primary { .callout-primary {
border-left-color: #2c3e50; border-left-color: #2c3e50;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #95a5a6; border-left-color: #95a5a6;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #18bc9c; border-left-color: #18bc9c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #3498db; border-left-color: #3498db;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #f39c12; border-left-color: #f39c12;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #e74c3c; border-left-color: #e74c3c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #ecf0f1; border-left-color: #ecf0f1;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #7b8a8b; border-left-color: #7b8a8b;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #0d1318; color: #0d1318;
background-color: #c0c5cb; background-color: #c0c5cb;
border-color: #abb2b9; } border-color: #abb2b9;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #9da5ad; } border-top-color: #9da5ad;
}
.toast-secondary { .toast-secondary {
color: #2d3232; color: #2d3232;
background-color: #dfe4e4; background-color: #dfe4e4;
border-color: #d5dbdb; } border-color: #d5dbdb;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #c7cfcf; } border-top-color: #c7cfcf;
}
.toast-success { .toast-success {
color: #07382f; color: #07382f;
background-color: #baebe1; background-color: #baebe1;
border-color: #a3e4d7; } border-color: #a3e4d7;
}
.toast-success strong { .toast-success strong {
border-top-color: #8fdece; } border-top-color: #8fdece;
}
.toast-info { .toast-info {
color: #102e42; color: #102e42;
background-color: #c2e0f4; background-color: #c2e0f4;
border-color: #aed6f1; } border-color: #aed6f1;
}
.toast-info strong { .toast-info strong {
border-top-color: #98cbed; } border-top-color: #98cbed;
}
.toast-warning { .toast-warning {
color: #492f05; color: #492f05;
background-color: #fbe1b8; background-color: #fbe1b8;
border-color: #fad7a0; } border-color: #fad7a0;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #f9cd88; } border-top-color: #f9cd88;
}
.toast-danger { .toast-danger {
color: #451712; color: #451712;
background-color: #f8c9c5; background-color: #f8c9c5;
border-color: #f5b7b1; } border-color: #f5b7b1;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #f2a29a; } border-top-color: #f2a29a;
}
.toast-light { .toast-light {
color: #474848; color: #474848;
background-color: #f9fbfb; background-color: #f9fbfb;
border-color: #f7f9f9; } border-color: #f7f9f9;
}
.toast-light strong { .toast-light strong {
border-top-color: #e8eeee; } border-top-color: #e8eeee;
}
.toast-dark { .toast-dark {
color: #25292a; color: #25292a;
background-color: #d7dcdc; background-color: #d7dcdc;
border-color: #cad0d1; } border-color: #cad0d1;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #bcc4c5; } border-top-color: #bcc4c5;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #2c3e50; } background-color: #2c3e50;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #2c3e50; } background-color: #2c3e50;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #95a5a6; } background-color: #95a5a6;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #95a5a6; } background-color: #95a5a6;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #18bc9c; } background-color: #18bc9c;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #18bc9c; } background-color: #18bc9c;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #fff; color: #fff;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #fff; color: #fff;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #000; color: #000;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #7b8a8b; } background-color: #7b8a8b;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #7b8a8b; } background-color: #7b8a8b;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #3498db; border-color: #3498db;
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #f39c12; border-color: #f39c12;
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #3498db; } border-color: #3498db;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #3498db; } background-color: #3498db;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #f39c12; } border-color: #f39c12;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #f39c12; } background-color: #f39c12;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}
/* Body */ /* Body */
body { body {
@ -290,87 +335,111 @@ body {
/* background by SVGBackgrounds.com */ /* background by SVGBackgrounds.com */
background-attachment: fixed; background-attachment: fixed;
background-size: cover; background-size: cover;
background-blend-mode: normal; } background-blend-mode: normal;
}
.panel { .panel {
background-color: #fff; background-color: #fff;
border: none; border: none;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.loading-overlay { .loading-overlay {
background-color: #ecf0f1; background-color: #ecf0f1;
opacity: 0.75; } opacity: 0.75;
}
/* Top navbar */ /* Top navbar */
.top-navbar { .top-navbar {
background-color: #2c3e50; } background-color: #2c3e50;
}
.center-navbar nav.header-breadcrumb { .center-navbar nav.header-breadcrumb {
color: #fff; } color: #fff;
}
header.top-navbar .header-menu > a:hover, header.top-navbar .header-menu > a:hover,
header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover { header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
color: #d6d6d6 !important; } color: #d6d6d6 !important;
}
.top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a { .top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
color: #fff; } color: #fff;
}
.top-navbar .right-navbar .header-menu a.nav-link { .top-navbar .right-navbar .header-menu a.nav-link {
color: #fff; } color: #fff;
}
.top-navbar .left-navbar .navbar-brand img { .top-navbar .left-navbar .navbar-brand img {
filter: invert(1); } filter: invert(1);
}
.top-navbar .left-navbar .navbar-brand:hover img { .top-navbar .left-navbar .navbar-brand:hover img {
filter: invert(1) drop-shadow(0px 0px 3px #fff); } filter: invert(1) drop-shadow(0px 0px 3px #fff);
}
.top-navbar .composed-app-icon-container > .app-icon { .top-navbar .composed-app-icon-container > .app-icon {
background-color: #fff; } background-color: #fff;
}
.breadcrumb-link-container { .breadcrumb-link-container {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #ecf0f1; } background-color: #ecf0f1;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {
transition: width .08s linear; transition: width 0.08s linear;
box-shadow: none; box-shadow: none;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.sidebar ~ main.content:after { .sidebar ~ main.content:after {
background: #000; } background: #000;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid none; } border-right: 1px solid none;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid rgba(0, 0, 0, 0.125); } border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.sidebar ul.sidebar-elements li > a.sidebar-link { .sidebar ul.sidebar-elements li > a.sidebar-link {
color: #000; } color: #000;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.active { .sidebar ul.sidebar-elements li > a.sidebar-link.active {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar ul.sidebar-elements li > a.sidebar-link:hover { .sidebar ul.sidebar-elements li > a.sidebar-link:hover {
background-color: #ebebeb; background-color: #ebebeb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: unset; } background-color: unset;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover {
background-color: #ebebeb; } background-color: #ebebeb;
}
ul.sidebar-elements li > a.sidebar-link.active::after { ul.sidebar-elements li > a.sidebar-link.active::after {
background-color: #18bc9c; } background-color: #18bc9c;
}
.lock-sidebar > a.btn { .lock-sidebar > a.btn {
background-color: unset; } background-color: unset;
}

View File

@ -1,287 +1,332 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid #ecf0f1; border: 1px solid #ecf0f1;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #fff; background-color: #fff;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.callout-primary { .callout-primary {
border-left-color: #2c3e50; border-left-color: #2c3e50;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #95a5a6; border-left-color: #95a5a6;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #18bc9c; border-left-color: #18bc9c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #3498db; border-left-color: #3498db;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #f39c12; border-left-color: #f39c12;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #e74c3c; border-left-color: #e74c3c;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #ecf0f1; border-left-color: #ecf0f1;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #7b8a8b; border-left-color: #7b8a8b;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #0d1318; color: #0d1318;
background-color: #c0c5cb; background-color: #c0c5cb;
border-color: #abb2b9; } border-color: #abb2b9;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #9da5ad; } border-top-color: #9da5ad;
}
.toast-secondary { .toast-secondary {
color: #2d3232; color: #2d3232;
background-color: #dfe4e4; background-color: #dfe4e4;
border-color: #d5dbdb; } border-color: #d5dbdb;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #c7cfcf; } border-top-color: #c7cfcf;
}
.toast-success { .toast-success {
color: #07382f; color: #07382f;
background-color: #baebe1; background-color: #baebe1;
border-color: #a3e4d7; } border-color: #a3e4d7;
}
.toast-success strong { .toast-success strong {
border-top-color: #8fdece; } border-top-color: #8fdece;
}
.toast-info { .toast-info {
color: #102e42; color: #102e42;
background-color: #c2e0f4; background-color: #c2e0f4;
border-color: #aed6f1; } border-color: #aed6f1;
}
.toast-info strong { .toast-info strong {
border-top-color: #98cbed; } border-top-color: #98cbed;
}
.toast-warning { .toast-warning {
color: #492f05; color: #492f05;
background-color: #fbe1b8; background-color: #fbe1b8;
border-color: #fad7a0; } border-color: #fad7a0;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #f9cd88; } border-top-color: #f9cd88;
}
.toast-danger { .toast-danger {
color: #451712; color: #451712;
background-color: #f8c9c5; background-color: #f8c9c5;
border-color: #f5b7b1; } border-color: #f5b7b1;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #f2a29a; } border-top-color: #f2a29a;
}
.toast-light { .toast-light {
color: #474848; color: #474848;
background-color: #f9fbfb; background-color: #f9fbfb;
border-color: #f7f9f9; } border-color: #f7f9f9;
}
.toast-light strong { .toast-light strong {
border-top-color: #e8eeee; } border-top-color: #e8eeee;
}
.toast-dark { .toast-dark {
color: #25292a; color: #25292a;
background-color: #d7dcdc; background-color: #d7dcdc;
border-color: #cad0d1; } border-color: #cad0d1;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #bcc4c5; } border-top-color: #bcc4c5;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #2c3e50; } background-color: #2c3e50;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #2c3e50; } background-color: #2c3e50;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #95a5a6; } background-color: #95a5a6;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #95a5a6; } background-color: #95a5a6;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #18bc9c; } background-color: #18bc9c;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #18bc9c; } background-color: #18bc9c;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #fff; color: #fff;
background-color: #3498db; } background-color: #3498db;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #fff; color: #fff;
background-color: #f39c12; } background-color: #f39c12;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #e74c3c; } background-color: #e74c3c;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #000; color: #000;
text-decoration: none; text-decoration: none;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #000; color: #000;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #7b8a8b; } background-color: #7b8a8b;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #7b8a8b; } background-color: #7b8a8b;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%233498db' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #3498db; border-color: #3498db;
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f39c12' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #f39c12; border-color: #f39c12;
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%233498db'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%233498db' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f39c12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f39c12' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #3498db; } border-color: #3498db;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #3498db; } background-color: #3498db;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25); } box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #f39c12; } border-color: #f39c12;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #f39c12; } background-color: #f39c12;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25); } box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}
/* Body */ /* Body */
body { body {
@ -290,87 +335,111 @@ body {
/* background by SVGBackgrounds.com */ /* background by SVGBackgrounds.com */
background-attachment: fixed; background-attachment: fixed;
background-size: cover; background-size: cover;
background-blend-mode: normal; } background-blend-mode: normal;
}
.panel { .panel {
background-color: #fff; background-color: #fff;
border: none; border: none;
box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25); } box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.25);
}
.loading-overlay { .loading-overlay {
background-color: #ecf0f1; background-color: #ecf0f1;
opacity: 0.65; } opacity: 0.65;
}
/* Top navbar */ /* Top navbar */
.top-navbar { .top-navbar {
background-color: #2c3e50; } background-color: #2c3e50;
}
.center-navbar nav.header-breadcrumb { .center-navbar nav.header-breadcrumb {
color: #fff; } color: #fff;
}
header.top-navbar .header-menu > a:hover, header.top-navbar .header-menu > a:hover,
header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover { header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
color: #d6d6d6 !important; } color: #d6d6d6 !important;
}
.top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a { .top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
color: #fff; } color: #fff;
}
.top-navbar .right-navbar .header-menu a.nav-link { .top-navbar .right-navbar .header-menu a.nav-link {
color: #fff; } color: #fff;
}
.top-navbar .left-navbar .navbar-brand img { .top-navbar .left-navbar .navbar-brand img {
filter: invert(1); } filter: invert(1);
}
.top-navbar .left-navbar .navbar-brand:hover img { .top-navbar .left-navbar .navbar-brand:hover img {
filter: invert(1) drop-shadow(0px 0px 3px #fff); } filter: invert(1) drop-shadow(0px 0px 3px #fff);
}
.top-navbar .composed-app-icon-container > .app-icon { .top-navbar .composed-app-icon-container > .app-icon {
background-color: #fff; } background-color: #fff;
}
.breadcrumb-link-container { .breadcrumb-link-container {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #ecf0f1; } background-color: #ecf0f1;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {
transition: width .08s linear; transition: width 0.08s linear;
box-shadow: none; box-shadow: none;
background-color: #ecf0f1; } background-color: #ecf0f1;
}
.sidebar ~ main.content:after { .sidebar ~ main.content:after {
background: #000; } background: #000;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid none; } border-right: 1px solid none;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid rgba(0, 0, 0, 0.125); } border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.sidebar ul.sidebar-elements li > a.sidebar-link { .sidebar ul.sidebar-elements li > a.sidebar-link {
color: #343a40; } color: #343a40;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.active { .sidebar ul.sidebar-elements li > a.sidebar-link.active {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: #dbdbdb; background-color: #dbdbdb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar ul.sidebar-elements li > a.sidebar-link:hover { .sidebar ul.sidebar-elements li > a.sidebar-link:hover {
background-color: #ebebeb; background-color: #ebebeb;
color: #18bc9c; } color: #18bc9c;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: unset; } background-color: unset;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover {
background-color: #ebebeb; } background-color: #ebebeb;
}
ul.sidebar-elements li > a.sidebar-link.active::after { ul.sidebar-elements li > a.sidebar-link.active::after {
background-color: #18bc9c; } background-color: #18bc9c;
}
.lock-sidebar > a.btn { .lock-sidebar > a.btn {
background-color: unset; } background-color: unset;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,368 +1,436 @@
/* Callout */ /* Callout */
.callout { .callout {
border: 1px solid #e9ecef; border: 1px solid #e9ecef;
border-radius: .25rem; border-radius: 0.25rem;
background-color: #363636; background-color: #363636;
box-shadow: none; } box-shadow: none;
}
.callout-primary { .callout-primary {
border-left-color: #6f42c1; border-left-color: #6f42c1;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-secondary { .callout-secondary {
border-left-color: #ea39b8; border-left-color: #ea39b8;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-success { .callout-success {
border-left-color: #3cf281; border-left-color: #3cf281;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-info { .callout-info {
border-left-color: #1ba2f6; border-left-color: #1ba2f6;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-warning { .callout-warning {
border-left-color: #ffc107; border-left-color: #ffc107;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-danger { .callout-danger {
border-left-color: #e44c55; border-left-color: #e44c55;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-light { .callout-light {
border-left-color: #44d9e8; border-left-color: #44d9e8;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
.callout-dark { .callout-dark {
border-left-color: #170229; border-left-color: #170229;
border-left-width: .25rem; border-left-width: 0.25rem;
border-left-style: solid; } border-left-style: solid;
}
/* Toasts */ /* Toasts */
.toast { .toast {
min-width: 250px; } min-width: 250px;
}
.toast-primary { .toast-primary {
color: #21143a; color: #21143a;
background-color: #d4c6ec; background-color: #d4c6ec;
border-color: #c5b3e6; } border-color: #c5b3e6;
}
.toast-primary strong { .toast-primary strong {
border-top-color: #b6a0e0; } border-top-color: #b6a0e0;
}
.toast-secondary { .toast-secondary {
color: #461137; color: #461137;
background-color: #f9c4ea; background-color: #f9c4ea;
border-color: #f7b0e3; } border-color: #f7b0e3;
}
.toast-secondary strong { .toast-secondary strong {
border-top-color: #f599db; } border-top-color: #f599db;
}
.toast-success { .toast-success {
color: #124927; color: #124927;
background-color: #c5fbd9; background-color: #c5fbd9;
border-color: #b1facd; } border-color: #b1facd;
}
.toast-success strong { .toast-success strong {
border-top-color: #99f8be; } border-top-color: #99f8be;
}
.toast-info { .toast-info {
color: #08314a; color: #08314a;
background-color: #bbe3fc; background-color: #bbe3fc;
border-color: #a4dafb; } border-color: #a4dafb;
}
.toast-info strong { .toast-info strong {
border-top-color: #8cd0fa; } border-top-color: #8cd0fa;
}
.toast-warning { .toast-warning {
color: #4d3a02; color: #4d3a02;
background-color: #ffecb5; background-color: #ffecb5;
border-color: #ffe69c; } border-color: #ffe69c;
}
.toast-warning strong { .toast-warning strong {
border-top-color: #ffe083; } border-top-color: #ffe083;
}
.toast-danger { .toast-danger {
color: #44171a; color: #44171a;
background-color: #f7c9cc; background-color: #f7c9cc;
border-color: #f4b7bb; } border-color: #f4b7bb;
}
.toast-danger strong { .toast-danger strong {
border-top-color: #f1a1a6; } border-top-color: #f1a1a6;
}
.toast-light { .toast-light {
color: #144146; color: #144146;
background-color: #c7f4f8; background-color: #c7f4f8;
border-color: #b4f0f6; } border-color: #b4f0f6;
}
.toast-light strong { .toast-light strong {
border-top-color: #9debf3; } border-top-color: #9debf3;
}
.toast-dark { .toast-dark {
color: #07010c; color: #07010c;
background-color: #b9b3bf; background-color: #b9b3bf;
border-color: #a29aa9; } border-color: #a29aa9;
}
.toast-dark strong { .toast-dark strong {
border-top-color: #958c9d; } border-top-color: #958c9d;
}
/* Dropdown-item */ /* Dropdown-item */
.dropdown-item.dropdown-item-primary { .dropdown-item.dropdown-item-primary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #6f42c1; } background-color: #6f42c1;
}
.dropdown-item.dropdown-item-outline-primary:hover { .dropdown-item.dropdown-item-outline-primary:hover {
color: #fff; color: #fff;
background-color: #6f42c1; } background-color: #6f42c1;
}
.dropdown-item.dropdown-item-secondary { .dropdown-item.dropdown-item-secondary {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #ea39b8; } background-color: #ea39b8;
}
.dropdown-item.dropdown-item-outline-secondary:hover { .dropdown-item.dropdown-item-outline-secondary:hover {
color: #fff; color: #fff;
background-color: #ea39b8; } background-color: #ea39b8;
}
.dropdown-item.dropdown-item-success { .dropdown-item.dropdown-item-success {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #3cf281; } background-color: #3cf281;
}
.dropdown-item.dropdown-item-outline-success:hover { .dropdown-item.dropdown-item-outline-success:hover {
color: #fff; color: #fff;
background-color: #3cf281; } background-color: #3cf281;
}
.dropdown-item.dropdown-item-info { .dropdown-item.dropdown-item-info {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #1ba2f6; } background-color: #1ba2f6;
}
.dropdown-item.dropdown-item-outline-info:hover { .dropdown-item.dropdown-item-outline-info:hover {
color: #fff; color: #fff;
background-color: #1ba2f6; } background-color: #1ba2f6;
}
.dropdown-item.dropdown-item-warning { .dropdown-item.dropdown-item-warning {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-outline-warning:hover { .dropdown-item.dropdown-item-outline-warning:hover {
color: #fff; color: #fff;
background-color: #ffc107; } background-color: #ffc107;
}
.dropdown-item.dropdown-item-danger { .dropdown-item.dropdown-item-danger {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #e44c55; } background-color: #e44c55;
}
.dropdown-item.dropdown-item-outline-danger:hover { .dropdown-item.dropdown-item-outline-danger:hover {
color: #fff; color: #fff;
background-color: #e44c55; } background-color: #e44c55;
}
.dropdown-item.dropdown-item-light { .dropdown-item.dropdown-item-light {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #44d9e8; } background-color: #44d9e8;
}
.dropdown-item.dropdown-item-outline-light:hover { .dropdown-item.dropdown-item-outline-light:hover {
color: #fff; color: #fff;
background-color: #44d9e8; } background-color: #44d9e8;
}
.dropdown-item.dropdown-item-dark { .dropdown-item.dropdown-item-dark {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
background-color: #170229; } background-color: #170229;
}
.dropdown-item.dropdown-item-outline-dark:hover { .dropdown-item.dropdown-item-outline-dark:hover {
color: #fff; color: #fff;
background-color: #170229; } background-color: #170229;
}
/* Progress Timeline */ /* Progress Timeline */
.progress-timeline { .progress-timeline {
padding: 0.2em 0.2em 0.5em 0.2em; } padding: 0.2em 0.2em 0.5em 0.2em;
}
.progress-timeline ul { .progress-timeline ul {
position: relative; position: relative;
padding: 0; } padding: 0;
}
.progress-timeline li { .progress-timeline li {
list-style-type: none; list-style-type: none;
position: relative; } position: relative;
}
.progress-timeline li.progress-inactive { .progress-timeline li.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
.progress-timeline .progress-line { .progress-timeline .progress-line {
height: 2px; } height: 2px;
}
.progress-timeline .progress-line.progress-inactive { .progress-timeline .progress-line.progress-inactive {
opacity: 0.5; } opacity: 0.5;
}
/* Forms severity */ /* Forms severity */
.form-control.is-invalid.info { .form-control.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%231ba2f6' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%231ba2f6' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%231ba2f6' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%231ba2f6' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.info:focus { .form-control.is-invalid.info:focus {
border-color: #1ba2f6; border-color: #1ba2f6;
box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25); } box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25);
}
.form-control.is-invalid.warning { .form-control.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); } background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffc107' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
}
.form-control.is-invalid.warning:focus { .form-control.is-invalid.warning:focus {
border-color: #ffc107; border-color: #ffc107;
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}
.form-select.is-invalid:not([multiple]):not([size]).info, .form-select.is-invalid:not([multiple]):not([size]).info,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info {
.form-select.is-invalid.info {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%231ba2f6'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%231ba2f6' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%231ba2f6'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%231ba2f6' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).info:focus, .form-select.is-invalid:not([multiple]):not([size]).info:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.info:focus {
.form-select.is-invalid.info:focus { box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25);
box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25); } }
.form-select.is-invalid:not([multiple]):not([size]).warning, .form-select.is-invalid:not([multiple]):not([size]).warning,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning {
.form-select.is-invalid.warning {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ffc107'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ffc107' stroke='none'/%3e%3c/svg%3e");
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-select.is-invalid:not([multiple]):not([size]).warning:focus, .form-select.is-invalid:not([multiple]):not([size]).warning:focus,
.form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid:not([multiple])[size="1"] .form-select.is-invalid.warning:focus {
.form-select.is-invalid.warning:focus { box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); } }
.form-check-input.is-invalid.info { .form-check-input.is-invalid.info {
border-color: #1ba2f6; } border-color: #1ba2f6;
}
.form-check-input.is-invalid.info:checked { .form-check-input.is-invalid.info:checked {
background-color: #1ba2f6; } background-color: #1ba2f6;
}
.form-check-input.is-invalid.info ~ .form-check-label { .form-check-input.is-invalid.info ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.info:focus { .form-check-input.is-invalid.info:focus {
box-shadow: 0 0 0 0.2rem rgba(27, 162, 246, 0.25); } box-shadow: 0 0 0 0.2rem rgba(27, 162, 246, 0.25);
}
.form-check-input.is-invalid.warning { .form-check-input.is-invalid.warning {
border-color: #ffc107; } border-color: #ffc107;
}
.form-check-input.is-invalid.warning:checked { .form-check-input.is-invalid.warning:checked {
background-color: #ffc107; } background-color: #ffc107;
}
.form-check-input.is-invalid.warning ~ .form-check-label { .form-check-input.is-invalid.warning ~ .form-check-label {
color: unset; } color: unset;
}
.form-check-input.is-invalid.warning:focus { .form-check-input.is-invalid.warning:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25); } box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
/* Utilities */ /* Utilities */
.mw-75 { .mw-75 {
max-width: 75% !important; } max-width: 75% !important;
}
.mw-50 { .mw-50 {
max-width: 50% !important; } max-width: 50% !important;
}
.mw-25 { .mw-25 {
max-width: 25% !important; } max-width: 25% !important;
}
.mh-75 { .mh-75 {
max-height: 75% !important; } max-height: 75% !important;
}
.mh-50 { .mh-50 {
max-height: 50% !important; } max-height: 50% !important;
}
.mh-25 { .mh-25 {
max-height: 25% !important; } max-height: 25% !important;
}
.p-abs-center-y { .p-abs-center-y {
top: 50%; top: 50%;
transform: translateY(-50%); } transform: translateY(-50%);
}
.p-abs-center-x { .p-abs-center-x {
left: 50%; left: 50%;
transform: translateX(-50%); } transform: translateX(-50%);
}
.p-abs-center-both { .p-abs-center-both {
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translateX(-50%) translateY(-50%); } transform: translateX(-50%) translateY(-50%);
}
/* Body */ /* Body */
.panel { .panel {
background-color: #363636; background-color: #363636;
border: 1px solid #454545; border: 1px solid #454545;
box-shadow: none; } box-shadow: none;
}
.loading-overlay { .loading-overlay {
background-color: #170229; background-color: #170229;
opacity: 0.65; } opacity: 0.65;
}
/* Top navbar */ /* Top navbar */
.top-navbar { .top-navbar {
background-color: #6f42c1; } background-color: #6f42c1;
}
.center-navbar nav.header-breadcrumb { .center-navbar nav.header-breadcrumb {
color: #fff; } color: #fff;
}
header.top-navbar .header-menu > a:hover, header.top-navbar .header-menu > a:hover,
header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover { header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
color: #d6d6d6 !important; } color: #d6d6d6 !important;
}
.top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a { .top-navbar .center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
color: #fff; } color: #fff;
}
.top-navbar .right-navbar .header-menu a.nav-link { .top-navbar .right-navbar .header-menu a.nav-link {
color: #fff; } color: #fff;
}
.top-navbar .left-navbar .navbar-brand img { .top-navbar .left-navbar .navbar-brand img {
filter: invert(1); } filter: invert(1);
}
.top-navbar .left-navbar .navbar-brand:hover img { .top-navbar .left-navbar .navbar-brand:hover img {
filter: invert(1) drop-shadow(0px 0px 3px #fff); } filter: invert(1) drop-shadow(0px 0px 3px #fff);
}
.top-navbar .composed-app-icon-container > .app-icon { .top-navbar .composed-app-icon-container > .app-icon {
background-color: #fff; } background-color: #fff;
}
.breadcrumb-link-container { .breadcrumb-link-container {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
background-color: #44d9e8; } background-color: #44d9e8;
}
/* Sidebar */ /* Sidebar */
.sidebar { .sidebar {
transition: width .08s linear; transition: width 0.08s linear;
box-shadow: none; box-shadow: none;
background-color: #170229; } background-color: #170229;
}
.sidebar ~ main.content:after { .sidebar ~ main.content:after {
background: #000; } background: #000;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid none; } border-right: 1px solid none;
}
.sidebar .sidebar-wrapper { .sidebar .sidebar-wrapper {
border-right: 1px solid rgba(0, 0, 0, 0.125); } border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.sidebar ul.sidebar-elements li > a.sidebar-link { .sidebar ul.sidebar-elements li > a.sidebar-link {
color: #fff; } color: #fff;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.active { .sidebar ul.sidebar-elements li > a.sidebar-link.active {
background-color: #343a40; background-color: #343a40;
color: #3cf281; } color: #3cf281;
}
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: #343a40; background-color: #343a40;
color: #3cf281; } color: #3cf281;
}
.sidebar ul.sidebar-elements li > a.sidebar-link:hover { .sidebar ul.sidebar-elements li > a.sidebar-link:hover {
background-color: #495057; background-color: #495057;
color: #3cf281; } color: #3cf281;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child {
background-color: unset; } background-color: unset;
}
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover, .sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child:hover,
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover { .sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child:hover {
background-color: #495057; } background-color: #495057;
}
ul.sidebar-elements li > a.sidebar-link.active::after { ul.sidebar-elements li > a.sidebar-link.active::after {
background-color: #6f42c1; } background-color: #6f42c1;
}
.lock-sidebar > a.btn { .lock-sidebar > a.btn {
background-color: unset; } background-color: unset;
}

View File

@ -279,10 +279,12 @@ $(document).ready(() => {
overloadBSDropdown(); overloadBSDropdown();
addSupportOfNestedDropdown(); addSupportOfNestedDropdown();
if (window.debounce) {
const debouncedGlobalSearch = debounce(performGlobalSearch, 400) const debouncedGlobalSearch = debounce(performGlobalSearch, 400)
$('#globalSearch') $('#globalSearch')
.keydown(debouncedGlobalSearch) .keydown(debouncedGlobalSearch)
.keydown(focusSearchResults); .keydown(focusSearchResults);
}
$('.lock-sidebar a.btn-lock-sidebar').click(() => { $('.lock-sidebar a.btn-lock-sidebar').click(() => {
const $sidebar = $('.sidebar') const $sidebar = $('.sidebar')

File diff suppressed because it is too large Load Diff

View File

@ -5,13 +5,14 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"autobuild": "node-sass --watch scss -o ../css/themes", "autobuild": "sass --no-source-map --watch scss:../css/themes",
"build": "node-sass scss -o ../css/themes" "build": "sass --no-source-map scss:../css/themes",
"build-with-map": "sass scss:../css/themes"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"bootstrap": "^5.1.1", "bootstrap": "^5.1.1",
"node-sass": "^6.0.1" "sass": "^1.45.0"
} }
} }