2018-07-10 20:37:13 +02:00
|
|
|
|
/* Main style customizations */
|
|
|
|
|
body {
|
2017-11-05 11:02:00 +01:00
|
|
|
|
font-family: 'Noto Sans', sans-serif;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.content-text {
|
|
|
|
|
font-size: 0.85rem;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.responsive-button {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
white-space: normal;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.timeago-contextual {
|
|
|
|
|
font-style: italic;
|
|
|
|
|
font-size: 0.8em;
|
2018-05-12 14:25:21 +02:00
|
|
|
|
}
|
2017-04-16 23:11:03 +02:00
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
a.discrete-link {
|
|
|
|
|
color: inherit !important;
|
|
|
|
|
transition: all 0.3s !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
a.discrete-link:hover {
|
|
|
|
|
color: #337ab7 !important;
|
|
|
|
|
text-decoration: none !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
a.discrete-link:focus {
|
|
|
|
|
color: #ab2230 !important;
|
|
|
|
|
text-decoration: none !important;
|
2018-04-15 14:38:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.card {
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
border-color: #d6d6d6;
|
|
|
|
|
border-radius: 0;
|
2018-04-15 14:38:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.card-header {
|
|
|
|
|
background-color: #e5e5e5;
|
2018-04-12 21:13:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-15 13:39:48 +02:00
|
|
|
|
.card-body {
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-11 19:43:05 +02:00
|
|
|
|
.content-text .invalid-feedback {
|
|
|
|
|
font-size: 95%;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-15 09:56:10 +02:00
|
|
|
|
.fullscreen {
|
2019-09-26 23:33:08 -07:00
|
|
|
|
z-index: 8888;
|
2018-09-30 09:41:22 +02:00
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
overflow: auto;
|
2018-07-15 09:56:10 +02:00
|
|
|
|
}
|
2019-09-26 23:33:08 -07:00
|
|
|
|
|
|
|
|
|
/* Fixes smooth scrolling on iOS */
|
2019-09-27 17:32:52 +02:00
|
|
|
|
#sidebarResponsive,
|
|
|
|
|
.fullscreen {
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2019-09-26 23:33:08 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fullscreen-card .card-header {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
z-index: 9999;
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2019-09-26 23:33:08 -07:00
|
|
|
|
}
|
2019-09-24 08:35:30 +02:00
|
|
|
|
|
|
|
|
|
body.fullscreen-card {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2018-07-15 09:56:10 +02:00
|
|
|
|
|
2019-09-24 10:28:42 +02:00
|
|
|
|
.fullscreen-card .hide-on-fullscreen-card {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-11 14:29:08 +02:00
|
|
|
|
.form-check-input.is-valid ~ .form-check-label,
|
|
|
|
|
.was-validated .form-check-input:valid ~ .form-check-label {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
color: inherit;
|
2018-08-11 14:29:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-23 19:26:13 +02:00
|
|
|
|
.text-strike-through {
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.disabled {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-17 12:57:35 +01:00
|
|
|
|
.embedded .hide-when-embedded {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
body.embedded.fixed-nav {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
.embedded .content-wrapper {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-17 14:50:52 +01:00
|
|
|
|
iframe {
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-08 12:04:31 +02:00
|
|
|
|
/* Hide the default up/down arrow buttons for number inputs because we use our own buttons in numberpicker */
|
|
|
|
|
input[type='number'] {
|
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
|
}
|
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
/* Navigation style customizations */
|
|
|
|
|
#mainNav {
|
|
|
|
|
background-color: #e5e5e5 !important;
|
|
|
|
|
border-bottom: 2px solid !important;
|
|
|
|
|
border-color: #d6d6d6 !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-sidenav {
|
2018-10-20 11:25:22 +02:00
|
|
|
|
overflow-x: hidden;
|
2018-11-21 21:36:22 +01:00
|
|
|
|
overflow-y: overlay;
|
2018-07-14 10:28:33 +02:00
|
|
|
|
border-top: 2px solid !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-sidenav,
|
|
|
|
|
.sidenav-second-level {
|
|
|
|
|
background-color: #e5e5e5 !important;
|
|
|
|
|
border-right: 2px solid !important;
|
|
|
|
|
border-color: #d6d6d6 !important;
|
2018-05-12 14:25:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-nav .dropdown-menu {
|
|
|
|
|
background-color: #e5e5e5 !important;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 0;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-nav .dropdown-divider {
|
|
|
|
|
border-top: 2px solid !important;
|
|
|
|
|
border-color: #d6d6d6 !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.sidenav-toggler {
|
|
|
|
|
background-color: #d6d6d6 !important;
|
|
|
|
|
border-right: 2px solid !important;
|
|
|
|
|
border-color: #d6d6d6 !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-sidenav > li,
|
|
|
|
|
.sidenav-second-level > li {
|
|
|
|
|
transition: all 0.3s !important;
|
2018-05-12 16:35:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-sidenav > li:hover,
|
|
|
|
|
.sidenav-second-level > li:hover,
|
|
|
|
|
.navbar-nav .dropdown-item:hover {
|
|
|
|
|
box-shadow: inset 5px 0 0 #337ab7 !important;
|
|
|
|
|
background-color: #d6d6d6 !important;
|
2018-05-12 16:38:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.navbar-sidenav > li > a:focus,
|
|
|
|
|
.sidenav-second-level > li > a:focus,
|
|
|
|
|
.navbar-nav .dropdown-item:focus {
|
|
|
|
|
box-shadow: inset 5px 0 0 #ab2230 !important;
|
|
|
|
|
background-color: #d6d6d6 !important;
|
2017-04-15 23:16:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.active-page {
|
|
|
|
|
box-shadow: inset 5px 0 0 #ab2230 !important;
|
|
|
|
|
background-color: #d6d6d6 !important;
|
2017-11-05 11:02:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 19:23:48 +01:00
|
|
|
|
.navbar-brand {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-24 19:40:50 +01:00
|
|
|
|
.cursor-link {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cursor-busy {
|
|
|
|
|
cursor: wait;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-22 10:11:58 +02:00
|
|
|
|
.expandable-text .collapse, .module .collapsing {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
height: 2.4rem;
|
2019-04-22 10:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expandable-text .collapse {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
2019-04-22 10:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expandable-text .collapse:before {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2019-04-22 10:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expandable-text .collapse.show {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
height: auto;
|
2019-04-22 10:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.expandable-text .collapse.show:before {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
display: none;
|
2019-04-22 10:11:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-05 20:15:29 +01:00
|
|
|
|
/* Third party component customizations - Bootstrap */
|
|
|
|
|
|
|
|
|
|
/* Hide the form validation feedback icons introduced in Bootstrap 4.2.0 - a colored border is enough */
|
|
|
|
|
.form-control.is-invalid,
|
|
|
|
|
.was-validated .form-control:invalid,
|
|
|
|
|
.form-control.is-valid,
|
|
|
|
|
.was-validated .form-control:valid {
|
|
|
|
|
background-size: 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 18:50:46 +02:00
|
|
|
|
/* There is a little too much padding on form inputs */
|
|
|
|
|
.form-control {
|
|
|
|
|
padding-right: 0.75rem !important;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-06 19:38:47 +02:00
|
|
|
|
.btn-group-xs > .btn, .btn-xs {
|
|
|
|
|
padding : 0.25rem 0.4rem;
|
|
|
|
|
font-size : 0.875rem;
|
|
|
|
|
line-height : 0.5;
|
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-21 08:38:28 +02:00
|
|
|
|
.text-larger {
|
|
|
|
|
font-size: 125%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 17:03:50 +02:00
|
|
|
|
.input-group > .form-control:focus {
|
|
|
|
|
z-index: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 17:32:52 +02:00
|
|
|
|
.list-group {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
/* Third party component customizations - DataTables */
|
2019-05-06 19:38:47 +02:00
|
|
|
|
.dataTable td {
|
2019-03-05 20:15:29 +01:00
|
|
|
|
vertical-align: middle !important;
|
2017-11-05 11:02:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-15 23:16:20 +02:00
|
|
|
|
.table td.fit-content,
|
|
|
|
|
.table th.fit-content {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 1%;
|
|
|
|
|
}
|
2017-04-16 23:11:03 +02:00
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.dataTables_filter,
|
|
|
|
|
.dataTables_info {
|
|
|
|
|
display: none;
|
2017-04-21 13:21:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-06 14:41:43 +02:00
|
|
|
|
.dataTables_scrollBody {
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
/* Third party component customizations - toastr */
|
2018-04-19 21:12:01 +02:00
|
|
|
|
#toast-container > div {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-12 14:25:21 +02:00
|
|
|
|
.toast-success {
|
2018-07-10 20:37:13 +02:00
|
|
|
|
background-color: #28a745;
|
2018-04-19 21:12:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
.toast-error {
|
|
|
|
|
background-color: #dc3545;
|
2018-04-19 21:12:01 +02:00
|
|
|
|
}
|
2018-07-08 16:54:37 +02:00
|
|
|
|
|
2018-07-10 20:37:13 +02:00
|
|
|
|
#toast-container > div {
|
|
|
|
|
box-shadow: none;
|
2018-07-08 16:54:37 +02:00
|
|
|
|
}
|
2018-07-11 19:43:05 +02:00
|
|
|
|
|
2019-09-14 17:34:36 +02:00
|
|
|
|
/* Third party component customizations - Font Awesome */
|
|
|
|
|
.fa-custom-sigma-sign:before {
|
|
|
|
|
content: "\03a3";
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-11 19:43:05 +02:00
|
|
|
|
/* Third party component customizations - SB Admin 2 */
|
|
|
|
|
#mainNav .navbar-collapse .navbar-nav > .nav-item.dropdown > .nav-link:after,
|
|
|
|
|
#mainNav .navbar-collapse .navbar-sidenav .nav-link-collapse:after {
|
2019-09-27 17:32:52 +02:00
|
|
|
|
font-family: 'Font Awesome 5 Free';
|
|
|
|
|
font-weight: 900;
|
2018-07-11 19:43:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width:992px) {
|
|
|
|
|
#mainNav .navbar-collapse .navbar-sidenav > .nav-item > .nav-link {
|
|
|
|
|
padding: 0.8em;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-13 21:37:49 +02:00
|
|
|
|
|
2018-11-18 14:19:50 +01:00
|
|
|
|
html {
|
|
|
|
|
min-height: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-23 20:19:53 +02:00
|
|
|
|
.dropdown-toggle::after {
|
|
|
|
|
margin-left: -0.15em !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mainNav .navbar-collapse .navbar-sidenav > .nav-item > .nav-link {
|
|
|
|
|
padding-right: 1.25em !important;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-13 21:37:49 +02:00
|
|
|
|
/* Third party component customizations - Tempus Dominus */
|
2019-07-07 10:10:20 +02:00
|
|
|
|
.bootstrap-datetimepicker-widget.dropdown-menu {
|
2018-07-13 21:37:49 +02:00
|
|
|
|
width: auto !important;
|
|
|
|
|
}
|
2018-07-14 11:08:10 +02:00
|
|
|
|
|
2018-07-22 09:33:01 +02:00
|
|
|
|
/* Third party component customizations - Bootstrap Combobox */
|
|
|
|
|
.typeahead .active {
|
|
|
|
|
background-color: #e5e5e5;
|
|
|
|
|
}
|
2018-09-08 08:49:09 +02:00
|
|
|
|
|
|
|
|
|
/* Third party component customizations - Popper.js */
|
|
|
|
|
.tooltip {
|
2018-09-25 16:24:43 +02:00
|
|
|
|
pointer-events: none;
|
2018-09-08 08:49:09 +02:00
|
|
|
|
}
|
2019-09-19 12:48:02 +02:00
|
|
|
|
|
|
|
|
|
/* Third party component customizations - QuaggaJS */
|
|
|
|
|
canvas.drawing,
|
|
|
|
|
canvas.drawingBuffer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|