Merge branch 'develop' into main
commit
88a93cbca0
|
@ -118,6 +118,7 @@ class Application extends BaseApplication implements AuthenticationServiceProvid
|
|||
'collectionFactory' => null,
|
||||
'logErrors' => true,
|
||||
]));
|
||||
\SocialConnect\JWX\JWT::$screw = Configure::check('keycloak.screw') ? Configure::read('keycloak.screw') : 0;
|
||||
}
|
||||
$middlewareQueue->add(new AuthenticationMiddleware($this))
|
||||
->add(new BodyParserMiddleware());
|
||||
|
|
|
@ -68,7 +68,11 @@ class LocalToolsController extends AppController
|
|||
foreach ($connections as $connection) {
|
||||
$actionDetails = $this->LocalTools->getActionDetails($actionName);
|
||||
$params['connection'] = $connection;
|
||||
$tmpResult = $this->LocalTools->action($this->ACL->getUser()['id'], $connection->connector, $actionName, $params, $this->request);
|
||||
try {
|
||||
$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;
|
||||
$results[$connection->id] = $tmpResult;
|
||||
$successes += $tmpResult['success'] ? 1 : 0;
|
||||
|
|
|
@ -293,70 +293,70 @@ class MispConnector extends CommonConnectorTools
|
|||
$response = $this->getData('/servers/serverSettings', $params);
|
||||
$data = $response->getJson();
|
||||
if (!empty($data['finalSettings'])) {
|
||||
$finalSettings = [
|
||||
'type' => 'index',
|
||||
'data' => [
|
||||
'data' => $data['finalSettings'],
|
||||
'skip_pagination' => 1,
|
||||
'top_bar' => [
|
||||
'children' => [
|
||||
[
|
||||
'type' => 'search',
|
||||
'button' => __('Filter'),
|
||||
'placeholder' => __('Enter value to search'),
|
||||
'data' => '',
|
||||
'searchKey' => 'value',
|
||||
'additionalUrlParams' => $urlParams
|
||||
]
|
||||
]
|
||||
],
|
||||
'fields' => [
|
||||
$finalSettings = [
|
||||
'type' => 'index',
|
||||
'data' => [
|
||||
'data' => $data['finalSettings'],
|
||||
'skip_pagination' => 1,
|
||||
'top_bar' => [
|
||||
'children' => [
|
||||
[
|
||||
'name' => 'Setting',
|
||||
'sort' => 'setting',
|
||||
'data_path' => 'setting',
|
||||
],
|
||||
[
|
||||
'name' => 'Criticality',
|
||||
'sort' => 'level',
|
||||
'data_path' => 'level',
|
||||
'arrayData' => [
|
||||
0 => 'Critical',
|
||||
1 => 'Recommended',
|
||||
2 => 'Optional'
|
||||
],
|
||||
'element' => 'array_lookup_field'
|
||||
],
|
||||
[
|
||||
'name' => __('Value'),
|
||||
'sort' => 'value',
|
||||
'data_path' => 'value',
|
||||
'options' => 'options'
|
||||
],
|
||||
[
|
||||
'name' => __('Type'),
|
||||
'sort' => 'type',
|
||||
'data_path' => 'type',
|
||||
],
|
||||
[
|
||||
'name' => __('Error message'),
|
||||
'sort' => 'errorMessage',
|
||||
'data_path' => 'errorMessage',
|
||||
]
|
||||
],
|
||||
'title' => false,
|
||||
'description' => false,
|
||||
'pull' => 'right',
|
||||
'actions' => [
|
||||
[
|
||||
'open_modal' => '/localTools/action/' . h($params['connection']['id']) . '/modifySettingAction?setting={{0}}',
|
||||
'modal_params_data_path' => ['setting'],
|
||||
'icon' => 'download',
|
||||
'reload_url' => '/localTools/action/' . h($params['connection']['id']) . '/ServerSettingsAction'
|
||||
'type' => 'search',
|
||||
'button' => __('Filter'),
|
||||
'placeholder' => __('Enter value to search'),
|
||||
'data' => '',
|
||||
'searchKey' => 'value',
|
||||
'additionalUrlParams' => $urlParams
|
||||
]
|
||||
]
|
||||
],
|
||||
'fields' => [
|
||||
[
|
||||
'name' => 'Setting',
|
||||
'sort' => 'setting',
|
||||
'data_path' => 'setting',
|
||||
],
|
||||
[
|
||||
'name' => 'Criticality',
|
||||
'sort' => 'level',
|
||||
'data_path' => 'level',
|
||||
'arrayData' => [
|
||||
0 => 'Critical',
|
||||
1 => 'Recommended',
|
||||
2 => 'Optional'
|
||||
],
|
||||
'element' => 'array_lookup_field'
|
||||
],
|
||||
[
|
||||
'name' => __('Value'),
|
||||
'sort' => 'value',
|
||||
'data_path' => 'value',
|
||||
'options' => 'options'
|
||||
],
|
||||
[
|
||||
'name' => __('Type'),
|
||||
'sort' => 'type',
|
||||
'data_path' => 'type',
|
||||
],
|
||||
[
|
||||
'name' => __('Error message'),
|
||||
'sort' => 'errorMessage',
|
||||
'data_path' => 'errorMessage',
|
||||
]
|
||||
],
|
||||
'title' => false,
|
||||
'description' => false,
|
||||
'pull' => 'right',
|
||||
'actions' => [
|
||||
[
|
||||
'open_modal' => '/localTools/action/' . h($params['connection']['id']) . '/modifySettingAction?setting={{0}}',
|
||||
'modal_params_data_path' => ['setting'],
|
||||
'icon' => 'download',
|
||||
'reload_url' => '/localTools/action/' . h($params['connection']['id']) . '/ServerSettingsAction'
|
||||
]
|
||||
]
|
||||
];
|
||||
]
|
||||
];
|
||||
if (!empty($params['quickFilter'])) {
|
||||
$needle = strtolower($params['quickFilter']);
|
||||
foreach ($finalSettings['data']['data'] as $k => $v) {
|
||||
|
@ -819,7 +819,7 @@ class MispConnector extends CommonConnectorTools
|
|||
[
|
||||
'field' => 'connection_ids',
|
||||
'type' => 'hidden',
|
||||
'value' => $params['connection_ids']
|
||||
'value' => json_encode($params['connection_ids'])
|
||||
],
|
||||
[
|
||||
'field' => 'method',
|
||||
|
|
|
@ -211,6 +211,13 @@ class CerebrateSettingsProvider extends BaseSettingsProvider
|
|||
},
|
||||
'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' => [
|
||||
'name' => 'org_uuid mapping',
|
||||
'type' => 'string',
|
||||
|
|
|
@ -155,7 +155,7 @@ echo $this->element('genericElements/IndexTable/index_table', [
|
|||
tableData
|
||||
)
|
||||
const $footer = $(modalObject.ajaxApi.statusNode).parent()
|
||||
modalObject.ajaxApi.statusNode.remove()
|
||||
modalObject.ajaxApi.options.statusNode.remove()
|
||||
const $cancelButton = $footer.find('button[data-dismiss="modal"]')
|
||||
$cancelButton.text('<?= __('OK') ?>').removeClass('btn-secondary').addClass('btn-primary')
|
||||
}
|
||||
|
|
|
@ -1,284 +1,329 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid #e9ecef;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
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 {
|
||||
border-left-color: #0d6efd;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #6c757d;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #198754;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #0dcaf0;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #ffc107;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #dc3545;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #f8f9fa;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #212529;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #04214c;
|
||||
background-color: #b6d4fe;
|
||||
border-color: #9ec5fe; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #85b6fe; }
|
||||
border-color: #9ec5fe;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #85b6fe;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #202326;
|
||||
background-color: #d3d6d8;
|
||||
border-color: #c4c8cb; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #b6bbbf; }
|
||||
border-color: #c4c8cb;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #b6bbbf;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #082919;
|
||||
background-color: #badbcc;
|
||||
border-color: #a3cfbb; }
|
||||
.toast-success strong {
|
||||
border-top-color: #92c6af; }
|
||||
border-color: #a3cfbb;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #92c6af;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #043d48;
|
||||
background-color: #b6effb;
|
||||
border-color: #9eeaf9; }
|
||||
.toast-info strong {
|
||||
border-top-color: #86e5f8; }
|
||||
border-color: #9eeaf9;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #86e5f8;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #4d3a02;
|
||||
background-color: #ffecb5;
|
||||
border-color: #ffe69c; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083; }
|
||||
border-color: #ffe69c;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #421015;
|
||||
background-color: #f5c2c7;
|
||||
border-color: #f1aeb5; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #ed98a1; }
|
||||
border-color: #f1aeb5;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #ed98a1;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #4a4b4b;
|
||||
background-color: #fdfdfe;
|
||||
border-color: #fcfdfd; }
|
||||
.toast-light strong {
|
||||
border-top-color: #edf3f3; }
|
||||
border-color: #fcfdfd;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #edf3f3;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #0a0b0c;
|
||||
background-color: #bcbebf;
|
||||
border-color: #a6a8a9; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #999b9c; }
|
||||
border-color: #a6a8a9;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #999b9c;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #0d6efd; }
|
||||
|
||||
background-color: #0d6efd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #0d6efd; }
|
||||
|
||||
background-color: #0d6efd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #6c757d; }
|
||||
|
||||
background-color: #6c757d;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #6c757d; }
|
||||
|
||||
background-color: #6c757d;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #198754; }
|
||||
|
||||
background-color: #198754;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #198754; }
|
||||
|
||||
background-color: #198754;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #000;
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #000;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #dc3545; }
|
||||
|
||||
background-color: #dc3545;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #dc3545; }
|
||||
|
||||
background-color: #dc3545;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #f8f9fa; }
|
||||
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #000;
|
||||
background-color: #f8f9fa; }
|
||||
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #212529; }
|
||||
|
||||
background-color: #212529;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #212529; }
|
||||
background-color: #212529;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #0dcaf0;
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #0dcaf0;
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #ffc107;
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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 {
|
||||
border-color: #ffc107;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #0dcaf0; }
|
||||
|
||||
border-color: #0dcaf0;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #ffc107; }
|
||||
|
||||
border-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
|
|
@ -1,287 +1,332 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid 1px solid none;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
background-color: #363636;
|
||||
box-shadow: none; }
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.callout-primary {
|
||||
border-left-color: #375a7f;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #444;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #00bc8c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #3498db;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #f39c12;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #e74c3c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #adb5bd;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #303030;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #111b26;
|
||||
background-color: #c3ced9;
|
||||
border-color: #afbdcc; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #9fb0c2; }
|
||||
border-color: #afbdcc;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #9fb0c2;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #141414;
|
||||
background-color: #c7c7c7;
|
||||
border-color: #b4b4b4; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #a7a7a7; }
|
||||
border-color: #b4b4b4;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #a7a7a7;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #00382a;
|
||||
background-color: #b3ebdd;
|
||||
border-color: #99e4d1; }
|
||||
.toast-success strong {
|
||||
border-top-color: #85dfc8; }
|
||||
border-color: #99e4d1;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #85dfc8;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #102e42;
|
||||
background-color: #c2e0f4;
|
||||
border-color: #aed6f1; }
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed; }
|
||||
border-color: #aed6f1;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #492f05;
|
||||
background-color: #fbe1b8;
|
||||
border-color: #fad7a0; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88; }
|
||||
border-color: #fad7a0;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #451712;
|
||||
background-color: #f8c9c5;
|
||||
border-color: #f5b7b1; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a; }
|
||||
border-color: #f5b7b1;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #343639;
|
||||
background-color: #e6e9eb;
|
||||
border-color: #dee1e5; }
|
||||
.toast-light strong {
|
||||
border-top-color: #d0d4da; }
|
||||
border-color: #dee1e5;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #d0d4da;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #0e0e0e;
|
||||
background-color: #c1c1c1;
|
||||
border-color: #acacac; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #9f9f9f; }
|
||||
border-color: #acacac;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #9f9f9f;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #375a7f; }
|
||||
|
||||
background-color: #375a7f;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #375a7f; }
|
||||
|
||||
background-color: #375a7f;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #444; }
|
||||
|
||||
background-color: #444;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #444; }
|
||||
|
||||
background-color: #444;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #00bc8c; }
|
||||
|
||||
background-color: #00bc8c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #00bc8c; }
|
||||
|
||||
background-color: #00bc8c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #fff;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #fff;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #adb5bd; }
|
||||
|
||||
background-color: #adb5bd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #fff;
|
||||
background-color: #adb5bd; }
|
||||
|
||||
background-color: #adb5bd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #303030; }
|
||||
|
||||
background-color: #303030;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #303030; }
|
||||
background-color: #303030;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #f39c12;
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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 {
|
||||
border-color: #f39c12;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #3498db; }
|
||||
|
||||
border-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #f39c12; }
|
||||
|
||||
border-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
|
@ -290,87 +335,111 @@ body {
|
|||
/* background by SVGBackgrounds.com */
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-blend-mode: soft-light; }
|
||||
background-blend-mode: soft-light;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background-color: #363636;
|
||||
border: 1px solid #454545;
|
||||
box-shadow: none; }
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.loading-overlay {
|
||||
background-color: #222;
|
||||
opacity: 0.65; }
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
/* Top navbar */
|
||||
.top-navbar {
|
||||
background-color: #375a7f; }
|
||||
background-color: #375a7f;
|
||||
}
|
||||
|
||||
.center-navbar nav.header-breadcrumb {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.top-navbar .header-menu > 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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .right-navbar .header-menu a.nav-link {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .left-navbar .navbar-brand img {
|
||||
filter: invert(1); }
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-color: #fff; }
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.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);
|
||||
background-color: #adb5bd; }
|
||||
background-color: #adb5bd;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
transition: width .08s linear;
|
||||
transition: width 0.08s linear;
|
||||
box-shadow: none;
|
||||
background-color: #444; }
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
.sidebar ~ main.content:after {
|
||||
background: #000; }
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.sidebar .sidebar-wrapper {
|
||||
border-right: 1px solid none; }
|
||||
border-right: 1px solid none;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.active {
|
||||
background-color: #595f64;
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
|
||||
background-color: #595f64;
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #60676c;
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar.expanded 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: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 {
|
||||
background-color: var(--cerebrate-color); }
|
||||
background-color: var(--cerebrate-color);
|
||||
}
|
||||
|
||||
.lock-sidebar > a.btn {
|
||||
background-color: unset; }
|
||||
background-color: unset;
|
||||
}
|
||||
|
|
|
@ -1,287 +1,332 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid #e9ecef;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
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 {
|
||||
border-left-color: #0d6efd;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #6c757d;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #198754;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #0dcaf0;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #ffc107;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #dc3545;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #f8f9fa;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #212529;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #04214c;
|
||||
background-color: #b6d4fe;
|
||||
border-color: #9ec5fe; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #85b6fe; }
|
||||
border-color: #9ec5fe;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #85b6fe;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #202326;
|
||||
background-color: #d3d6d8;
|
||||
border-color: #c4c8cb; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #b6bbbf; }
|
||||
border-color: #c4c8cb;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #b6bbbf;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #082919;
|
||||
background-color: #badbcc;
|
||||
border-color: #a3cfbb; }
|
||||
.toast-success strong {
|
||||
border-top-color: #92c6af; }
|
||||
border-color: #a3cfbb;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #92c6af;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #043d48;
|
||||
background-color: #b6effb;
|
||||
border-color: #9eeaf9; }
|
||||
.toast-info strong {
|
||||
border-top-color: #86e5f8; }
|
||||
border-color: #9eeaf9;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #86e5f8;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #4d3a02;
|
||||
background-color: #ffecb5;
|
||||
border-color: #ffe69c; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083; }
|
||||
border-color: #ffe69c;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #421015;
|
||||
background-color: #f5c2c7;
|
||||
border-color: #f1aeb5; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #ed98a1; }
|
||||
border-color: #f1aeb5;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #ed98a1;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #4a4b4b;
|
||||
background-color: #fdfdfe;
|
||||
border-color: #fcfdfd; }
|
||||
.toast-light strong {
|
||||
border-top-color: #edf3f3; }
|
||||
border-color: #fcfdfd;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #edf3f3;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #0a0b0c;
|
||||
background-color: #bcbebf;
|
||||
border-color: #a6a8a9; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #999b9c; }
|
||||
border-color: #a6a8a9;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #999b9c;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #0d6efd; }
|
||||
|
||||
background-color: #0d6efd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #0d6efd; }
|
||||
|
||||
background-color: #0d6efd;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #6c757d; }
|
||||
|
||||
background-color: #6c757d;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #6c757d; }
|
||||
|
||||
background-color: #6c757d;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #198754; }
|
||||
|
||||
background-color: #198754;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #198754; }
|
||||
|
||||
background-color: #198754;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #000;
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #000;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #dc3545; }
|
||||
|
||||
background-color: #dc3545;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #dc3545; }
|
||||
|
||||
background-color: #dc3545;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #f8f9fa; }
|
||||
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #000;
|
||||
background-color: #f8f9fa; }
|
||||
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #212529; }
|
||||
|
||||
background-color: #212529;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #212529; }
|
||||
background-color: #212529;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #0dcaf0;
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #0dcaf0;
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #ffc107;
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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 {
|
||||
border-color: #ffc107;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #0dcaf0; }
|
||||
|
||||
border-color: #0dcaf0;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #0dcaf0; }
|
||||
|
||||
background-color: #0dcaf0;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #ffc107; }
|
||||
|
||||
border-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
|
@ -290,87 +335,111 @@ body {
|
|||
/* background by SVGBackgrounds.com */
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-blend-mode: normal; }
|
||||
background-blend-mode: normal;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background-color: #fff;
|
||||
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 {
|
||||
background-color: #f8f9fa;
|
||||
opacity: 0.75; }
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
/* Top navbar */
|
||||
.top-navbar {
|
||||
background-color: #212529; }
|
||||
background-color: #212529;
|
||||
}
|
||||
|
||||
.center-navbar nav.header-breadcrumb {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.top-navbar .header-menu > 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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .right-navbar .header-menu a.nav-link {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .left-navbar .navbar-brand img {
|
||||
filter: invert(1); }
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-color: #fff; }
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.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);
|
||||
background-color: #f8f9fa; }
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
/* 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);
|
||||
background-color: #f8f9fa; }
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.sidebar ~ main.content:after {
|
||||
background: #000; }
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.sidebar .sidebar-wrapper {
|
||||
border-right: 1px solid #ddd; }
|
||||
border-right: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #000; }
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.active {
|
||||
background-color: #dbdbdb;
|
||||
color: #000; }
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
|
||||
background-color: #dbdbdb;
|
||||
color: #000; }
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #000; }
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.sidebar.expanded 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: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 {
|
||||
background-color: var(--cerebrate-color); }
|
||||
background-color: var(--cerebrate-color);
|
||||
}
|
||||
|
||||
.lock-sidebar > a.btn {
|
||||
background-color: #f8f9fa; }
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
|
|
@ -1,287 +1,332 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid #ecf0f1;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
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 {
|
||||
border-left-color: #2c3e50;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #95a5a6;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #18bc9c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #3498db;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #f39c12;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #e74c3c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #ecf0f1;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #7b8a8b;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #0d1318;
|
||||
background-color: #c0c5cb;
|
||||
border-color: #abb2b9; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #9da5ad; }
|
||||
border-color: #abb2b9;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #9da5ad;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #2d3232;
|
||||
background-color: #dfe4e4;
|
||||
border-color: #d5dbdb; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #c7cfcf; }
|
||||
border-color: #d5dbdb;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #c7cfcf;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #07382f;
|
||||
background-color: #baebe1;
|
||||
border-color: #a3e4d7; }
|
||||
.toast-success strong {
|
||||
border-top-color: #8fdece; }
|
||||
border-color: #a3e4d7;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #8fdece;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #102e42;
|
||||
background-color: #c2e0f4;
|
||||
border-color: #aed6f1; }
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed; }
|
||||
border-color: #aed6f1;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #492f05;
|
||||
background-color: #fbe1b8;
|
||||
border-color: #fad7a0; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88; }
|
||||
border-color: #fad7a0;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #451712;
|
||||
background-color: #f8c9c5;
|
||||
border-color: #f5b7b1; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a; }
|
||||
border-color: #f5b7b1;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #474848;
|
||||
background-color: #f9fbfb;
|
||||
border-color: #f7f9f9; }
|
||||
.toast-light strong {
|
||||
border-top-color: #e8eeee; }
|
||||
border-color: #f7f9f9;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #e8eeee;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #25292a;
|
||||
background-color: #d7dcdc;
|
||||
border-color: #cad0d1; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #bcc4c5; }
|
||||
border-color: #cad0d1;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #bcc4c5;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #2c3e50; }
|
||||
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #2c3e50; }
|
||||
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #95a5a6; }
|
||||
|
||||
background-color: #95a5a6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #95a5a6; }
|
||||
|
||||
background-color: #95a5a6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #18bc9c; }
|
||||
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #18bc9c; }
|
||||
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #fff;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #fff;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #ecf0f1; }
|
||||
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #000;
|
||||
background-color: #ecf0f1; }
|
||||
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #7b8a8b; }
|
||||
|
||||
background-color: #7b8a8b;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #7b8a8b; }
|
||||
background-color: #7b8a8b;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #f39c12;
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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 {
|
||||
border-color: #f39c12;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #3498db; }
|
||||
|
||||
border-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #f39c12; }
|
||||
|
||||
border-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
|
@ -290,87 +335,111 @@ body {
|
|||
/* background by SVGBackgrounds.com */
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-blend-mode: normal; }
|
||||
background-blend-mode: normal;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background-color: #fff;
|
||||
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 {
|
||||
background-color: #ecf0f1;
|
||||
opacity: 0.75; }
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
/* Top navbar */
|
||||
.top-navbar {
|
||||
background-color: #2c3e50; }
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
|
||||
.center-navbar nav.header-breadcrumb {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.top-navbar .header-menu > 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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .right-navbar .header-menu a.nav-link {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .left-navbar .navbar-brand img {
|
||||
filter: invert(1); }
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-color: #fff; }
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.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);
|
||||
background-color: #ecf0f1; }
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
transition: width .08s linear;
|
||||
transition: width 0.08s linear;
|
||||
box-shadow: none;
|
||||
background-color: #ecf0f1; }
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
|
||||
.sidebar ~ main.content:after {
|
||||
background: #000; }
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.sidebar .sidebar-wrapper {
|
||||
border-right: 1px solid none; }
|
||||
border-right: 1px solid none;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #000; }
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.active {
|
||||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
|
||||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar.expanded 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: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 {
|
||||
background-color: #18bc9c; }
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
|
||||
.lock-sidebar > a.btn {
|
||||
background-color: unset; }
|
||||
background-color: unset;
|
||||
}
|
||||
|
|
|
@ -1,287 +1,332 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid #ecf0f1;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
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 {
|
||||
border-left-color: #2c3e50;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #95a5a6;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #18bc9c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #3498db;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #f39c12;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #e74c3c;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #ecf0f1;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #7b8a8b;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #0d1318;
|
||||
background-color: #c0c5cb;
|
||||
border-color: #abb2b9; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #9da5ad; }
|
||||
border-color: #abb2b9;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #9da5ad;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #2d3232;
|
||||
background-color: #dfe4e4;
|
||||
border-color: #d5dbdb; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #c7cfcf; }
|
||||
border-color: #d5dbdb;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #c7cfcf;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #07382f;
|
||||
background-color: #baebe1;
|
||||
border-color: #a3e4d7; }
|
||||
.toast-success strong {
|
||||
border-top-color: #8fdece; }
|
||||
border-color: #a3e4d7;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #8fdece;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #102e42;
|
||||
background-color: #c2e0f4;
|
||||
border-color: #aed6f1; }
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed; }
|
||||
border-color: #aed6f1;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #98cbed;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #492f05;
|
||||
background-color: #fbe1b8;
|
||||
border-color: #fad7a0; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88; }
|
||||
border-color: #fad7a0;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #f9cd88;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #451712;
|
||||
background-color: #f8c9c5;
|
||||
border-color: #f5b7b1; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a; }
|
||||
border-color: #f5b7b1;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #f2a29a;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #474848;
|
||||
background-color: #f9fbfb;
|
||||
border-color: #f7f9f9; }
|
||||
.toast-light strong {
|
||||
border-top-color: #e8eeee; }
|
||||
border-color: #f7f9f9;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #e8eeee;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #25292a;
|
||||
background-color: #d7dcdc;
|
||||
border-color: #cad0d1; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #bcc4c5; }
|
||||
border-color: #cad0d1;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #bcc4c5;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #2c3e50; }
|
||||
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #2c3e50; }
|
||||
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #95a5a6; }
|
||||
|
||||
background-color: #95a5a6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #95a5a6; }
|
||||
|
||||
background-color: #95a5a6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #18bc9c; }
|
||||
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #18bc9c; }
|
||||
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #fff;
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #fff;
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #e74c3c; }
|
||||
|
||||
background-color: #e74c3c;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
background-color: #ecf0f1; }
|
||||
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #000;
|
||||
background-color: #ecf0f1; }
|
||||
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #7b8a8b; }
|
||||
|
||||
background-color: #7b8a8b;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #7b8a8b; }
|
||||
background-color: #7b8a8b;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #3498db;
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #f39c12;
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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 {
|
||||
border-color: #f39c12;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #3498db; }
|
||||
|
||||
border-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #3498db; }
|
||||
|
||||
background-color: #3498db;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #f39c12; }
|
||||
|
||||
border-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #f39c12; }
|
||||
|
||||
background-color: #f39c12;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
|
@ -290,87 +335,111 @@ body {
|
|||
/* background by SVGBackgrounds.com */
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
background-blend-mode: normal; }
|
||||
background-blend-mode: normal;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background-color: #fff;
|
||||
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 {
|
||||
background-color: #ecf0f1;
|
||||
opacity: 0.65; }
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
/* Top navbar */
|
||||
.top-navbar {
|
||||
background-color: #2c3e50; }
|
||||
background-color: #2c3e50;
|
||||
}
|
||||
|
||||
.center-navbar nav.header-breadcrumb {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.top-navbar .header-menu > 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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .right-navbar .header-menu a.nav-link {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .left-navbar .navbar-brand img {
|
||||
filter: invert(1); }
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-color: #fff; }
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.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);
|
||||
background-color: #ecf0f1; }
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
transition: width .08s linear;
|
||||
transition: width 0.08s linear;
|
||||
box-shadow: none;
|
||||
background-color: #ecf0f1; }
|
||||
background-color: #ecf0f1;
|
||||
}
|
||||
|
||||
.sidebar ~ main.content:after {
|
||||
background: #000; }
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.sidebar .sidebar-wrapper {
|
||||
border-right: 1px solid none; }
|
||||
border-right: 1px solid none;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #343a40; }
|
||||
color: #343a40;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.active {
|
||||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
|
||||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #18bc9c; }
|
||||
color: #18bc9c;
|
||||
}
|
||||
|
||||
.sidebar.expanded 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: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 {
|
||||
background-color: #18bc9c; }
|
||||
background-color: #18bc9c;
|
||||
}
|
||||
|
||||
.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
|
@ -1,368 +1,436 @@
|
|||
/* Callout */
|
||||
.callout {
|
||||
border: 1px solid #e9ecef;
|
||||
border-radius: .25rem;
|
||||
border-radius: 0.25rem;
|
||||
background-color: #363636;
|
||||
box-shadow: none; }
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.callout-primary {
|
||||
border-left-color: #6f42c1;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-secondary {
|
||||
border-left-color: #ea39b8;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-success {
|
||||
border-left-color: #3cf281;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-info {
|
||||
border-left-color: #1ba2f6;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-warning {
|
||||
border-left-color: #ffc107;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-danger {
|
||||
border-left-color: #e44c55;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-light {
|
||||
border-left-color: #44d9e8;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.callout-dark {
|
||||
border-left-color: #170229;
|
||||
border-left-width: .25rem;
|
||||
border-left-style: solid; }
|
||||
border-left-width: 0.25rem;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
/* Toasts */
|
||||
.toast {
|
||||
min-width: 250px; }
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.toast-primary {
|
||||
color: #21143a;
|
||||
background-color: #d4c6ec;
|
||||
border-color: #c5b3e6; }
|
||||
.toast-primary strong {
|
||||
border-top-color: #b6a0e0; }
|
||||
border-color: #c5b3e6;
|
||||
}
|
||||
.toast-primary strong {
|
||||
border-top-color: #b6a0e0;
|
||||
}
|
||||
|
||||
.toast-secondary {
|
||||
color: #461137;
|
||||
background-color: #f9c4ea;
|
||||
border-color: #f7b0e3; }
|
||||
.toast-secondary strong {
|
||||
border-top-color: #f599db; }
|
||||
border-color: #f7b0e3;
|
||||
}
|
||||
.toast-secondary strong {
|
||||
border-top-color: #f599db;
|
||||
}
|
||||
|
||||
.toast-success {
|
||||
color: #124927;
|
||||
background-color: #c5fbd9;
|
||||
border-color: #b1facd; }
|
||||
.toast-success strong {
|
||||
border-top-color: #99f8be; }
|
||||
border-color: #b1facd;
|
||||
}
|
||||
.toast-success strong {
|
||||
border-top-color: #99f8be;
|
||||
}
|
||||
|
||||
.toast-info {
|
||||
color: #08314a;
|
||||
background-color: #bbe3fc;
|
||||
border-color: #a4dafb; }
|
||||
.toast-info strong {
|
||||
border-top-color: #8cd0fa; }
|
||||
border-color: #a4dafb;
|
||||
}
|
||||
.toast-info strong {
|
||||
border-top-color: #8cd0fa;
|
||||
}
|
||||
|
||||
.toast-warning {
|
||||
color: #4d3a02;
|
||||
background-color: #ffecb5;
|
||||
border-color: #ffe69c; }
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083; }
|
||||
border-color: #ffe69c;
|
||||
}
|
||||
.toast-warning strong {
|
||||
border-top-color: #ffe083;
|
||||
}
|
||||
|
||||
.toast-danger {
|
||||
color: #44171a;
|
||||
background-color: #f7c9cc;
|
||||
border-color: #f4b7bb; }
|
||||
.toast-danger strong {
|
||||
border-top-color: #f1a1a6; }
|
||||
border-color: #f4b7bb;
|
||||
}
|
||||
.toast-danger strong {
|
||||
border-top-color: #f1a1a6;
|
||||
}
|
||||
|
||||
.toast-light {
|
||||
color: #144146;
|
||||
background-color: #c7f4f8;
|
||||
border-color: #b4f0f6; }
|
||||
.toast-light strong {
|
||||
border-top-color: #9debf3; }
|
||||
border-color: #b4f0f6;
|
||||
}
|
||||
.toast-light strong {
|
||||
border-top-color: #9debf3;
|
||||
}
|
||||
|
||||
.toast-dark {
|
||||
color: #07010c;
|
||||
background-color: #b9b3bf;
|
||||
border-color: #a29aa9; }
|
||||
.toast-dark strong {
|
||||
border-top-color: #958c9d; }
|
||||
border-color: #a29aa9;
|
||||
}
|
||||
.toast-dark strong {
|
||||
border-top-color: #958c9d;
|
||||
}
|
||||
|
||||
/* Dropdown-item */
|
||||
.dropdown-item.dropdown-item-primary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #6f42c1; }
|
||||
|
||||
background-color: #6f42c1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-primary:hover {
|
||||
color: #fff;
|
||||
background-color: #6f42c1; }
|
||||
|
||||
background-color: #6f42c1;
|
||||
}
|
||||
.dropdown-item.dropdown-item-secondary {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #ea39b8; }
|
||||
|
||||
background-color: #ea39b8;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #ea39b8; }
|
||||
|
||||
background-color: #ea39b8;
|
||||
}
|
||||
.dropdown-item.dropdown-item-success {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #3cf281; }
|
||||
|
||||
background-color: #3cf281;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-success:hover {
|
||||
color: #fff;
|
||||
background-color: #3cf281; }
|
||||
|
||||
background-color: #3cf281;
|
||||
}
|
||||
.dropdown-item.dropdown-item-info {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #1ba2f6; }
|
||||
|
||||
background-color: #1ba2f6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-info:hover {
|
||||
color: #fff;
|
||||
background-color: #1ba2f6; }
|
||||
|
||||
background-color: #1ba2f6;
|
||||
}
|
||||
.dropdown-item.dropdown-item-warning {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-warning:hover {
|
||||
color: #fff;
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.dropdown-item.dropdown-item-danger {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #e44c55; }
|
||||
|
||||
background-color: #e44c55;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-danger:hover {
|
||||
color: #fff;
|
||||
background-color: #e44c55; }
|
||||
|
||||
background-color: #e44c55;
|
||||
}
|
||||
.dropdown-item.dropdown-item-light {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #44d9e8; }
|
||||
|
||||
background-color: #44d9e8;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-light:hover {
|
||||
color: #fff;
|
||||
background-color: #44d9e8; }
|
||||
|
||||
background-color: #44d9e8;
|
||||
}
|
||||
.dropdown-item.dropdown-item-dark {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #170229; }
|
||||
|
||||
background-color: #170229;
|
||||
}
|
||||
.dropdown-item.dropdown-item-outline-dark:hover {
|
||||
color: #fff;
|
||||
background-color: #170229; }
|
||||
background-color: #170229;
|
||||
}
|
||||
|
||||
/* Progress Timeline */
|
||||
.progress-timeline {
|
||||
padding: 0.2em 0.2em 0.5em 0.2em; }
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0; }
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative; }
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px; }
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5; }
|
||||
padding: 0.2em 0.2em 0.5em 0.2em;
|
||||
}
|
||||
.progress-timeline ul {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
.progress-timeline li {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
}
|
||||
.progress-timeline li.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.progress-timeline .progress-line {
|
||||
height: 2px;
|
||||
}
|
||||
.progress-timeline .progress-line.progress-inactive {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Forms severity */
|
||||
.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"); }
|
||||
.form-control.is-invalid.info:focus {
|
||||
border-color: #1ba2f6;
|
||||
box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25); }
|
||||
|
||||
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 {
|
||||
border-color: #1ba2f6;
|
||||
box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25);
|
||||
}
|
||||
.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"); }
|
||||
.form-control.is-invalid.warning:focus {
|
||||
border-color: #ffc107;
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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 {
|
||||
border-color: #ffc107;
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.info {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.info:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(27, 162, 246, 0.25); }
|
||||
|
||||
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])[size="1"] .form-select.is-invalid.info:focus {
|
||||
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])[size="1"]
|
||||
.form-select.is-invalid.warning {
|
||||
.form-select.is-invalid:not([multiple])[size="1"] .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-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])[size="1"]
|
||||
.form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25); }
|
||||
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])[size="1"] .form-select.is-invalid.warning:focus {
|
||||
box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
|
||||
}
|
||||
|
||||
.form-check-input.is-invalid.info {
|
||||
border-color: #1ba2f6; }
|
||||
|
||||
border-color: #1ba2f6;
|
||||
}
|
||||
.form-check-input.is-invalid.info:checked {
|
||||
background-color: #1ba2f6; }
|
||||
|
||||
background-color: #1ba2f6;
|
||||
}
|
||||
.form-check-input.is-invalid.info ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 {
|
||||
border-color: #ffc107; }
|
||||
|
||||
border-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning:checked {
|
||||
background-color: #ffc107; }
|
||||
|
||||
background-color: #ffc107;
|
||||
}
|
||||
.form-check-input.is-invalid.warning ~ .form-check-label {
|
||||
color: unset; }
|
||||
|
||||
color: unset;
|
||||
}
|
||||
.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 */
|
||||
.mw-75 {
|
||||
max-width: 75% !important; }
|
||||
max-width: 75% !important;
|
||||
}
|
||||
|
||||
.mw-50 {
|
||||
max-width: 50% !important; }
|
||||
max-width: 50% !important;
|
||||
}
|
||||
|
||||
.mw-25 {
|
||||
max-width: 25% !important; }
|
||||
max-width: 25% !important;
|
||||
}
|
||||
|
||||
.mh-75 {
|
||||
max-height: 75% !important; }
|
||||
max-height: 75% !important;
|
||||
}
|
||||
|
||||
.mh-50 {
|
||||
max-height: 50% !important; }
|
||||
max-height: 50% !important;
|
||||
}
|
||||
|
||||
.mh-25 {
|
||||
max-height: 25% !important; }
|
||||
max-height: 25% !important;
|
||||
}
|
||||
|
||||
.p-abs-center-y {
|
||||
top: 50%;
|
||||
transform: translateY(-50%); }
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-x {
|
||||
left: 50%;
|
||||
transform: translateX(-50%); }
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.p-abs-center-both {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%); }
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
|
||||
/* Body */
|
||||
.panel {
|
||||
background-color: #363636;
|
||||
border: 1px solid #454545;
|
||||
box-shadow: none; }
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.loading-overlay {
|
||||
background-color: #170229;
|
||||
opacity: 0.65; }
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
/* Top navbar */
|
||||
.top-navbar {
|
||||
background-color: #6f42c1; }
|
||||
background-color: #6f42c1;
|
||||
}
|
||||
|
||||
.center-navbar nav.header-breadcrumb {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.top-navbar .header-menu > 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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .right-navbar .header-menu a.nav-link {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-navbar .left-navbar .navbar-brand img {
|
||||
filter: invert(1); }
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.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 {
|
||||
background-color: #fff; }
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.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);
|
||||
background-color: #44d9e8; }
|
||||
background-color: #44d9e8;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
transition: width .08s linear;
|
||||
transition: width 0.08s linear;
|
||||
box-shadow: none;
|
||||
background-color: #170229; }
|
||||
background-color: #170229;
|
||||
}
|
||||
|
||||
.sidebar ~ main.content:after {
|
||||
background: #000; }
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.sidebar .sidebar-wrapper {
|
||||
border-right: 1px solid none; }
|
||||
border-right: 1px solid none;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #fff; }
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.active {
|
||||
background-color: #343a40;
|
||||
color: #3cf281; }
|
||||
color: #3cf281;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child {
|
||||
background-color: #343a40;
|
||||
color: #3cf281; }
|
||||
color: #3cf281;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #495057;
|
||||
color: #3cf281; }
|
||||
color: #3cf281;
|
||||
}
|
||||
|
||||
.sidebar.expanded 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: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 {
|
||||
background-color: #6f42c1; }
|
||||
background-color: #6f42c1;
|
||||
}
|
||||
|
||||
.lock-sidebar > a.btn {
|
||||
background-color: unset; }
|
||||
background-color: unset;
|
||||
}
|
||||
|
|
|
@ -279,10 +279,12 @@ $(document).ready(() => {
|
|||
overloadBSDropdown();
|
||||
addSupportOfNestedDropdown();
|
||||
|
||||
const debouncedGlobalSearch = debounce(performGlobalSearch, 400)
|
||||
$('#globalSearch')
|
||||
.keydown(debouncedGlobalSearch)
|
||||
.keydown(focusSearchResults);
|
||||
if (window.debounce) {
|
||||
const debouncedGlobalSearch = debounce(performGlobalSearch, 400)
|
||||
$('#globalSearch')
|
||||
.keydown(debouncedGlobalSearch)
|
||||
.keydown(focusSearchResults);
|
||||
}
|
||||
|
||||
$('.lock-sidebar a.btn-lock-sidebar').click(() => {
|
||||
const $sidebar = $('.sidebar')
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -5,13 +5,14 @@
|
|||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"autobuild": "node-sass --watch scss -o ../css/themes",
|
||||
"build": "node-sass scss -o ../css/themes"
|
||||
"autobuild": "sass --no-source-map --watch scss:../css/themes",
|
||||
"build": "sass --no-source-map scss:../css/themes",
|
||||
"build-with-map": "sass scss:../css/themes"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"bootstrap": "^5.1.1",
|
||||
"node-sass": "^6.0.1"
|
||||
"sass": "^1.45.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue