2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
*:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'OpenSansRegular';
|
|
|
|
src: url('../fonts/opensans-regular-webfont.eot');
|
|
|
|
src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans-regular-webfont.woff') format('woff'), url('../fonts/opensans-regular-webfont.ttf') format('truetype'), url('../fonts/opensans-regular-webfont.svg#OpenSansRegular') format('svg');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
#progress {
|
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#progress .progress-bar {
|
|
|
|
background-image: url(../img/progress.gif);
|
|
|
|
}
|
|
|
|
|
|
|
|
#progress .progress-bar span {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 47%;
|
|
|
|
color: #a20;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:16:55 +02:00
|
|
|
input[type=file] {
|
2019-05-29 05:19:15 +02:00
|
|
|
height: initial;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
#datetime {
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #aaa;
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-menu {
|
2017-11-13 11:53:37 +01:00
|
|
|
position: fixed;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete {
|
2018-02-21 17:47:43 +01:00
|
|
|
z-index: 10000;
|
2017-08-04 16:28:16 +02:00
|
|
|
min-width: 160px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 2px;
|
|
|
|
list-style: none;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete-category {
|
|
|
|
font-size: 150%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete-scrollable {
|
|
|
|
max-height: 80vh;
|
|
|
|
width: 600px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.square {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 20px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a:hover,
|
|
|
|
.logo:hover {
|
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-padding {
|
|
|
|
padding: 0 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-center {
|
|
|
|
width: 600px;
|
|
|
|
margin: 7% auto
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-center-large {
|
|
|
|
width: 850px;
|
|
|
|
margin: 7% auto
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-center .box-body,
|
|
|
|
.box-center-large .box-body {
|
|
|
|
padding: 20px;
|
|
|
|
border-top: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
.li-widget a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main_loading {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #555;
|
|
|
|
z-index: 9999;
|
|
|
|
text-align: center;
|
|
|
|
opacity: 0.9;
|
|
|
|
-moz-opacity: 0.9;
|
|
|
|
filter: alpha(opacity=90);
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
#main_loading > div {
|
2017-08-04 16:28:16 +02:00
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
#main_loading > div > i {
|
2017-08-04 16:28:16 +02:00
|
|
|
font-size: 300px;
|
|
|
|
margin-top: -150px;
|
|
|
|
color: #e24e1e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mini-loader {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 9000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-05-11 05:35:00 +02:00
|
|
|
background: rgba(0, 0, 0, 0.15);
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
#mini-loader > div {
|
2017-08-04 16:28:16 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
margin-top: -50px;
|
|
|
|
margin-left: -50px;
|
|
|
|
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
|
|
|
}
|
|
|
|
|
2017-08-31 19:06:23 +02:00
|
|
|
#tiny-loader {
|
2017-09-01 13:08:43 +02:00
|
|
|
position: fixed;
|
2017-08-31 19:06:23 +02:00
|
|
|
z-index: 9000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-09-01 13:08:43 +02:00
|
|
|
top: 50%;
|
2017-08-31 19:06:23 +02:00
|
|
|
left: 50%;
|
|
|
|
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
|
|
|
}
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
body .header .logo {
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-github {
|
2019-05-11 05:35:00 +02:00
|
|
|
color: #ffffff !important;
|
|
|
|
background-color: #444444 !important;
|
|
|
|
border-color: rgba(0, 0, 0, 0.2) !important;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2019-07-29 13:16:55 +02:00
|
|
|
.navbar-custom-menu > ul > li > a:hover,
|
|
|
|
.navbar-custom-menu > ul > li > a:focus,
|
|
|
|
.navbar-custom-menu > ul > li > a:active {
|
2019-05-11 05:35:00 +02:00
|
|
|
filter: brightness(75%);
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-github:active,
|
|
|
|
.btn-github.active,
|
|
|
|
.open .dropdown-toggle.btn-github {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-github.disabled,
|
|
|
|
.btn-github[disabled],
|
|
|
|
fieldset[disabled] .btn-github,
|
|
|
|
.btn-github.disabled:hover,
|
|
|
|
.btn-github[disabled]:hover,
|
|
|
|
fieldset[disabled] .btn-github:hover,
|
|
|
|
.btn-github.disabled:focus,
|
|
|
|
.btn-github[disabled]:focus,
|
|
|
|
fieldset[disabled] .btn-github:focus,
|
|
|
|
.btn-github.disabled:active,
|
|
|
|
.btn-github[disabled]:active,
|
|
|
|
fieldset[disabled] .btn-github:active,
|
|
|
|
.btn-github.disabled.active,
|
|
|
|
.btn-github[disabled].active,
|
|
|
|
fieldset[disabled] .btn-github.active {
|
|
|
|
background-color: #444444;
|
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-github .badge {
|
|
|
|
color: #444444;
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.form-control {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading.mini {
|
|
|
|
padding: 5px 8px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.dropdown.col-md-3 > .dropdown-menu {
|
2017-08-04 16:28:16 +02:00
|
|
|
width: 91.5%;
|
|
|
|
left: 15px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-addon {
|
|
|
|
padding: 0px 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.colorpicker {
|
2017-11-13 11:53:37 +01:00
|
|
|
margin-top: 0;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2018-02-22 10:32:51 +01:00
|
|
|
#pulsanti.affix {
|
|
|
|
top: 0;
|
|
|
|
padding: 10px 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 800;
|
2018-03-22 19:11:53 +01:00
|
|
|
background: #fff;
|
|
|
|
border-bottom: 3px solid #ddd;
|
2018-02-22 10:32:51 +01:00
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
/* Aggiustamenti per i widget */
|
|
|
|
|
|
|
|
.widget li {
|
2017-11-13 11:53:37 +01:00
|
|
|
margin-left: 0;
|
2017-08-04 16:28:16 +02:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.bordered {
|
|
|
|
border: 6px dashed #aaa;
|
|
|
|
margin: 10px;
|
|
|
|
min-height: 200px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
padding-right: 5px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2018-12-19 23:08:54 +01:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.close:focus,
|
|
|
|
.close:hover {
|
2018-12-19 23:08:54 +01:00
|
|
|
opacity: 0.8;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.li-widget button.close:hover,
|
|
|
|
.li-widget button.close:focus {
|
2018-12-29 05:12:07 +01:00
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.li-widget button.close {
|
|
|
|
padding-right: 5px;
|
2018-12-29 05:12:07 +01:00
|
|
|
opacity: 0.1;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
/* Tooltip dark */
|
|
|
|
|
|
|
|
.ui-tooltip {
|
2017-11-13 11:53:37 +01:00
|
|
|
background: #222;
|
|
|
|
color: white;
|
|
|
|
border: 0;
|
|
|
|
font-size: 11px;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs.pull-right > li > a.back-btn {
|
2017-08-04 16:28:16 +02:00
|
|
|
font-size: 12px;
|
2019-05-23 16:15:46 +02:00
|
|
|
color: #FFFFFF;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
|
|
|
|
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
|
|
|
|
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
|
2019-05-11 05:35:00 +02:00
|
|
|
white-space: normal;
|
|
|
|
}
|
2019-05-10 06:32:06 +02:00
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs.pull-right > li > a.back-btn:hover {
|
2017-08-04 16:28:16 +02:00
|
|
|
cursor: pointer;
|
|
|
|
color: #72AFD2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-searching {
|
|
|
|
background: #FFBF91;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deleteicon:hover {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deleteicon {
|
|
|
|
color: gray;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: -30px;
|
|
|
|
bottom: 7px;
|
|
|
|
right: 17px;
|
|
|
|
float: right;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-addon {
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-box-icon i {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress-description,
|
|
|
|
.info-box-text {
|
|
|
|
white-space: normal;
|
|
|
|
overflow: auto;
|
2018-07-14 10:59:14 +02:00
|
|
|
font-size: 12px;
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.colorpicker,
|
|
|
|
.colorpicker * {
|
|
|
|
z-index: 9999
|
|
|
|
}
|
|
|
|
|
|
|
|
.signature-pad {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 10px;
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signature-pad:before,
|
|
|
|
.signature-pad:after {
|
|
|
|
content: "";
|
|
|
|
width: 40%;
|
|
|
|
height: 10px;
|
|
|
|
left: 20px;
|
|
|
|
bottom: 10px;
|
|
|
|
background: transparent;
|
|
|
|
-webkit-transform: skew(-3deg) rotate(-3deg);
|
|
|
|
-moz-transform: skew(-3deg) rotate(-3deg);
|
|
|
|
-ms-transform: skew(-3deg) rotate(-3deg);
|
|
|
|
-o-transform: skew(-3deg) rotate(-3deg);
|
|
|
|
transform: skew(-3deg) rotate(-3deg);
|
|
|
|
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.signature-pad:after {
|
|
|
|
left: auto;
|
|
|
|
right: 20px;
|
|
|
|
-webkit-transform: skew(3deg) rotate(3deg);
|
|
|
|
-moz-transform: skew(3deg) rotate(3deg);
|
|
|
|
-ms-transform: skew(3deg) rotate(3deg);
|
|
|
|
-o-transform: skew(3deg) rotate(3deg);
|
|
|
|
transform: skew(3deg) rotate(3deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#canvas {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-height: 202px;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.sidebar-menu li > a > .pull-right-container {
|
2017-08-04 16:28:16 +02:00
|
|
|
position: absolute;
|
|
|
|
padding: 12px;
|
|
|
|
right: 10px;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -19px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-form {
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-form input[type="text"],
|
|
|
|
.sidebar-form .btn {
|
|
|
|
border: 1px;
|
|
|
|
height: 35px;
|
|
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
|
|
-o-transition: all 0.3s ease-in-out;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-form input[type="text"] {
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-form .btn {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swal2-buttonswrapper .btn {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
/* Personalizzazione del plugin Select2 */
|
|
|
|
|
|
|
|
.select2-search,
|
|
|
|
.select2-search__field {
|
2018-02-21 17:47:43 +01:00
|
|
|
width: 100% !important
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.select2-results__option[aria-selected=true] {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
|
|
|
|
margin: 2px 0 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-addon.no-padding {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.input-group-addon.no-padding > * {
|
2017-08-04 16:28:16 +02:00
|
|
|
border-radius: 0px;
|
|
|
|
}
|
2017-08-30 11:50:46 +02:00
|
|
|
|
2017-11-13 11:53:37 +01:00
|
|
|
div.DTS tbody td,
|
|
|
|
div.DTS tbody th {
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.min-width {
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.small-width {
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pac-container {
|
|
|
|
z-index: 1100;
|
|
|
|
}
|
|
|
|
|
2018-01-13 14:28:23 +01:00
|
|
|
.form-control#blob {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2019-05-11 05:35:00 +02:00
|
|
|
#main_loading > div > i {
|
2018-01-13 14:28:23 +01:00
|
|
|
font-size: 160px;
|
|
|
|
margin-top: -80px;
|
2017-08-30 11:50:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-04 12:32:37 +02:00
|
|
|
@media screen and (max-width: 767px) {
|
2019-07-29 13:16:55 +02:00
|
|
|
.navbar-left {
|
2019-05-11 05:35:00 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-13 11:53:37 +01:00
|
|
|
.box-center,
|
|
|
|
.box-center-large {
|
|
|
|
width: 90%;
|
|
|
|
margin-top: 20px
|
2017-08-30 11:50:46 +02:00
|
|
|
}
|
2019-05-11 05:35:00 +02:00
|
|
|
|
2018-07-14 10:59:14 +02:00
|
|
|
.main-header .logo {
|
2018-01-13 14:28:23 +01:00
|
|
|
display: none;
|
2017-11-13 11:53:37 +01:00
|
|
|
}
|
2019-05-11 05:35:00 +02:00
|
|
|
|
2018-01-13 14:28:23 +01:00
|
|
|
/*
|
|
|
|
.content-wrapper,
|
|
|
|
.right-side,
|
|
|
|
.left-side,
|
|
|
|
.main-sidebar {
|
|
|
|
padding-top: 50px;
|
|
|
|
}*/
|
2017-09-01 13:08:43 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 16:07:27 +01:00
|
|
|
@media screen and (min-width: 768px) and (max-width: 1024px) {
|
2017-11-13 11:53:37 +01:00
|
|
|
.signature-pad {
|
|
|
|
margin: 10%;
|
|
|
|
}
|
2017-09-01 13:08:43 +02:00
|
|
|
}
|
2017-09-01 18:13:25 +02:00
|
|
|
|
2018-01-13 14:28:23 +01:00
|
|
|
@media screen and (max-width: 992px) {
|
2019-05-11 05:35:00 +02:00
|
|
|
.table-bordered > thead > tr > th,
|
|
|
|
.table-bordered > tbody > tr > th,
|
|
|
|
.table-bordered > tfoot > tr > th,
|
|
|
|
.table-bordered > thead > tr > td,
|
|
|
|
.table-bordered > tbody > tr > td,
|
|
|
|
.table-bordered > tfoot > tr > td {
|
2017-11-13 11:53:37 +01:00
|
|
|
word-break: break-all;
|
|
|
|
}
|
2017-09-11 17:49:03 +02:00
|
|
|
}
|
2017-09-18 15:57:37 +02:00
|
|
|
|
2018-01-13 14:28:23 +01:00
|
|
|
@media screen and (max-width: 1024px) {
|
2017-11-13 11:53:37 +01:00
|
|
|
.push {
|
|
|
|
position: static;
|
|
|
|
}
|
2019-05-11 05:35:00 +02:00
|
|
|
|
2018-01-13 14:28:23 +01:00
|
|
|
.signature-pad {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
min-width: 250px;
|
|
|
|
min-height: 140px;
|
|
|
|
margin: 5%;
|
|
|
|
}
|
2018-03-22 17:20:33 +01:00
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
|
|
|
.callout a {
|
|
|
|
text-decoration: none;
|
2018-03-22 19:11:53 +01:00
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
|
|
|
.dropdown-menu {
|
2018-04-23 23:15:56 +02:00
|
|
|
min-width: 130px;
|
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.img-circle.square {
|
|
|
|
box-shadow: 0px 0px 1px 1px lightgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-dropdown {
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.after.input-group-addon .select2-selection,
|
|
|
|
.after.input-group-addon {
|
|
|
|
border-radius: 0px 4px 4px 0px;
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.before.input-group-addon .select2-selection,
|
|
|
|
.before.input-group-addon {
|
|
|
|
border-radius: 4px 0px 0px 4px;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide-it-off-screen {
|
|
|
|
position: absolute;
|
|
|
|
left: -10000px;
|
|
|
|
top: -10000px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-info ul > li > :last-child {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
-ms-word-break: break-all;
|
|
|
|
word-break: break-all;
|
|
|
|
word-break: break-word;
|
|
|
|
-ms-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.request .morelink {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.component-loader {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 20;
|
|
|
|
opacity: 0.5;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.component-loader > div {
|
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group-flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group-flex .btn {
|
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1140px) {
|
|
|
|
.modal-lg {
|
|
|
|
width: 60vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Interventi da pianificare in Dashboard */
|
|
|
|
|
|
|
|
#external-events .fc-event {
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fc-event-primary {
|
|
|
|
background-color: #3a87ad;
|
|
|
|
border: 1px solid #3a87ad;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fc-event-danger {
|
|
|
|
background-color: #dd4b46;
|
|
|
|
border: 1px solid #dd4b46;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Fix per tabs editor */
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs > li {
|
2018-07-14 10:59:14 +02:00
|
|
|
border-top: 3px solid #ddd;
|
2018-03-28 18:40:10 +02:00
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
|
2018-07-14 10:59:14 +02:00
|
|
|
border-right-color: #f4f4f4;
|
|
|
|
border-right-width: 1px;
|
|
|
|
border-left-width: 0px;
|
2018-03-28 18:40:10 +02:00
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs > li.header {
|
2018-07-14 10:59:14 +02:00
|
|
|
padding: 0px;
|
2018-03-28 18:40:10 +02:00
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.nav-tabs-custom > .nav-tabs > li {
|
2018-07-14 10:59:14 +02:00
|
|
|
margin-bottom: -1px;
|
|
|
|
margin-right: 0px;
|
2018-07-04 10:18:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete {
|
|
|
|
background: #f6f6f6;
|
|
|
|
border-color: #ccc;
|
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
2018-07-14 10:59:14 +02:00
|
|
|
.parsley-errors-list {
|
2018-07-04 10:18:33 +02:00
|
|
|
color: red;
|
|
|
|
}
|
2018-07-14 10:59:14 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2018-07-14 10:59:14 +02:00
|
|
|
/** TIMELINE */
|
|
|
|
|
|
|
|
.timeline {
|
|
|
|
list-style: none;
|
|
|
|
padding: 20px 0 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline:before {
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
content: " ";
|
|
|
|
width: 3px;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -4.5px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li {
|
2018-07-14 10:59:14 +02:00
|
|
|
margin-bottom: 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li:before,
|
|
|
|
.timeline > li:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
content: " ";
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li:before,
|
|
|
|
.timeline > li:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
content: " ";
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li > .timeline-panel {
|
2018-07-14 10:59:14 +02:00
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
border: 1px solid #d4d4d4;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 20px;
|
|
|
|
position: relative;
|
|
|
|
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
|
|
|
|
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li.timeline-inverted + li:not(.timeline-inverted),
|
|
|
|
.timeline > li:not(.timeline-inverted) + li.timeline-inverted {
|
2018-07-14 10:59:14 +02:00
|
|
|
margin-top: -60px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li:not(.timeline-inverted) {
|
2018-07-14 10:59:14 +02:00
|
|
|
padding-right: 90px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li.timeline-inverted {
|
2018-07-14 10:59:14 +02:00
|
|
|
padding-left: 90px;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li > .timeline-panel:before {
|
2018-07-14 10:59:14 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 26px;
|
|
|
|
right: -15px;
|
|
|
|
display: inline-block;
|
|
|
|
border-top: 15px solid transparent;
|
|
|
|
border-left: 15px solid #ccc;
|
|
|
|
border-right: 0 solid #ccc;
|
|
|
|
border-bottom: 15px solid transparent;
|
|
|
|
content: " ";
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li > .timeline-panel:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 27px;
|
|
|
|
right: -14px;
|
|
|
|
display: inline-block;
|
|
|
|
border-top: 14px solid transparent;
|
|
|
|
border-left: 14px solid #fff;
|
|
|
|
border-right: 0 solid #fff;
|
|
|
|
border-bottom: 14px solid transparent;
|
|
|
|
content: " ";
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li > .timeline-badge {
|
2018-07-14 10:59:14 +02:00
|
|
|
color: #fff;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
line-height: 50px;
|
|
|
|
font-size: 1.4em;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 16px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -25px;
|
|
|
|
background-color: #999999;
|
|
|
|
z-index: 100;
|
|
|
|
border-top-right-radius: 50%;
|
|
|
|
border-top-left-radius: 50%;
|
|
|
|
border-bottom-right-radius: 50%;
|
|
|
|
border-bottom-left-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li.timeline-inverted > .timeline-panel {
|
2018-07-14 10:59:14 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li.timeline-inverted > .timeline-panel:before {
|
2018-07-14 10:59:14 +02:00
|
|
|
border-left-width: 0;
|
|
|
|
border-right-width: 15px;
|
|
|
|
left: -15px;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline > li.timeline-inverted > .timeline-panel:after {
|
2018-07-14 10:59:14 +02:00
|
|
|
border-left-width: 0;
|
|
|
|
border-right-width: 14px;
|
|
|
|
left: -14px;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-badge.primary {
|
|
|
|
background-color: #2e6da4 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-badge.success {
|
|
|
|
background-color: #3f903f !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-badge.warning {
|
|
|
|
background-color: #f0ad4e !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-badge.danger {
|
|
|
|
background-color: #d9534f !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-badge.info {
|
|
|
|
background-color: #5bc0de !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-title {
|
|
|
|
margin-top: 0;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline-body > p,
|
|
|
|
.timeline-body > ul {
|
2018-07-14 10:59:14 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2019-05-11 05:35:00 +02:00
|
|
|
.timeline-body > p + p {
|
2018-07-14 10:59:14 +02:00
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2018-07-25 12:34:54 +02:00
|
|
|
|
2019-07-30 16:50:10 +02:00
|
|
|
|
|
|
|
/* Checklist */
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2019-07-30 16:50:10 +02:00
|
|
|
.todo-list ul {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 11px;
|
|
|
|
}
|
2019-07-30 16:51:33 +02:00
|
|
|
|
2019-09-16 10:01:01 +02:00
|
|
|
.progress .progress-bar span {
|
|
|
|
color: #000;
|
2019-07-31 11:52:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-img {
|
|
|
|
max-width: 20px;
|
|
|
|
max-height: 20px;
|
|
|
|
}
|
2019-08-02 10:38:55 +02:00
|
|
|
|
|
|
|
.logo-image {
|
2021-05-18 13:50:01 +02:00
|
|
|
max-width: 320px;
|
|
|
|
max-height: 60px;
|
2019-08-02 10:38:55 +02:00
|
|
|
}
|
2019-09-02 09:57:58 +02:00
|
|
|
|
2019-09-16 10:01:01 +02:00
|
|
|
.has-feedback .form-control {
|
2019-09-02 09:57:58 +02:00
|
|
|
padding-right: 6px;
|
|
|
|
}
|
2019-09-19 16:17:17 +02:00
|
|
|
|
|
|
|
.direct-chat-text img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2020-06-17 17:44:16 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
|
|
|
/* Dropzone */
|
|
|
|
|
2020-06-17 17:44:16 +02:00
|
|
|
.dropzone {
|
|
|
|
border: 2px dashed #337ab7;
|
|
|
|
border-radius: 5px;
|
2020-07-30 18:39:14 +02:00
|
|
|
background: white;
|
|
|
|
margin-top: 10px;
|
2020-06-17 17:44:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone .dz-message {
|
2020-07-30 18:39:14 +02:00
|
|
|
font-weight: 400;
|
2020-06-17 17:44:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone .dz-message .note {
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: 200;
|
|
|
|
display: block;
|
|
|
|
margin-top: 1.4rem;
|
|
|
|
}
|
2020-07-30 18:39:14 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2020-07-20 17:26:50 +02:00
|
|
|
/** Fix tooltip per elementi disabilitati. */
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2020-07-20 17:26:50 +02:00
|
|
|
div.tip {
|
|
|
|
display: inline-block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
pointer-events: none
|
|
|
|
}
|
2020-07-31 14:58:26 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2020-07-30 18:39:14 +02:00
|
|
|
/* Fancy checkbox: https://bootsnipp.com/snippets/M2bda */
|
2020-08-27 10:17:21 +02:00
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] {
|
2020-07-30 18:39:14 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] + .btn-group > label span {
|
2020-07-30 18:39:14 +02:00
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] + .btn-group {
|
2020-07-30 18:39:14 +02:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2020-07-31 11:56:48 +02:00
|
|
|
overflow: auto;
|
2020-07-30 18:39:14 +02:00
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] + .btn-group label:last-child {
|
2020-07-30 18:39:14 +02:00
|
|
|
flex-grow: 100;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] + .btn-group > label span:first-child {
|
2020-07-30 18:39:14 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"] + .btn-group > label span:last-child {
|
2020-07-30 18:39:14 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"]:checked + .btn-group > label span:first-child {
|
2020-07-30 18:39:14 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-09-04 14:25:25 +02:00
|
|
|
.checkbox-group input[type="checkbox"]:checked + .btn-group > label span:last-child {
|
2020-07-30 18:39:14 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2020-07-31 11:30:35 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
|
|
|
|
/* Sidebar destra per i plugin */
|
|
|
|
|
2020-08-27 09:24:28 +02:00
|
|
|
.control-sidebar {
|
2020-07-21 08:31:44 +02:00
|
|
|
top: 50px;
|
|
|
|
}
|
|
|
|
|
2020-08-26 16:17:04 +02:00
|
|
|
.control-sidebar {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1140px) {
|
|
|
|
.with-control-sidebar {
|
|
|
|
margin-right: 230px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control-sidebar-shown {
|
|
|
|
right: 0;
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.control-sidebar.control-sidebar-shown,
|
|
|
|
.control-sidebar.control-sidebar-shown + .control-sidebar-bg {
|
2020-08-26 16:17:04 +02:00
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control-sidebar-toggle {
|
2020-10-29 12:30:46 +01:00
|
|
|
/*display: none !important;*/
|
2020-08-26 16:17:04 +02:00
|
|
|
}
|
2020-07-21 08:31:44 +02:00
|
|
|
}
|
2020-08-26 17:42:43 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
/* Fix stile */
|
|
|
|
.skin-default .nav.navbar-nav li a {
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
2020-08-26 17:42:43 +02:00
|
|
|
|
2020-08-27 10:17:21 +02:00
|
|
|
.skin-default .nav.navbar-nav li a:hover {
|
|
|
|
background: #222222;
|
2020-08-26 17:42:43 +02:00
|
|
|
}
|
2020-09-14 10:22:04 +02:00
|
|
|
|
2020-10-12 09:04:05 +02:00
|
|
|
.number-input {
|
2020-09-04 09:42:38 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
2020-09-23 13:41:21 +02:00
|
|
|
|
2020-09-14 10:22:04 +02:00
|
|
|
/* Loading specificato per un div */
|
|
|
|
.local-loader {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
.local-loader > div {
|
|
|
|
position: absolute;
|
|
|
|
top: 100px;
|
|
|
|
z-index: 2;
|
|
|
|
opacity: 0.5;
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
|
|
|
.div-loading {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2021-04-12 09:26:54 +02:00
|
|
|
|
|
|
|
/* Stile Fullcalendar per weekend */
|
|
|
|
.fc-sat, .fc-sun {
|
|
|
|
background-color: rgba(255, 99, 71, 0.6) !important;
|
|
|
|
}
|
2021-05-13 17:03:45 +02:00
|
|
|
|
|
|
|
.login-box .img-responsive{
|
|
|
|
padding: 18px 0px 4px;
|
|
|
|
}
|