15672 lines
284 KiB
CSS
15672 lines
284 KiB
CSS
@charset "UTF-8";
|
|
/*
|
|
Main scss with includes
|
|
*/
|
|
/*
|
|
Basic scss - variables, layout, colors, font...
|
|
*/
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
.fa,
|
|
.fas,
|
|
.far,
|
|
.fal,
|
|
.fab {
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
display: inline-block;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
}
|
|
|
|
.fa-lg {
|
|
font-size: 1.3333333333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -0.0667em;
|
|
}
|
|
|
|
.fa-xs {
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.fa-sm {
|
|
font-size: 0.875em;
|
|
}
|
|
|
|
.fa-1x {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.fa-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-3x {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.fa-4x {
|
|
font-size: 4em;
|
|
}
|
|
|
|
.fa-5x {
|
|
font-size: 5em;
|
|
}
|
|
|
|
.fa-6x {
|
|
font-size: 6em;
|
|
}
|
|
|
|
.fa-7x {
|
|
font-size: 7em;
|
|
}
|
|
|
|
.fa-8x {
|
|
font-size: 8em;
|
|
}
|
|
|
|
.fa-9x {
|
|
font-size: 9em;
|
|
}
|
|
|
|
.fa-10x {
|
|
font-size: 10em;
|
|
}
|
|
|
|
.fa-fw {
|
|
text-align: center;
|
|
width: 1.25em;
|
|
}
|
|
|
|
.fa-ul {
|
|
list-style-type: none;
|
|
margin-left: 2.5em;
|
|
padding-left: 0;
|
|
}
|
|
.fa-ul > li {
|
|
position: relative;
|
|
}
|
|
|
|
.fa-li {
|
|
left: -2em;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 2em;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.fa-border {
|
|
border: solid 0.08em #eee;
|
|
border-radius: 0.1em;
|
|
padding: 0.2em 0.25em 0.15em;
|
|
}
|
|
|
|
.fa-pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.fa-pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.fa.fa-pull-left,
|
|
.fas.fa-pull-left,
|
|
.far.fa-pull-left,
|
|
.fal.fa-pull-left,
|
|
.fab.fa-pull-left {
|
|
margin-right: 0.3em;
|
|
}
|
|
.fa.fa-pull-right,
|
|
.fas.fa-pull-right,
|
|
.far.fa-pull-right,
|
|
.fal.fa-pull-right,
|
|
.fab.fa-pull-right {
|
|
margin-left: 0.3em;
|
|
}
|
|
|
|
.fa-spin {
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.fa-pulse {
|
|
animation: fa-spin 1s infinite steps(8);
|
|
}
|
|
|
|
@keyframes fa-spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
.fa-rotate-90 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.fa-rotate-180 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.fa-rotate-270 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.fa-flip-horizontal {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.fa-flip-vertical {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.fa-flip-horizontal.fa-flip-vertical {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
transform: scale(-1, -1);
|
|
}
|
|
|
|
:root .fa-rotate-90,
|
|
:root .fa-rotate-180,
|
|
:root .fa-rotate-270,
|
|
:root .fa-flip-horizontal,
|
|
:root .fa-flip-vertical {
|
|
filter: none;
|
|
}
|
|
|
|
.fa-stack {
|
|
display: inline-block;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
width: 2em;
|
|
}
|
|
|
|
.fa-stack-1x,
|
|
.fa-stack-2x {
|
|
left: 0;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.fa-stack-1x {
|
|
line-height: inherit;
|
|
}
|
|
|
|
.fa-stack-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-inverse {
|
|
color: #fff;
|
|
}
|
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
readers do not read off random characters that represent icons */
|
|
.fa-500px:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-accessible-icon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-accusoft:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ad:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-address-book:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-address-card:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-adjust:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-adn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-adversal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-affiliatetheme:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-air-freshener:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-algolia:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-align-center:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-align-justify:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-align-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-align-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-alipay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-allergies:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-amazon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-amazon-pay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ambulance:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-american-sign-language-interpreting:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-amilia:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-anchor:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-android:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angellist:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-double-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-double-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-double-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-double-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angle-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angrycreative:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-angular:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ankh:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-app-store:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-app-store-ios:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-apper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-apple:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-apple-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-apple-pay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-archive:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-archway:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-circle-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-circle-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-circle-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-circle-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrow-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrows-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrows-alt-h:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-arrows-alt-v:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-assistive-listening-systems:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-asterisk:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-asymmetrik:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-at:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-atlas:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-atom:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-audible:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-audio-description:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-autoprefixer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-avianex:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-aviato:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-award:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-aws:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-backspace:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-backward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-balance-scale:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ban:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-band-aid:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bandcamp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-barcode:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bars:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-baseball-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-basketball-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bath:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-battery-empty:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-battery-full:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-battery-half:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-battery-quarter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-battery-three-quarters:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-beer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-behance:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-behance-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bell:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bell-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bezier-curve:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bible:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bicycle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bimobject:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-binoculars:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-birthday-cake:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bitbucket:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bitcoin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bity:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-black-tie:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-blackberry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-blender:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-blind:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-blogger:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-blogger-b:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bluetooth:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bluetooth-b:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bold:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bolt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bomb:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bone:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bong:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-book:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-book-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-book-reader:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bookmark:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bowling-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-box:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-box-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-boxes:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-braille:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-brain:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-briefcase:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-briefcase-medical:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-broadcast-tower:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-broom:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-brush:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-btc:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bug:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-building:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bullhorn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bullseye:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-burn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-buromobelexperte:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-bus-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-business-time:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-buysellads:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calculator:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar-check:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar-minus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-calendar-times:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-camera:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-camera-retro:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cannabis:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-capsules:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-car:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-car-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-car-battery:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-car-crash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-car-side:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-square-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-square-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-square-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-square-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-caret-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cart-arrow-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cart-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-amazon-pay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-amex:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-apple-pay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-diners-club:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-discover:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-jcb:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-mastercard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-paypal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-stripe:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cc-visa:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-centercode:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-certificate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chalkboard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chalkboard-teacher:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-charging-station:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chart-area:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chart-bar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chart-line:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chart-pie:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-check:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-check-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-check-double:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-check-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-bishop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-board:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-king:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-knight:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-pawn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-queen:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chess-rook:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-circle-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-circle-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-circle-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-circle-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chevron-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-child:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-chrome:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-church:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-circle-notch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-city:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-clipboard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-clipboard-check:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-clipboard-list:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-clock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-clone:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-closed-captioning:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloud:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloud-download-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloud-upload-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloudscale:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloudsmith:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cloudversify:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cocktail:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-code:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-code-branch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-codepen:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-codiepie:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-coffee:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cogs:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-coins:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-columns:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comment:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comment-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comment-dollar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comment-dots:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comment-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comments:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-comments-dollar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-compact-disc:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-compass:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-compress:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-concierge-bell:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-connectdevelop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-contao:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cookie:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cookie-bite:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-copy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-copyright:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-couch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cpanel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-by:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-nc:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-nc-eu:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-nc-jp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-nd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-pd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-pd-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-remix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-sa:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-sampling:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-sampling-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-creative-commons-share:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-credit-card:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-crop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-crop-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cross:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-crosshairs:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-crow:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-crown:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-css3:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-css3-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cube:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cubes:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cut:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-cuttlefish:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-d-and-d:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dashcube:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-database:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-deaf:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-delicious:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-deploydog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-deskpro:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-desktop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-deviantart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dharmachakra:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-diagnoses:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-five:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-four:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-one:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-six:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-three:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dice-two:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-digg:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-digital-ocean:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-digital-tachograph:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-directions:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-discord:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-discourse:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-divide:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dizzy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dna:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dochub:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-docker:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dollar-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dolly:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dolly-flatbed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-donate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-door-closed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-door-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dot-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dove:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-download:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-draft2digital:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-drafting-compass:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-draw-polygon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dribbble:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dribbble-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dropbox:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-drum:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-drum-steelpan:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-drupal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dumbbell:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-dyalog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-earlybirds:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ebay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-edge:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-edit:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-eject:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-elementor:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ellipsis-h:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ellipsis-v:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ello:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ember:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-empire:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-envelope:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-envelope-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-envelope-open-text:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-envelope-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-envira:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-equals:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-eraser:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-erlang:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ethereum:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-etsy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-euro-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-exchange-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-exclamation:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-exclamation-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-exclamation-triangle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-expand:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-expand-arrows-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-expeditedssl:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-external-link-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-external-link-square-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-eye:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-eye-dropper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-eye-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-facebook:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-facebook-f:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-facebook-messenger:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-facebook-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fast-backward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fast-forward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fax:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-feather:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-feather-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-female:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fighter-jet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-archive:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-audio:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-code:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-contract:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-download:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-excel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-export:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-image:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-import:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-invoice:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-invoice-dollar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-medical:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-medical-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-pdf:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-powerpoint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-prescription:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-signature:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-upload:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-video:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-file-word:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fill:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fill-drip:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-film:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-filter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fingerprint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fire:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fire-extinguisher:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-firefox:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-first-aid:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-first-order:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-first-order-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-firstdraft:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fish:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flag-checkered:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flask:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flickr:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flipboard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-flushed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fly:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-folder:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-folder-minus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-folder-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-folder-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-font:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-font-awesome:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-font-awesome-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-font-awesome-flag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-font-awesome-logo-full:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fonticons:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fonticons-fi:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-football-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fort-awesome:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fort-awesome-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-forumbee:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-forward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-foursquare:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-free-code-camp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-freebsd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-frog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-frown:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-frown-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-fulcrum:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-funnel-dollar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-futbol:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-galactic-republic:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-galactic-senate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gamepad:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gas-pump:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gavel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gem:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-genderless:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-get-pocket:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gg:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gg-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gift:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-git:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-git-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-github:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-github-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-github-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gitkraken:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gitlab:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gitter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-glass-martini:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-glass-martini-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-glasses:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-glide:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-glide-g:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-globe:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-globe-africa:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-globe-americas:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-globe-asia:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gofore:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-golf-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-goodreads:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-goodreads-g:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-drive:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-play:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-plus-g:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-plus-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-google-wallet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gopuram:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-graduation-cap:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gratipay:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grav:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-greater-than:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-greater-than-equal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grimace:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-beam:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-beam-sweat:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-hearts:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-squint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-squint-tears:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-stars:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-tears:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-tongue:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-tongue-squint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-tongue-wink:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grin-wink:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grip-horizontal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grip-vertical:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gripfire:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-grunt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-gulp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-h-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hacker-news:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hacker-news-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hackerrank:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hamsa:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-holding:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-holding-heart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-holding-usd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-lizard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-paper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-peace:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-point-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-point-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-point-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-point-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-pointer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-rock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-scissors:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hand-spock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hands:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hands-helping:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-handshake:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hashtag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-haykal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hdd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-heading:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-headphones:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-headphones-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-headset:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-heart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-heartbeat:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-helicopter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-highlighter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hips:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hire-a-helper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-history:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hockey-puck:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-home:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hooli:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hornbill:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hospital:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hospital-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hospital-symbol:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hot-tub:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hotel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hotjar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hourglass:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hourglass-end:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hourglass-half:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hourglass-start:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-houzz:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-html5:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-hubspot:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-i-cursor:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-id-badge:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-id-card:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-id-card-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-image:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-images:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-imdb:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-inbox:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-indent:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-industry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-infinity:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-info:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-info-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-instagram:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-internet-explorer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ioxhost:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-italic:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-itunes:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-itunes-note:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-java:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-jedi:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-jedi-order:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-jenkins:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-joget:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-joint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-joomla:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-journal-whills:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-js:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-js-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-jsfiddle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kaaba:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kaggle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-key:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-keybase:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-keyboard:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-keycdn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-khanda:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kickstarter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kickstarter-k:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kiss:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kiss-beam:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kiss-wink-heart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-kiwi-bird:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-korvue:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-landmark:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-language:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laptop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laptop-code:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laravel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lastfm:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lastfm-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laugh:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laugh-beam:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laugh-squint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-laugh-wink:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-layer-group:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-leaf:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-leanpub:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lemon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-less:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-less-than:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-less-than-equal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-level-down-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-level-up-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-life-ring:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lightbulb:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-line:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-link:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-linkedin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-linkedin-in:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-linode:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-linux:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lira-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-list:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-list-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-list-ol:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-list-ul:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-location-arrow:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lock-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-long-arrow-alt-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-long-arrow-alt-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-long-arrow-alt-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-long-arrow-alt-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-low-vision:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-luggage-cart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-lyft:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-magento:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-magic:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-magnet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mail-bulk:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mailchimp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-male:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mandalorian:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-marked:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-marked-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-marker:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-marker-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-pin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-map-signs:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-markdown:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-marker:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mars:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mars-double:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mars-stroke:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mars-stroke-h:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mars-stroke-v:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mastodon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-maxcdn:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medapps:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medium:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medium-m:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medkit:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-medrt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-meetup:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-megaport:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-meh:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-meh-blank:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-meh-rolling-eyes:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-memory:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-menorah:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mercury:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microchip:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microphone:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microphone-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microphone-alt-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microphone-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microscope:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-microsoft:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-minus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-minus-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-minus-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mixcloud:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mizuni:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mobile:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mobile-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-modx:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-monero:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-bill:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-bill-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-bill-wave:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-bill-wave-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-check:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-money-check-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-monument:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-moon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mortar-pestle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mosque:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-motorcycle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-mouse-pointer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-music:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-napster:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-neos:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-neuter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-newspaper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-nimblr:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-nintendo-switch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-node:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-node-js:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-not-equal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-notes-medical:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-npm:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ns8:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-nutritionix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-object-group:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-object-ungroup:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-odnoklassniki:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-odnoklassniki-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-oil-can:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-old-republic:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-om:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-opencart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-openid:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-opera:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-optin-monster:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-osi:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-outdent:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-page4:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pagelines:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paint-brush:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paint-roller:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-palette:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-palfed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pallet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paper-plane:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paperclip:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-parachute-box:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paragraph:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-parking:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-passport:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pastafarianism:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paste:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-patreon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pause:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pause-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paw:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-paypal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-peace:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pen:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pen-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pen-fancy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pen-nib:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pen-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pencil-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pencil-ruler:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-people-carry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-percent:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-percentage:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-periscope:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phabricator:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phoenix-framework:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phoenix-squadron:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phone:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phone-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phone-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-phone-volume:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-php:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pied-piper:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pied-piper-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pied-piper-hat:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pied-piper-pp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-piggy-bank:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pills:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pinterest:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pinterest-p:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pinterest-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-place-of-worship:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plane:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plane-arrival:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plane-departure:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-play:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-play-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-playstation:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plug:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plus-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-plus-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-podcast:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-poll:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-poll-h:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-poo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-poop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-portrait:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pound-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-power-off:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pray:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-praying-hands:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-prescription:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-prescription-bottle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-prescription-bottle-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-print:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-procedures:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-product-hunt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-project-diagram:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-pushed:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-puzzle-piece:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-python:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-qq:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-qrcode:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-question:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-question-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quidditch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quinscape:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quora:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quote-left:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quote-right:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-quran:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-r-project:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-random:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ravelry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-react:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-readme:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rebel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-receipt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-recycle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-red-river:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-reddit:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-reddit-alien:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-reddit-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-redo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-redo-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-registered:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rendact:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-renren:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-reply:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-reply-all:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-replyd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-researchgate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-resolving:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-retweet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rev:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ribbon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-road:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-robot:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rocket:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rocketchat:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rockrms:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-route:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rss:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rss-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ruble-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ruler:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ruler-combined:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ruler-horizontal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ruler-vertical:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-rupee-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sad-cry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sad-tear:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-safari:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sass:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-save:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-schlix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-school:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-screwdriver:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-scribd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-search:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-search-dollar:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-search-location:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-search-minus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-search-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-searchengin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-seedling:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sellcast:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sellsy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-server:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-servicestack:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shapes:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-share:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-share-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-share-alt-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-share-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shekel-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shield-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ship:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shipping-fast:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shirtsinbulk:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shoe-prints:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shopping-bag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shopping-basket:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shopping-cart:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shopware:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shower:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-shuttle-van:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sign-in-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sign-language:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sign-out-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-signal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-signature:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-simplybuilt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sistrix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sitemap:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sith:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-skull:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-skyatlas:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-skype:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-slack:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-slack-hash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sliders-h:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-slideshare:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-smile:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-smile-beam:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-smile-wink:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-smoking:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-smoking-ban:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-snapchat:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-snapchat-ghost:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-snapchat-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-snowflake:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-socks:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-solar-panel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-alpha-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-alpha-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-amount-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-amount-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-numeric-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-numeric-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sort-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-soundcloud:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-spa:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-space-shuttle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-speakap:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-spinner:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-splotch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-spotify:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-spray-can:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-square-full:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-square-root-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-squarespace:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stack-exchange:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stack-overflow:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stamp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star-and-crescent:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star-half:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star-half-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star-of-david:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-star-of-life:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-staylinked:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-steam:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-steam-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-steam-symbol:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-step-backward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-step-forward:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stethoscope:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sticker-mule:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sticky-note:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stop:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stop-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stopwatch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-store:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-store-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-strava:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stream:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-street-view:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-strikethrough:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stripe:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stripe-s:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stroopwafel:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-studiovinari:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stumbleupon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-stumbleupon-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-subscript:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-subway:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-suitcase:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-suitcase-rolling:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sun:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-superpowers:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-superscript:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-supple:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-surprise:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-swatchbook:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-swimmer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-swimming-pool:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-synagogue:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sync:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-sync-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-syringe:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-table:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-table-tennis:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tablet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tablet-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tablets:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tachometer-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tags:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tape:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tasks:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-taxi:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-teamspeak:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-teeth:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-teeth-open:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-telegram:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-telegram-plane:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tencent-weibo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-terminal:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-text-height:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-text-width:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-th:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-th-large:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-th-list:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-the-red-yeti:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-theater-masks:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-themeco:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-themeisle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer-empty:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer-full:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer-half:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer-quarter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thermometer-three-quarters:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thumbs-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thumbs-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-thumbtack:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ticket-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-times:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-times-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tint:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tint-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tired:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-toggle-off:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-toggle-on:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-toolbox:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tooth:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-torah:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-torii-gate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trade-federation:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trademark:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-traffic-light:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-train:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-transgender:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-transgender-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trash-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tree:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trello:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tripadvisor:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-trophy:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-truck:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-truck-loading:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-truck-monster:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-truck-moving:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-truck-pickup:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tshirt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tty:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tumblr:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tumblr-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-tv:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-twitch:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-twitter:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-twitter-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-typo3:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-uber:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-uikit:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-umbrella:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-umbrella-beach:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-underline:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-undo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-undo-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-uniregistry:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-universal-access:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-university:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-unlink:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-unlock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-unlock-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-untappd:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-upload:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-usb:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-alt-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-astronaut:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-check:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-circle:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-clock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-cog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-edit:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-friends:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-graduate:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-lock:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-md:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-minus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-ninja:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-plus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-secret:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-shield:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-tag:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-tie:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-user-times:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-users:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-users-cog:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-ussunnah:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-utensil-spoon:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-utensils:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vaadin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vector-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-venus:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-venus-double:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-venus-mars:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-viacoin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-viadeo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-viadeo-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vial:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vials:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-viber:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-video:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-video-slash:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vihara:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vimeo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vimeo-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vimeo-v:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vine:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vk:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vnv:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-volleyball-ball:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-volume-down:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-volume-off:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-volume-up:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-vuejs:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-walking:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wallet:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-warehouse:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-weebly:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-weibo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-weight:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-weight-hanging:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-weixin:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-whatsapp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-whatsapp-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wheelchair:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-whmcs:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wifi:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wikipedia-w:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-window-close:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-window-maximize:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-window-minimize:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-window-restore:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-windows:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wine-glass:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wine-glass-alt:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wix:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wolf-pack-battalion:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-won-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wordpress:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wordpress-simple:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wpbeginner:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wpexplorer:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wpforms:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-wrench:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-x-ray:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-xbox:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-xing:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-xing-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-y-combinator:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yahoo:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yandex:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yandex-international:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yelp:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yen-sign:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yin-yang:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-yoast:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-youtube:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-youtube-square:before {
|
|
content: "";
|
|
}
|
|
|
|
.fa-zhihu:before {
|
|
content: "";
|
|
}
|
|
|
|
.sr-only {
|
|
border: 0;
|
|
clip: rect(0, 0, 0, 0);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
|
|
.sr-only-focusable:active, .sr-only-focusable:focus {
|
|
clip: auto;
|
|
height: auto;
|
|
margin: 0;
|
|
overflow: visible;
|
|
position: static;
|
|
width: auto;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url("../fonts/FontAwesome5/fa-regular-400.eot");
|
|
src: url("../fonts/FontAwesome5/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-regular-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-regular-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-regular-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-regular-400.svg#fontawesome") format("svg");
|
|
}
|
|
.far {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 400;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
src: url("../fonts/FontAwesome5/fa-solid-900.eot");
|
|
src: url("../fonts/FontAwesome5/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-solid-900.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-solid-900.woff") format("woff"), url("../fonts/FontAwesome5/fa-solid-900.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-solid-900.svg#fontawesome") format("svg");
|
|
}
|
|
.fa,
|
|
.fas {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 900;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Brands";
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url("../fonts/FontAwesome5/fa-brands-400.eot");
|
|
src: url("../fonts/FontAwesome5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-brands-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-brands-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-brands-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-brands-400.svg#fontawesome") format("svg");
|
|
}
|
|
.fab {
|
|
font-family: "Font Awesome 5 Brands";
|
|
}
|
|
|
|
body {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
|
|
/*
|
|
All colors
|
|
*/
|
|
p, span {
|
|
font-size: 16px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.warning,
|
|
.red {
|
|
color: #FF0000;
|
|
}
|
|
|
|
.blue {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.gray {
|
|
color: #C4C4C4;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 800;
|
|
}
|
|
|
|
.semi-bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.caps {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/*
|
|
Only layout styles - position, display, max-width...
|
|
*/
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body #main_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
body #main_holder #main {
|
|
padding: 64px 0;
|
|
min-height: calc(100vh - 410px);
|
|
}
|
|
body #main_holder #main .fullwidth {
|
|
max-width: 100%;
|
|
}
|
|
body #main_holder #main .narrow {
|
|
margin: 0 auto;
|
|
max-width: 1060px;
|
|
}
|
|
body #main_holder #main .wide {
|
|
margin: 0 auto;
|
|
max-width: 1360px;
|
|
}
|
|
body #main_holder #main .menu_left {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
body #main_holder #main .menu_left .layout_left_item {
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
width: 300px;
|
|
}
|
|
body #main_holder #main .menu_left .layout_right_item {
|
|
flex-grow: 1;
|
|
}
|
|
span.faicon,
|
|
a.faicon {
|
|
font-family: "Font Awesome 5 Free";
|
|
color: inherit;
|
|
display: inline-block;
|
|
font-weight: 900;
|
|
}
|
|
span.faicon.empty,
|
|
a.faicon.empty {
|
|
font-weight: 400;
|
|
}
|
|
span.faicon.link-right,
|
|
a.faicon.link-right {
|
|
margin-right: 10px;
|
|
}
|
|
span.faicon.link-left,
|
|
a.faicon.link-left {
|
|
margin-left: 8px;
|
|
}
|
|
span.faicon.large::before,
|
|
a.faicon.large::before {
|
|
font-size: 32px !important;
|
|
}
|
|
span.faicon.medium::before,
|
|
a.faicon.medium::before {
|
|
font-size: 24px !important;
|
|
}
|
|
span.faicon.title20::before,
|
|
a.faicon.title20::before {
|
|
font-size: 20px !important;
|
|
margin-left: 16px;
|
|
}
|
|
span.faicon.normal::before,
|
|
a.faicon.normal::before {
|
|
font-size: 16px !important;
|
|
}
|
|
span.faicon.small::before,
|
|
a.faicon.small::before {
|
|
font-size: 10px !important;
|
|
}
|
|
span.faicon.yellow,
|
|
a.faicon.yellow {
|
|
color: #FFC700;
|
|
}
|
|
span.faicon.blue,
|
|
a.faicon.blue {
|
|
color: #1E88E5;
|
|
}
|
|
span.faicon.red,
|
|
a.faicon.red {
|
|
color: #FF0000;
|
|
}
|
|
span.faicon.ultra_dark_gray,
|
|
a.faicon.ultra_dark_gray {
|
|
color: #555555;
|
|
}
|
|
span.faicon.fa-stack,
|
|
a.faicon.fa-stack {
|
|
height: 1em;
|
|
line-height: 1em;
|
|
width: 1em;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
div.icon_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
}
|
|
div.icon_holder span.faicon,
|
|
div.icon_holder a.faicon,
|
|
div.icon_holder button.ui-datepicker-trigger {
|
|
margin-left: 12px;
|
|
}
|
|
div.icon_holder.multiple span.faicon,
|
|
div.icon_holder.multiple a.faicon {
|
|
margin-right: 16px;
|
|
}
|
|
div.icon_holder.multiple span.faicon:last-of-type,
|
|
div.icon_holder.multiple a.faicon:last-of-type {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
.enka-custom-radio::before {
|
|
letter-spacing: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
.enka-custom-radio.star::before {
|
|
content: "";
|
|
}
|
|
.enka-custom-radio.thumb::before {
|
|
content: "";
|
|
}
|
|
.enka-custom-radio.smiley::before {
|
|
content: "";
|
|
}
|
|
.enka-custom-radio.heart::before {
|
|
content: "";
|
|
}
|
|
.enka-custom-radio.flag::before {
|
|
content: "";
|
|
}
|
|
.enka-custom-radio.user::before {
|
|
content: "";
|
|
}
|
|
|
|
/* visual analog scale - radio buttons */
|
|
.enka-vizualna-skala::before {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-size: 20px;
|
|
letter-spacing: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
.enka-vizualna-skala.siv-61::before, .enka-vizualna-skala.siv-71::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-41::before, .enka-vizualna-skala.siv-51::before, .enka-vizualna-skala.siv-62::before, .enka-vizualna-skala.siv-72::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-21::before, .enka-vizualna-skala.siv-31::before, .enka-vizualna-skala.siv-42::before, .enka-vizualna-skala.siv-52::before, .enka-vizualna-skala.siv-63::before, .enka-vizualna-skala.siv-73::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-32::before, .enka-vizualna-skala.siv-53::before, .enka-vizualna-skala.siv-74::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-22::before, .enka-vizualna-skala.siv-33::before, .enka-vizualna-skala.siv-43::before, .enka-vizualna-skala.siv-54::before, .enka-vizualna-skala.siv-64::before, .enka-vizualna-skala.siv-75::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-44::before, .enka-vizualna-skala.siv-55::before, .enka-vizualna-skala.siv-65::before, .enka-vizualna-skala.siv-76::before {
|
|
content: "";
|
|
}
|
|
.enka-vizualna-skala.siv-66::before, .enka-vizualna-skala.siv-77::before {
|
|
content: "";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* icons */
|
|
span.faicon.plus::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.minus::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.close::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.dropdown_blue::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.dropup_blue::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow_back::before {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.add::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.remove::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.delete::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.anketa_delete::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.copy::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.anketa_copy::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.export::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
/*span.faicon.import::before{
|
|
font-size: 24px;
|
|
content: "\f56f";
|
|
}*/
|
|
span.faicon.import {
|
|
width: 32px;
|
|
}
|
|
|
|
span.faicon.import::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.import::after {
|
|
font-size: 14px;
|
|
content: "";
|
|
display: inline-block;
|
|
}
|
|
|
|
span.faicon.library::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.folder::before {
|
|
font-size: 22px;
|
|
content: "";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.after.sort_down_arrow::after {
|
|
content: "";
|
|
margin-left: 5px;
|
|
}
|
|
|
|
span.faicon.after.sort_up_arrow::after {
|
|
content: "";
|
|
margin-left: 5px;
|
|
}
|
|
|
|
span.faicon.info::before {
|
|
font-size: 28px;
|
|
content: "";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.pagination_left::before {
|
|
margin: 0 1px 0 1px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.pagination_right::before {
|
|
margin: 0 0 0 1px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.edit::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.refresh::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.filter::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.star::before,
|
|
span.faicon.star_off::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.star_on::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.search::before {
|
|
font-size: 20px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.help2::before {
|
|
font-size: 20px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.user::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.logout::before {
|
|
font-size: 20px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.monitor::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.users::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.lock_open::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.lock_close::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bottom_saving::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bottom_publish::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bottom_preview {
|
|
width: 20px;
|
|
}
|
|
|
|
span.faicon.bottom_preview::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bottom_preview::after {
|
|
font-size: 14px;
|
|
content: "";
|
|
display: inline-block;
|
|
margin-left: -70%;
|
|
}
|
|
|
|
span.faicon.bottom_test::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.language::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.mobile_off::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.mobile_off::after {
|
|
font-size: 24px;
|
|
content: "";
|
|
margin-left: -23px;
|
|
}
|
|
|
|
span.faicon.comments::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.comments_num::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.comments_num strong {
|
|
color: white;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
span.faicon.data_link::before {
|
|
font-size: 20px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.data_link_small::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.print::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.print_small::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.preview {
|
|
width: 18px;
|
|
}
|
|
|
|
span.faicon.preview::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.preview::after {
|
|
content: "";
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
margin-left: -50%;
|
|
}
|
|
|
|
span.faicon.palette::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inline_comment::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inline_double_comment::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.comments_creport::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.compress::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.expand::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.hashtag::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bug::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.paragraph::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.replace::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.plus_square::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.minus_square::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.delete_circle::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.quick_view::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.edit_square::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.test::before {
|
|
font-size: 15px;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.if_add {
|
|
font-size: 10px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
a.faicon.if_add:before {
|
|
background-color: #1E88E5;
|
|
font-weight: 500;
|
|
padding: 2px 4px;
|
|
color: white;
|
|
content: "IF";
|
|
}
|
|
a.faicon.if_add:hover:before {
|
|
background-color: #0059ab;
|
|
}
|
|
|
|
span.faicon.if_add {
|
|
font-size: 10px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
span.faicon.if_add:before {
|
|
background-color: #1E88E5;
|
|
font-weight: 500;
|
|
padding: 2px 4px;
|
|
color: white;
|
|
content: "IF";
|
|
}
|
|
span.faicon.if_add:hover:before {
|
|
background-color: #0059ab;
|
|
}
|
|
|
|
span.faicon.text_file::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.text_file_small {
|
|
height: 20px;
|
|
vertical-align: middle;
|
|
}
|
|
span.faicon.text_file_small:before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.warning::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.users_small::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.popup_0::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
color: #1E88E5;
|
|
}
|
|
|
|
span.faicon.popup_1::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
color: #0059ab;
|
|
}
|
|
|
|
span.faicon.flat_0::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
color: #0059ab;
|
|
}
|
|
|
|
span.faicon.flat_1::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
color: #1E88E5;
|
|
}
|
|
|
|
span.basic-icon.spss::before {
|
|
content: "Σ";
|
|
line-height: 26px;
|
|
vertical-align: bottom;
|
|
font-size: 30px !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.faicon.external_link::before {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.cog_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.chart_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.reload_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "";
|
|
}
|
|
|
|
/* CALENDAR */
|
|
span.faicon.calendar_icon::before,
|
|
button.ui-datepicker-trigger::before {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
/* ARROWS */
|
|
span.faicon.arrow_up::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
span.faicon.arrow2_r::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow2_l::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow2_d::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow2_u::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow_large2_r::before {
|
|
font-size: 35px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow_large2_l::before {
|
|
font-size: 35px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow_verylarge2_r::before {
|
|
font-size: 40px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arrow_verylarge2_l::before {
|
|
font-size: 40px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.sort_descending::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.sort_ascending::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
/* Plus/minus sqare */
|
|
span.folder_plusminus {
|
|
text-indent: 0px !important;
|
|
font-style: normal !important;
|
|
}
|
|
|
|
span.faicon.plus_orange::before {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.minus_orange::before {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
/* Spinner */
|
|
span.faicon.spinner::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
/* Bars - mobile menu */
|
|
span.faicon.bars::before {
|
|
font-size: 26px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.lock_open::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.lock_close::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bell::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.bell_slash::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.trash::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.copy::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.circle::before {
|
|
content: "";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.plus::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.plus_circle::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.minus_circle::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.calendar_icon::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.clipboard::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.list-alt::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.vote-yes::before {
|
|
content: "";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* NAPREDNI MODULI */
|
|
span.module_icon {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 25px;
|
|
padding: 0 8px;
|
|
color: white;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
background-color: transparent;
|
|
border: 1px #FFFFFF solid;
|
|
text-decoration: none !important;
|
|
}
|
|
span.module_icon::before {
|
|
line-height: 25px;
|
|
}
|
|
span.module_icon.maza::before {
|
|
content: "MAZA";
|
|
}
|
|
span.module_icon.wpn::before {
|
|
content: "WPN";
|
|
}
|
|
span.module_icon.panel::before {
|
|
content: "Panel";
|
|
}
|
|
span.module_icon.telephone::before {
|
|
content: "TEL";
|
|
}
|
|
span.module_icon.slideshow::before {
|
|
content: "SS";
|
|
}
|
|
span.module_icon.evalvation::before {
|
|
content: "EVAL";
|
|
}
|
|
span.module_icon.vnos::before {
|
|
content: "V";
|
|
}
|
|
span.module_icon.social::before {
|
|
content: "SN";
|
|
}
|
|
span.module_icon.quiz::before {
|
|
content: "Q";
|
|
}
|
|
span.module_icon.voting::before {
|
|
content: "VOTE";
|
|
}
|
|
span.module_icon.advanced_paradata::before {
|
|
content: "AP";
|
|
}
|
|
span.module_icon.chat::before {
|
|
content: "C";
|
|
}
|
|
span.module_icon.degrees_1ka::before {
|
|
content: "360";
|
|
}
|
|
span.module_icon.mju::before {
|
|
content: "H";
|
|
}
|
|
span.module_icon.sa-hierarhija::before {
|
|
content: "SA";
|
|
}
|
|
span.module_icon.degrees::before {
|
|
content: "360";
|
|
}
|
|
span.module_icon.borza::before {
|
|
content: "Borza";
|
|
}
|
|
span.module_icon.evoli::before {
|
|
content: "Evoli";
|
|
}
|
|
span.module_icon.evoli_teammeter::before {
|
|
content: "Evoli TM";
|
|
}
|
|
span.module_icon.evoli_quality_climate::before {
|
|
content: "Evoli QC";
|
|
}
|
|
span.module_icon.evoli_teamship_meter::before {
|
|
content: "Evoli TSM";
|
|
}
|
|
span.module_icon.evoli_organizational_employeeship_meter::before {
|
|
content: "Evoli OEM";
|
|
}
|
|
span.module_icon.evoli_employmeter::before {
|
|
content: "Evoli EM";
|
|
}
|
|
span.module_icon.excell_matrix::before {
|
|
content: "EM";
|
|
}
|
|
span.module_icon.mfdps::before {
|
|
content: "MFDPS";
|
|
}
|
|
span.module_icon.mju::before {
|
|
content: "MJU";
|
|
}
|
|
span.module_icon.gdpr {
|
|
color: #E5E5E5;
|
|
background-color: #1E88E5;
|
|
border: 1px #FFFFFF solid;
|
|
}
|
|
span.module_icon.gdpr:hover {
|
|
color: #FFFFFF;
|
|
}
|
|
span.module_icon.gdpr.active {
|
|
color: white;
|
|
background-color: #1E88E5;
|
|
border: 1px #FFFFFF solid;
|
|
}
|
|
span.module_icon.gdpr.active:hover {
|
|
color: white;
|
|
border: 1px #FFFFFF solid;
|
|
}
|
|
span.module_icon.gdpr::before {
|
|
content: "GDPR";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Toolbox na levi strani */
|
|
span.faicon.wheel_32::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.radio_32::before {
|
|
content: "";
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.check_32::before {
|
|
content: "";
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.matrix_32::before {
|
|
content: "\a";
|
|
white-space: pre;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
}
|
|
|
|
span.faicon.abc_32::before {
|
|
content: "ABC";
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.number_32::before {
|
|
content: "123";
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.nagovor::before {
|
|
content: "T";
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.plus_32::before {
|
|
content: "";
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.if_32::before {
|
|
content: "IF";
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.block_32::before {
|
|
content: "B";
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.loop_32::before {
|
|
content: "L";
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 15px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* question editing icons */
|
|
a.faicon {
|
|
color: #1E88E5 !important;
|
|
}
|
|
a.faicon:hover {
|
|
color: #0059ab !important;
|
|
}
|
|
|
|
span.faicon.edit-vprasanje {
|
|
line-height: 25px;
|
|
}
|
|
span.faicon.edit-vprasanje:before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.edit::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.addif::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
content: "IF";
|
|
}
|
|
|
|
a.faicon.copy::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.copycond::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.preview::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.preview::after {
|
|
content: "";
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
margin-left: -50%;
|
|
}
|
|
|
|
a.faicon.arhiv::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.delete::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.hide::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
a.faicon.unhide_icon::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
/* Urejanje vrednosti inline */
|
|
.variabla span.inline.faicon::before {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.variabla span.inline.faicon:hover::before {
|
|
color: #0059ab;
|
|
}
|
|
|
|
.variabla span.inline.faicon.edit2::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden.show-hidden::before {
|
|
color: #FF0000;
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden.show-disable::before {
|
|
color: #FFC700;
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_not::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF*";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_follow::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF🠞";
|
|
}
|
|
|
|
.variabla span.inline.faicon.correct::before {
|
|
font-size: 14px;
|
|
font-weight: 900;
|
|
content: "";
|
|
}
|
|
|
|
.variabla span.inline.faicon.move_updown::before {
|
|
font-size: 16px;
|
|
color: #0059ab;
|
|
content: "";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 7-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Knjiznica */
|
|
span.faicon.mapca.anketa::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.table::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.other_vprasanja::before {
|
|
font-size: 16px;
|
|
content: "" !important;
|
|
}
|
|
|
|
span.faicon.osnovna_vprasanja::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.mapca.if::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
content: "IF";
|
|
}
|
|
|
|
span.faicon.mapca.b::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
content: "B";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 8-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Izvozi */
|
|
span.faicon.pdf::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
color: #ed1c24;
|
|
}
|
|
|
|
span.faicon.pdf.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.pdf.black:hover {
|
|
color: #ed1c24 !important;
|
|
}
|
|
|
|
a:hover span.faicon.pdf.black {
|
|
color: #ed1c24 !important;
|
|
}
|
|
|
|
span.faicon.pdf.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.xls::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
color: #008000;
|
|
}
|
|
|
|
span.faicon.xls.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.xls.black:hover {
|
|
color: #008000 !important;
|
|
}
|
|
|
|
a:hover span.faicon.xls.black {
|
|
color: #008000 !important;
|
|
}
|
|
|
|
span.faicon.xls.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.rtf::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
color: #0f3ea8;
|
|
}
|
|
|
|
span.faicon.rtf.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.rtf.black:hover {
|
|
color: #0f3ea8 !important;
|
|
}
|
|
|
|
a:hover span.faicon.rtf.black {
|
|
color: #0f3ea8 !important;
|
|
}
|
|
|
|
span.faicon.rtf.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.ppt::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
color: #fa4913;
|
|
}
|
|
|
|
span.faicon.ppt.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.ppt.black:hover {
|
|
color: #fa4913 !important;
|
|
}
|
|
|
|
a:hover span.faicon.ppt.black {
|
|
color: #fa4913 !important;
|
|
}
|
|
|
|
span.faicon.ppt.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.xml::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
color: #00a000;
|
|
}
|
|
|
|
span.faicon.xml.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.xml.black:hover {
|
|
color: #00a000 !important;
|
|
}
|
|
|
|
a:hover span.faicon.xml.black {
|
|
color: #00a000 !important;
|
|
}
|
|
|
|
span.faicon.xml.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.arhiv::before {
|
|
font-size: 16px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arhiv_mail::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Analiza */
|
|
span.faicon.an_sigma::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
content: "Σ";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.an_sigmax::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
content: "Σ*";
|
|
vertical-align: middle;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
span.faicon.an_freq::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "f";
|
|
vertical-align: middle;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
span.faicon.an_freqx::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "f*";
|
|
vertical-align: middle;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
span.faicon.an_stat::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "s";
|
|
vertical-align: middle;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
span.faicon.an_chart_bar::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
/*content: "\f080";*/
|
|
content: "";
|
|
margin-left: 3px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Invitation table */
|
|
span.faicon.inv_sent_0::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.inv_sent_1::before {
|
|
font-size: 14px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inv_responded_0::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inv_responded_1::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inv_unsubscribed_0::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inv_unsubscribed_1::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "";
|
|
color: #FF0000;
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
a:hover {
|
|
color: #0059ab;
|
|
}
|
|
a.noline {
|
|
text-decoration: none;
|
|
}
|
|
a.noline.undertable {
|
|
margin-left: 17px;
|
|
}
|
|
a.help {
|
|
text-decoration: none;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.displayNone {
|
|
display: none !important;
|
|
}
|
|
|
|
/*
|
|
Components scss
|
|
*/
|
|
/*
|
|
Header scss - top line, menu...
|
|
*/
|
|
header .mobile_header {
|
|
display: none;
|
|
}
|
|
|
|
header #top_line {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 58px;
|
|
padding: 0 32px;
|
|
/*tooltips on survey*/
|
|
}
|
|
header #top_line #logo_holder {
|
|
width: 87px;
|
|
height: 40px;
|
|
}
|
|
header #top_line #logo_holder a {
|
|
display: block;
|
|
width: 87px;
|
|
height: 40px;
|
|
background-image: url(../img/logo/1ka_logo_slo.svg);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
header #top_line #logo_holder.english a {
|
|
background-image: url(../img/logo/1ka_logo_eng.svg);
|
|
}
|
|
header #top_line #logo_holder.namestitev a {
|
|
background-image: url(../img/logo/1ka_logo_namestitev.svg);
|
|
}
|
|
header #top_line #anketa_header_settings {
|
|
display: flex;
|
|
margin-left: 30px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_naslov a {
|
|
font-size: 20px;
|
|
color: #333333;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 37px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview {
|
|
margin-left: 32px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url {
|
|
margin-left: 32px;
|
|
color: #777777;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url a {
|
|
font-size: 16px;
|
|
text-decoration: none;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate {
|
|
margin-left: 32px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa {
|
|
position: relative;
|
|
display: block;
|
|
width: 50px;
|
|
height: 20px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding-top: 1px;
|
|
color: white;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 16px;
|
|
background-color: #1E88E5;
|
|
border-radius: 20px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 18px;
|
|
width: 18px;
|
|
bottom: 1px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content {
|
|
padding-left: 24px;
|
|
background-color: #1E88E5;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content:before {
|
|
left: 1px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on:hover .switch_anketa_content {
|
|
background-color: #0059ab;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content {
|
|
padding-left: 6px;
|
|
background-color: #808080;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content:before {
|
|
right: 1px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off:hover .switch_anketa_content {
|
|
background-color: #777777;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_lock {
|
|
margin-left: 32px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_quick_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 32px;
|
|
}
|
|
header #top_line #enka_nav {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 32px;
|
|
}
|
|
header #top_line #enka_nav div {
|
|
margin-left: 24px;
|
|
}
|
|
header #top_line #enka_nav #search_holder form {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
header #top_line #enka_nav #search_holder input#searchSurvey {
|
|
display: none;
|
|
width: 150px;
|
|
padding: 3px 0 3px 5px;
|
|
margin: -3px 0 0 5px;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
header #top_line span.sprites.mail_unread {
|
|
color: #FFFFFF;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 23px;
|
|
text-align: center;
|
|
text-indent: 10px;
|
|
}
|
|
header #top_line #xtradiv {
|
|
display: inline-block;
|
|
width: auto;
|
|
margin-left: 15px;
|
|
vertical-align: middle;
|
|
}
|
|
header #top_line #xtradiv .xtraname {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
width: auto;
|
|
font-weight: 500;
|
|
color: #1E88E5;
|
|
}
|
|
header #top_line #xtradiv .xtraname:hover {
|
|
color: #0059ab;
|
|
}
|
|
header #top_line #xtradiv .xtraname span {
|
|
margin-left: 8px;
|
|
line-height: 20px;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 99999;
|
|
right: 8px;
|
|
top: 35px;
|
|
padding: 5px 10px;
|
|
width: 120px;
|
|
text-align: left;
|
|
background-color: #FFFFFF;
|
|
border: 1px #1E88E5 solid;
|
|
-webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
|
|
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
|
|
-moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings span.xtraSetting {
|
|
clear: both;
|
|
float: left;
|
|
padding: 6px 0;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
font-size: 13px;
|
|
color: #333333;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra:hover {
|
|
color: #FFC700;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra:hover .faicon {
|
|
color: #FFC700;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra span.faicon {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
margin-right: 10px;
|
|
}
|
|
header #top_line .tooltip {
|
|
position: relative;
|
|
}
|
|
header #top_line .tooltip .expanded-tooltip {
|
|
display: none;
|
|
white-space: normal;
|
|
}
|
|
header #top_line .tooltip:hover .expanded-tooltip {
|
|
display: block;
|
|
}
|
|
header #top_line .tooltip.monitor {
|
|
cursor: pointer;
|
|
}
|
|
|
|
header {
|
|
/* sub settings (under second navigation) */
|
|
}
|
|
header #surveyNavigation {
|
|
height: 58px;
|
|
background-color: #1E88E5;
|
|
}
|
|
header #surveyNavigation #firstNavigation {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 58px;
|
|
margin: 0 32px;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
}
|
|
header #surveyNavigation #firstNavigation .right_icons {
|
|
display: flex;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol li {
|
|
list-style-image: none;
|
|
list-style-position: outside;
|
|
list-style-type: none;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list {
|
|
padding-top: 10px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li {
|
|
padding: 14px 32px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li a {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.active_on {
|
|
background-color: #FFFFFF;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.active_on a {
|
|
color: #1E88E5;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings li {
|
|
margin-left: 16px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings li a span::before {
|
|
color: white;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss {
|
|
font-size: 12px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a {
|
|
margin-right: 0px !important;
|
|
color: #FFFFFF !important;
|
|
font-weight: 600;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a:hover {
|
|
color: #FFFFFF !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_blue_off {
|
|
margin-top: 4px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_orange_off {
|
|
margin-top: 4px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_blue_on {
|
|
margin-top: -1px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_orange_on {
|
|
margin-top: -1px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings span.sprites.comments_blue_on {
|
|
color: #FFFFFF;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings span.sprites.comments_orange_on {
|
|
color: #FFFFFF;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_modules li {
|
|
margin-left: 16px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_modules a:hover {
|
|
text-decoration: none;
|
|
}
|
|
header #secondNavigation {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 41px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
header #secondNavigation .separator {
|
|
width: 1px;
|
|
height: 25px;
|
|
margin: 0 16px;
|
|
border-left: 1px #808080 solid;
|
|
}
|
|
header #secondNavigation ul.secondNavigation,
|
|
header #secondNavigation ul.secondNavigationArchive {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 0 0 32px;
|
|
padding: 0;
|
|
}
|
|
header #secondNavigation ul.secondNavigation.secondNavigationArchive,
|
|
header #secondNavigation ul.secondNavigationArchive.secondNavigationArchive {
|
|
margin-left: 0;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li,
|
|
header #secondNavigation ul.secondNavigationArchive li {
|
|
list-style-image: none;
|
|
list-style-position: outside;
|
|
list-style-type: none;
|
|
height: 41px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li a,
|
|
header #secondNavigation ul.secondNavigationArchive li a {
|
|
padding: 12px 32px;
|
|
line-height: 41px;
|
|
font-size: 15px;
|
|
color: #808080;
|
|
text-decoration: none;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li.active, header #secondNavigation ul.secondNavigation li:hover,
|
|
header #secondNavigation ul.secondNavigationArchive li.active,
|
|
header #secondNavigation ul.secondNavigationArchive li:hover {
|
|
border-bottom: 1px #1E88E5 solid;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li.active a, header #secondNavigation ul.secondNavigation li:hover a,
|
|
header #secondNavigation ul.secondNavigationArchive li.active a,
|
|
header #secondNavigation ul.secondNavigationArchive li:hover a {
|
|
color: #1E88E5;
|
|
}
|
|
header #secondNavigation #secondNavigation_links {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 32px;
|
|
}
|
|
header #secondNavigation #secondNavigation_links a {
|
|
margin-left: 16px;
|
|
}
|
|
header #secondNavigation #secondNavigation_links a span::before {
|
|
font-size: 20px !important;
|
|
}
|
|
header #topSettingsHolder {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 41px;
|
|
color: #1E88E5;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .borderLeft {
|
|
padding-left: 20px;
|
|
border-left: 1px dotted #E5E5E5;
|
|
}
|
|
header #topSettingsHolder #additional_navigation {
|
|
position: relative;
|
|
width: auto;
|
|
margin: 9px 0px 0 0;
|
|
background: 0;
|
|
}
|
|
header #topSettingsHolder #additional_navigation a span {
|
|
padding: 2px 50px 2px 0;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #1E88E5;
|
|
}
|
|
header #topSettingsHolder #additional_navigation a span.active {
|
|
color: #FFC700;
|
|
background: 0;
|
|
}
|
|
header #topSettingsHolder #additional_navigation a span.faicon.arrow_back {
|
|
padding: 0;
|
|
line-height: 0px;
|
|
margin-right: 40px;
|
|
}
|
|
header #topSettingsHolder #dataOnlyValid {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: auto;
|
|
margin: 4px 0 0;
|
|
padding: 3px 0 4px 0;
|
|
}
|
|
header #topSettingsHolder #dataOnlyValid .middle {
|
|
margin-left: 20px;
|
|
}
|
|
header #topSettingsHolder #dataOnlyValid .middle input {
|
|
margin: 0px 4px 1px 2px;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder {
|
|
position: relative;
|
|
float: right;
|
|
margin: 4px 15px 0 0;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options {
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options2 {
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options3 {
|
|
float: left;
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 {
|
|
display: none;
|
|
white-space: nowrap;
|
|
position: absolute;
|
|
z-index: 78;
|
|
top: 32px;
|
|
right: 0;
|
|
width: auto;
|
|
min-height: 20px;
|
|
height: auto;
|
|
padding: 10px;
|
|
text-align: left;
|
|
font-size: 13px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul {
|
|
margin: 0px !important;
|
|
padding: 0px;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li {
|
|
display: block;
|
|
margin: 0px !important;
|
|
padding: 3px;
|
|
list-style: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li span.as_link,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li span.as_link {
|
|
font-weight: 500;
|
|
color: #1E88E5 !important;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li span.as_link:hover,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li span.as_link:hover {
|
|
color: #FFC700 !important;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li span.as_link.gray,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li span.as_link.gray {
|
|
font-weight: normal;
|
|
color: #1E88E5 !important;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li span.as_link.gray:hover,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li span.as_link.gray:hover {
|
|
color: #FFC700 !important;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li span.advanced,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li span.advanced {
|
|
display: block;
|
|
font-weight: normal;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right ul li.space,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 ul li.space {
|
|
display: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right a,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 a {
|
|
color: #1E88E5 !important;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right a:visited,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 a:visited {
|
|
color: #1E88E5 !important;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right a:hover,
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 a:hover {
|
|
color: #FFC700 !important;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2 {
|
|
right: 35px;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options span#filters_span {
|
|
color: #1E88E5;
|
|
margin-left: 4px;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options:hover span#filters_span {
|
|
color: #FFC700 !important;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #analiza_right_options2:hover span#filters_span {
|
|
color: #FFC700 !important;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right.analiza ul li.space {
|
|
display: none;
|
|
}
|
|
header #topSettingsHolder #analiza_right_options_holder #div_analiza_filtri_right2.analiza ul li.space {
|
|
display: none;
|
|
}
|
|
header div.breadcrumbs {
|
|
display: none;
|
|
}
|
|
|
|
#language_select {
|
|
position: absolute;
|
|
z-index: 78;
|
|
right: 32px;
|
|
font-weight: 500;
|
|
}
|
|
#language_select a {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
#language_select a:hover {
|
|
text-decoration: none;
|
|
}
|
|
#language_select a .flag {
|
|
height: 14px;
|
|
width: 24px;
|
|
margin-right: 9px;
|
|
background-size: 100% 30px;
|
|
background-position: center;
|
|
}
|
|
#language_select a .flag.slo {
|
|
background-image: url("../img/flags/flag_slo.svg");
|
|
}
|
|
#language_select a .flag.eng {
|
|
background-image: url("../img/flags/flag_eng.svg");
|
|
}
|
|
|
|
#hover_export {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 99999;
|
|
right: 0px;
|
|
top: 31px;
|
|
width: 150px;
|
|
padding: 10px 16px;
|
|
text-align: left;
|
|
line-height: normal;
|
|
background-color: #FFFFFF;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#hover_export a {
|
|
display: flex;
|
|
padding: 6px 0;
|
|
margin: 0 !important;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
transition: 0.2s;
|
|
}
|
|
#hover_export a:hover {
|
|
text-decoration: none;
|
|
}
|
|
#hover_export span.hover_export_icon {
|
|
display: inline-block;
|
|
width: 32px;
|
|
}
|
|
|
|
footer#srv_footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 80px;
|
|
padding: 16px 40px;
|
|
margin-top: 40px;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
footer#srv_footer a {
|
|
text-decoration: none;
|
|
}
|
|
footer#srv_footer .footer_left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line {
|
|
display: flex;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line:first-child {
|
|
margin-bottom: 15px;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line .footer_item {
|
|
padding: 0 8px;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line .footer_item:first-child {
|
|
padding-left: 0;
|
|
border-left: none;
|
|
}
|
|
footer#srv_footer .footer_right {
|
|
text-align: left;
|
|
}
|
|
footer#srv_footer .footer_right span.faicon.inline_comment:before {
|
|
font-size: 14px !important;
|
|
margin-right: 3px;
|
|
}
|
|
footer#srv_footer .footer_right span.faicon.external_link:before {
|
|
font-size: 14px !important;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
div.layout_left_item {
|
|
padding: 16px 32px;
|
|
margin-right: 64px;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: -10px 10px 0px #F8F8F8;
|
|
height: fit-content;
|
|
}
|
|
div.layout_left_item span.faicon {
|
|
margin-left: 16px;
|
|
}
|
|
div.layout_left_item span.menu_left-title {
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
line-height: 21px;
|
|
text-transform: uppercase;
|
|
}
|
|
div.layout_left_item span.menu_left-title.paid_locked {
|
|
color: #FFC700;
|
|
}
|
|
div.layout_left_item ul.menu_left-list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-bottom: 32px;
|
|
font-size: 16px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.paid_locked {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.paid_locked a:hover {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li {
|
|
line-height: 20px;
|
|
margin-top: 12px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li.active {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li a.paid_locked {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li a.paid_locked a:hover {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.second {
|
|
padding-left: 30px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
div.layout_left_item ul.menu_left-list a:hover {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
/*
|
|
Form scss - input fields, buttons...
|
|
*/
|
|
button,
|
|
submit {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
box-shadow: none;
|
|
border: 0;
|
|
transition: 0.3s;
|
|
}
|
|
button.table-inline,
|
|
submit.table-inline {
|
|
padding: 4px 20px;
|
|
width: fit-content;
|
|
font-size: 14px;
|
|
border-radius: 2px;
|
|
}
|
|
button.small,
|
|
submit.small {
|
|
padding: 5px 32px;
|
|
min-width: 160px;
|
|
font-size: 14px;
|
|
}
|
|
button.medium,
|
|
submit.medium {
|
|
padding: 10px 32px;
|
|
min-width: 160px;
|
|
font-size: 16px;
|
|
}
|
|
button.large,
|
|
submit.large {
|
|
padding: 12px 32px;
|
|
min-width: 160px;
|
|
font-size: 20px;
|
|
}
|
|
button.blue,
|
|
submit.blue {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
button.blue:hover,
|
|
submit.blue:hover {
|
|
background-color: #1980da;
|
|
}
|
|
button.white-blue,
|
|
submit.white-blue {
|
|
color: #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
button.white-blue:hover,
|
|
submit.white-blue:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.white-black,
|
|
submit.white-black {
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: 1px #333333 solid;
|
|
}
|
|
button.white-black:hover,
|
|
submit.white-black:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.gray,
|
|
submit.gray {
|
|
color: #333333;
|
|
background-color: #E5E5E5;
|
|
border: 1px #333333 solid;
|
|
}
|
|
button.gray:hover,
|
|
submit.gray:hover {
|
|
background-color: #d8d8d8;
|
|
}
|
|
button.yellow,
|
|
submit.yellow {
|
|
color: #333333;
|
|
background-color: #FFC700;
|
|
border: 1px #FFC700 solid;
|
|
}
|
|
button.yellow:hover,
|
|
submit.yellow:hover {
|
|
background-color: #f5bf00;
|
|
}
|
|
button.red,
|
|
submit.red {
|
|
color: #FFFFFF;
|
|
background-color: #FF0000;
|
|
border: 1px #FF0000 solid;
|
|
}
|
|
button.red:hover,
|
|
submit.red:hover {
|
|
background-color: #e60000;
|
|
}
|
|
|
|
div.button_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
margin-bottom: 32px;
|
|
}
|
|
div.button_holder button {
|
|
margin-right: 16px;
|
|
}
|
|
div.button_holder.bottom16 {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.button_holder.bottom0 {
|
|
margin-bottom: 0px;
|
|
}
|
|
div.button_holder.inline {
|
|
align-items: flex-end;
|
|
}
|
|
div.button_holder.inline button {
|
|
margin-left: 16px;
|
|
}
|
|
div.button_holder.below {
|
|
margin-bottom: 0;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
label {
|
|
cursor: pointer;
|
|
margin-right: 16px;
|
|
font-size: 16px;
|
|
}
|
|
label[disabled] {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
label.empty {
|
|
margin: 0;
|
|
font-size: 0;
|
|
}
|
|
|
|
input[type=text], input[type=password] {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
width: 245px;
|
|
margin-top: 4px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
input[type=text].w200, input[type=password].w200 {
|
|
width: 200px;
|
|
}
|
|
input[type=text].wauto, input[type=password].wauto {
|
|
width: auto;
|
|
}
|
|
input[type=text].large, input[type=password].large {
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
input[type=text].medium, input[type=password].medium {
|
|
height: 32px;
|
|
font-size: 14px;
|
|
padding: 6px 7px;
|
|
}
|
|
input[type=text].small, input[type=password].small {
|
|
height: 26px;
|
|
font-size: 14px;
|
|
padding: 3px 7px;
|
|
}
|
|
input[type=text]:focus, input[type=password]:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
input[type=text][readonly=true], input[type=password][readonly=true] {
|
|
cursor: pointer;
|
|
}
|
|
input[type=radio], input[type=checkbox] {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
input[type=radio] + label:before, input[type=checkbox] + label:before {
|
|
cursor: pointer;
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
color: #777777;
|
|
letter-spacing: 8px;
|
|
font-size: 18px;
|
|
vertical-align: -1px;
|
|
}
|
|
input[type=radio] + label.empty:before, input[type=checkbox] + label.empty:before {
|
|
letter-spacing: 0;
|
|
}
|
|
input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:before {
|
|
color: #1E88E5;
|
|
}
|
|
input[type=checkbox] + label:before {
|
|
content: "";
|
|
}
|
|
input[type=checkbox]:checked + label:before {
|
|
content: "";
|
|
font-weight: bold;
|
|
}
|
|
input[type=radio] + label:before {
|
|
content: "";
|
|
}
|
|
input[type=radio]:checked + label:before {
|
|
content: "";
|
|
}
|
|
input[type=checkbox][disabled] + label:before {
|
|
color: #C4C4C4;
|
|
pointer-events: none;
|
|
}
|
|
input[type=radio][disabled] + label:before {
|
|
color: #C4C4C4;
|
|
pointer-events: none;
|
|
}
|
|
input.disabled {
|
|
border-color: #C4C4C4;
|
|
background-color: #E5E5E5;
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
|
|
fieldset {
|
|
margin-bottom: 32px;
|
|
padding: 32px;
|
|
box-sizing: border-box;
|
|
margin-inline-start: 0;
|
|
margin-inline-end: 0;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
fieldset legend {
|
|
padding: 0 15px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
}
|
|
fieldset p.bottom16 {
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset p.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
fieldset p.top32 {
|
|
margin-top: 32px;
|
|
}
|
|
fieldset p.bottom8 {
|
|
margin-bottom: 8px;
|
|
}
|
|
fieldset p.top8 {
|
|
margin-top: 8px;
|
|
}
|
|
fieldset .setting_horizontal_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
fieldset .setting_horizontal_wrapper .setting_holder {
|
|
margin-right: 17px;
|
|
}
|
|
fieldset .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
fieldset .setting_holder.bottom8 {
|
|
margin-bottom: 8px !important;
|
|
}
|
|
fieldset .setting_holder:first-of-type, fieldset .setting_holder.top0 {
|
|
margin-top: 0;
|
|
}
|
|
fieldset .setting_holder.bottom0 {
|
|
margin-bottom: 0;
|
|
}
|
|
fieldset .setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
fieldset .setting_holder:last-of-type.bottom16 {
|
|
margin-bottom: 16px !important;
|
|
}
|
|
fieldset .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
fieldset .setting_holder span.charalimit {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
color: #777777;
|
|
text-align: right;
|
|
}
|
|
fieldset .setting_holder.indent {
|
|
margin-left: 27px;
|
|
}
|
|
fieldset ul {
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
padding-inline-start: 25px;
|
|
}
|
|
|
|
select.dropdown {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
margin-top: 4px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
select.dropdown.large {
|
|
width: 229px;
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
select.dropdown.large option {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
color: #333333;
|
|
padding: 0;
|
|
}
|
|
select.dropdown.medium {
|
|
width: 229px;
|
|
height: 32px;
|
|
font-size: 14px;
|
|
padding: 6px 7px;
|
|
}
|
|
select.dropdown.medium option {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
color: #333333;
|
|
}
|
|
select.dropdown.small {
|
|
width: 229px;
|
|
height: 26px;
|
|
font-size: 14px;
|
|
padding: 3px 7px;
|
|
}
|
|
select.dropdown.small option {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
color: #333333;
|
|
}
|
|
select.dropdown.w200 {
|
|
width: 200px;
|
|
}
|
|
select.dropdown:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
select.dropdown.disabled {
|
|
border-color: #C4C4C4;
|
|
background-color: #E5E5E5;
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
|
|
textarea {
|
|
width: 307px;
|
|
height: 140px;
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
resize: none;
|
|
margin-top: 4px;
|
|
padding: 9px 7px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
textarea.disabled {
|
|
border-color: #C4C4C4;
|
|
background-color: #E5E5E5;
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
textarea:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
|
|
table {
|
|
margin: 8px 0;
|
|
padding: 8px 0;
|
|
border-collapse: collapse;
|
|
text-align: left;
|
|
}
|
|
table td, table th {
|
|
padding: 0 16px;
|
|
border-top: 1px solid #E5E5E5;
|
|
vertical-align: middle;
|
|
}
|
|
table td.center, table th.center {
|
|
text-align: center;
|
|
}
|
|
table td.right, table th.right {
|
|
text-align: right;
|
|
}
|
|
table td.wrap, table th.wrap {
|
|
white-space: normal;
|
|
}
|
|
table th {
|
|
font-weight: 600;
|
|
background-color: #F8F8F8;
|
|
}
|
|
table tr {
|
|
height: 40px;
|
|
}
|
|
table tr:last-of-type td, table tr:last-of-type th, table tr.show_as_last_row td, table tr.show_as_last_row th {
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
table#passwords_table, table#groups_table {
|
|
min-width: 421px;
|
|
}
|
|
|
|
div .table-horizontal-scroll-wrapper1 {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
margin: 8px 0;
|
|
}
|
|
div .table-horizontal-scroll-wrapper2 {
|
|
display: table-cell;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
div .table-horizontal-scroll-wrapper2 table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
white-space: nowrap;
|
|
margin: 0px;
|
|
}
|
|
|
|
table.gdpr_surveys tr.red_row td {
|
|
background-color: #FFEFEF !important;
|
|
}
|
|
table.gdpr_surveys tr.green_row td {
|
|
background-color: #a8eea8 !important;
|
|
}
|
|
table.gdpr_surveys.requests td div.gdpr_requests_wrap {
|
|
max-width: 204px;
|
|
min-width: 204px;
|
|
overflow-wrap: break-word;
|
|
white-space: normal;
|
|
padding: 8px 0px;
|
|
}
|
|
|
|
div#gdrp_requests_unresolved {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
/*
|
|
Created on : 21-12-2021
|
|
Author : Peter Hrvatin
|
|
|
|
Vsi popupi v admin vmesniku
|
|
*/
|
|
/*
|
|
Popupi - splosno
|
|
*/
|
|
/* Popup info box (ki se pojavi npr. ob nastavitvi in ne na fade podlagi) */
|
|
/* Standarden popup, ki se pojavi na fade podlagi */
|
|
.divPopUp {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
}
|
|
.divPopUp .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.divPopUp .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
.divPopUp .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
.divPopUp .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
.divPopUp h2,
|
|
.divPopUp .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.divPopUp p {
|
|
line-height: 20px;
|
|
}
|
|
.divPopUp .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.divPopUp .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.divPopUp.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
.divPopUp_info {
|
|
padding: 16px;
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
.divPopUp_info h2 {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.divPopUp_info span,
|
|
.divPopUp_info p {
|
|
display: block;
|
|
padding-bottom: 16px;
|
|
}
|
|
.divPopUp_info span:last-child,
|
|
.divPopUp_info p:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
.divPopUp_info a {
|
|
font-weight: 500;
|
|
}
|
|
.divPopUp_info.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#fade {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 79;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
#fade .popup_holder {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
/* basic popup */
|
|
}
|
|
#fade .popup_holder #fullscreen {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 81;
|
|
}
|
|
#fade .popup_holder .divPopUp {
|
|
display: none;
|
|
position: relative;
|
|
}
|
|
#fade .popup_holder .divPopUp .buttons_holder {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
#fade .popup_holder .divPopUp div.divPopUp_top {
|
|
display: inline-block;
|
|
height: auto;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
#fade .popup_holder .divPopUp div.divPopUp_content {
|
|
height: 100%;
|
|
}
|
|
#fade .popup_holder .divPopUp div.divPopUp_btm {
|
|
display: inline-block;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 20px 0px 0px 0px !important;
|
|
margin-right: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Generic popup */
|
|
#popup_note {
|
|
display: none;
|
|
max-width: 600px !important;
|
|
}
|
|
#popup_note .popup_content {
|
|
margin-bottom: 40px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
#clipboard {
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 50%;
|
|
margin-left: -180px;
|
|
width: 340px;
|
|
background-color: #1E88E5;
|
|
color: white;
|
|
padding: 5px 10px 5px 10px;
|
|
z-index: 1000;
|
|
display: none;
|
|
}
|
|
#clipboard p {
|
|
margin: 0;
|
|
}
|
|
#clipboard a {
|
|
color: white;
|
|
}
|
|
|
|
#request_help_content a {
|
|
padding-left: 0 !important;
|
|
font-weight: 600 !important;
|
|
color: #1E88E5 !important;
|
|
}
|
|
#request_help_content a:hover {
|
|
color: #FFC700 !important;
|
|
}
|
|
|
|
/*active editors*/
|
|
.active-alert {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
background-color: #E5E5E5;
|
|
padding: 1px 10px;
|
|
border-left: 1px solid #FF0000;
|
|
border-bottom: 1px solid #FF0000;
|
|
z-index: 10;
|
|
}
|
|
|
|
span.active-editors {
|
|
color: #E5E5E5;
|
|
font-weight: normal;
|
|
}
|
|
|
|
#div_float_editing {
|
|
display: none;
|
|
min-height: 350px;
|
|
max-height: 600px;
|
|
overflow: auto;
|
|
width: 702px;
|
|
}
|
|
|
|
#div_float_editing_inner {
|
|
border: 1px solid yellow;
|
|
overflow: auto;
|
|
min-height: 150px;
|
|
height: 489px;
|
|
max-height: 650px;
|
|
}
|
|
|
|
#div_error {
|
|
padding: 10px;
|
|
margin: 3px;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#div_error ul {
|
|
list-style: square inside;
|
|
}
|
|
#div_error li {
|
|
padding-bottom: 5px;
|
|
}
|
|
#div_error img {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.alert_textarea {
|
|
border: 1px solid silver;
|
|
background-color: #E5E5E5;
|
|
}
|
|
|
|
#invisible-layer {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 9999999;
|
|
}
|
|
|
|
#invisible-close {
|
|
z-index: 99999999;
|
|
cursor: pointer;
|
|
top: 15px;
|
|
right: 20% !important;
|
|
position: absolute;
|
|
width: auto;
|
|
padding: 5px 25px;
|
|
font-size: 15px !important;
|
|
font-weight: 500 !important;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
background-color: #1E88E5;
|
|
background-image: none;
|
|
border: 2px solid #1E88E5;
|
|
}
|
|
#invisible-close:hover {
|
|
color: #FFC700;
|
|
border-color: #FFC700;
|
|
}
|
|
|
|
#cookie_alert {
|
|
position: absolute;
|
|
right: 20%;
|
|
top: 300px;
|
|
width: 300px;
|
|
}
|
|
|
|
#ie_alert {
|
|
position: absolute;
|
|
top: -30px;
|
|
width: 100%;
|
|
padding: 7px 0;
|
|
z-index: 9999;
|
|
background-color: #FFC700;
|
|
border-top: #FFC700 1px solid;
|
|
border-bottom: #FFC700 1px solid;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#pasteFromWordAlert {
|
|
display: none;
|
|
bottom: 15%;
|
|
left: 50%;
|
|
z-index: 99999;
|
|
position: fixed;
|
|
margin-left: -100px;
|
|
padding: 3px 15px;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
font-size: 13px;
|
|
line-height: 30px;
|
|
color: #E5E5E5;
|
|
background-color: #FFC700;
|
|
border: 1px solid #FFC700;
|
|
}
|
|
|
|
#alternativno-obvestilo.error {
|
|
color: #FFC700;
|
|
}
|
|
|
|
#alternativno-obvestilo.success {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
/*
|
|
Loading okna
|
|
*/
|
|
body.wait #loading {
|
|
display: block;
|
|
}
|
|
|
|
body.waitlong #loading {
|
|
bottom: auto;
|
|
top: 45%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 15px 25px;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
|
|
/*loading word at bottom left*/
|
|
#loading {
|
|
display: none;
|
|
z-index: 900;
|
|
position: fixed;
|
|
bottom: 16px;
|
|
left: 16px;
|
|
box-sizing: border-box;
|
|
width: 275px;
|
|
height: 38px;
|
|
padding-left: 16px;
|
|
line-height: 35px;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
}
|
|
#loading .spinner::before {
|
|
font-size: 14px;
|
|
}
|
|
|
|
/*
|
|
Qtip vprasajcek popup in tooltip
|
|
*/
|
|
.qtip {
|
|
box-sizing: border-box;
|
|
width: 400px !important;
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
box-shadow: 0px 2px 7px -1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
.qtip .qtip-tip {
|
|
display: none !important;
|
|
}
|
|
.qtip .qtip-wrapper {
|
|
overflow: visible !important;
|
|
border: 0 !important;
|
|
/* Krizec za zaprtje vprasajcka */
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper {
|
|
border: 0 !important;
|
|
/* Vsebina vprasajcka */
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title {
|
|
padding: 0 !important;
|
|
/*margin-top: 10px;*/
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button {
|
|
position: absolute !important;
|
|
top: -16px;
|
|
right: -10px;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button:hover {
|
|
color: #333333;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content {
|
|
overflow: visible !important;
|
|
padding: 0 !important;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white !important;
|
|
border: 0;
|
|
/* Naslov - opcijsko */
|
|
/* Link "Več >" */
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content textarea {
|
|
box-sizing: border-box;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content h1 {
|
|
margin: 0 0 16px 0;
|
|
color: #333333 !important;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
background-color: white !important;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content h1::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 20px;
|
|
color: #1E88E5;
|
|
vertical-align: -1px;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more {
|
|
display: block;
|
|
margin-top: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more a {
|
|
text-decoration: none;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more a:hover {
|
|
text-decoration: none;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more::after {
|
|
cursor: pointer;
|
|
padding-left: 8px;
|
|
vertical-align: middle;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 8px;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more:hover::after {
|
|
color: #0059ab;
|
|
}
|
|
.qtip .qtip-borderTop, .qtip .qtip-borderBottom {
|
|
display: none !important;
|
|
}
|
|
|
|
/* toostip popups */
|
|
.expanded-tooltip {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
top: -45px;
|
|
left: -25px;
|
|
z-index: 99999;
|
|
position: absolute;
|
|
display: block;
|
|
margin: 0;
|
|
width: 200px;
|
|
height: 29px;
|
|
padding-bottom: 10px;
|
|
/*color: $grey_super_dark !important;
|
|
background-color: $soft_blue_very_lighten;
|
|
border: 1px solid $soft_blue;
|
|
padding: 10px 10px 0 10px;*/
|
|
background-color: white;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
font-size: 11px;
|
|
line-height: 14px;
|
|
}
|
|
.expanded-tooltip .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.expanded-tooltip .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
.expanded-tooltip .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
.expanded-tooltip .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
.expanded-tooltip h2,
|
|
.expanded-tooltip .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.expanded-tooltip p {
|
|
line-height: 20px;
|
|
}
|
|
.expanded-tooltip .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.expanded-tooltip .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.expanded-tooltip.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
.expanded-tooltip a {
|
|
font-weight: 600 !important;
|
|
}
|
|
.expanded-tooltip a.close {
|
|
color: #E5E5E5;
|
|
float: right;
|
|
}
|
|
.expanded-tooltip span.arrow {
|
|
display: none;
|
|
display: block;
|
|
height: 18px;
|
|
left: 50%;
|
|
top: 35px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
width: 60px;
|
|
margin-left: -30px;
|
|
}
|
|
.expanded-tooltip span.arrow:after {
|
|
background-color: white;
|
|
border: 2px solid white;
|
|
content: "";
|
|
height: 25px;
|
|
left: 15px;
|
|
position: absolute;
|
|
top: -20px;
|
|
width: 25px;
|
|
-webkit-box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
|
|
-moz-box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
|
|
box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
|
|
-webkit-transform: rotate(45deg);
|
|
-moz-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
-o-transform: rotate(45deg);
|
|
}
|
|
|
|
.expanded-tooltip.bottom {
|
|
text-align: left;
|
|
left: -100px;
|
|
top: 35px;
|
|
background-color: white;
|
|
height: auto;
|
|
z-index: 99999;
|
|
}
|
|
.expanded-tooltip.bottom span.arrow {
|
|
top: -18px;
|
|
}
|
|
.expanded-tooltip.bottom span.arrow:after {
|
|
background-color: white;
|
|
top: 10px;
|
|
-webkit-box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
|
|
-moz-box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
|
|
box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
|
|
}
|
|
|
|
.expanded-tooltip.light {
|
|
/*background-color: $soft_blue_very_lighten;
|
|
|
|
span.arrow {
|
|
&:after {
|
|
background-color: $soft_blue_very_lighten;
|
|
}
|
|
}*/
|
|
}
|
|
|
|
#request_help_content.expanded-tooltip {
|
|
/*left: -85px;*/
|
|
}
|
|
|
|
#tooltip_preview_content.expanded-tooltip {
|
|
/*left: -90px;*/
|
|
top: 33px;
|
|
}
|
|
|
|
#baseSurveyInfoImg .expanded-tooltip {
|
|
width: 400px;
|
|
left: -38px;
|
|
}
|
|
#baseSurveyInfoImg .expanded-tooltip span.arrow {
|
|
left: 12%;
|
|
}
|
|
|
|
/*
|
|
Popupi z nastavitvami
|
|
*/
|
|
/* Survey title edit */
|
|
#quick_title_edit {
|
|
position: relative;
|
|
width: 720px;
|
|
height: 265px;
|
|
}
|
|
#quick_title_edit .quick_title_edit_label {
|
|
width: 145px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Nastavitve grafov */
|
|
#div_chart_settings_profiles {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
width: 650px;
|
|
height: 420px;
|
|
padding: 10px;
|
|
}
|
|
#div_chart_settings_profiles .as_link {
|
|
color: #1E88E5 !important;
|
|
}
|
|
#div_chart_settings_profiles #chart_skin_note {
|
|
width: auto;
|
|
padding: 3px;
|
|
color: black;
|
|
font-size: 11px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #1E88E5;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_left {
|
|
float: left;
|
|
width: 30%;
|
|
height: 200px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_right {
|
|
padding: 20px;
|
|
width: 60%;
|
|
float: right;
|
|
}
|
|
|
|
/* popup edit chart */
|
|
#chart_float_editing {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 999;
|
|
width: 815px;
|
|
padding: 0 20px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea {
|
|
position: absolute;
|
|
overflow: auto;
|
|
right: 20px;
|
|
width: 615px;
|
|
height: 300px;
|
|
padding: 20px;
|
|
margin: 0 0 40px 0;
|
|
background-color: #1E88E5;
|
|
}
|
|
#chart_float_editing .chartSettingsArea ul.vrednost_sort li {
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#chart_float_editing .chartSettingsArea .chart_setting {
|
|
padding: 5px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul {
|
|
padding: 3px 20px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li {
|
|
padding: 2px 0px 3px 0px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li .chart_advanced_warning {
|
|
padding: 0px 10px;
|
|
color: red;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs {
|
|
position: absolute;
|
|
width: 160px;
|
|
height: 260px;
|
|
padding: 0px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: white;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul li {
|
|
width: 100%;
|
|
height: 20px;
|
|
padding: 10px 0;
|
|
cursor: pointer;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul li.active {
|
|
background-color: #1E88E5;
|
|
}
|
|
#chart_float_editing .form-item {
|
|
padding: 3px;
|
|
width: 200px;
|
|
}
|
|
#chart_float_editing .colorwell {
|
|
width: 70px;
|
|
height: 20px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/*color picker*/
|
|
.farbtastic {
|
|
position: relative;
|
|
width: 195px;
|
|
height: 195px;
|
|
}
|
|
.farbtastic * {
|
|
position: absolute;
|
|
cursor: crosshair;
|
|
}
|
|
.farbtastic .wheel {
|
|
width: 195px;
|
|
height: 195px;
|
|
background: url(../../../admin/survey/img_0/wheel.png) no-repeat;
|
|
width: 195px;
|
|
height: 195px;
|
|
}
|
|
.farbtastic .color {
|
|
top: 47px;
|
|
left: 47px;
|
|
width: 101px;
|
|
height: 101px;
|
|
}
|
|
.farbtastic .overlay {
|
|
top: 47px;
|
|
left: 47px;
|
|
width: 101px;
|
|
height: 101px;
|
|
background: url(../../../admin/survey/img_0/mask.png) no-repeat;
|
|
}
|
|
.farbtastic .marker {
|
|
width: 17px;
|
|
height: 17px;
|
|
margin: -8px 0 0 -8px;
|
|
overflow: hidden;
|
|
background: url(../../../admin/survey/img_0/marker.png) no-repeat;
|
|
}
|
|
|
|
#div_variable_profiles {
|
|
z-index: 90;
|
|
}
|
|
|
|
#divConditionProfiles {
|
|
width: 1035px;
|
|
}
|
|
|
|
/* Calculation edit */
|
|
#calculation {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 91;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
height: auto;
|
|
width: 600px;
|
|
}
|
|
#calculation #calculation_editing_inner {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 40px;
|
|
overflow: auto;
|
|
}
|
|
#calculation .calculation_editing_body {
|
|
max-height: 40vh;
|
|
overflow-y: auto;
|
|
margin: 20px 0;
|
|
padding: 10px 5px 5px 5px;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#calculation .calculation_editing_body .tbl_condition_editing {
|
|
margin-bottom: 5px;
|
|
}
|
|
#calculation #condition_editing_close {
|
|
float: right;
|
|
margin: 20px 20px 20px 0;
|
|
}
|
|
#calculation #bottom_space {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/*
|
|
Popupi z alerti
|
|
*/
|
|
#check_pogoji {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
width: 340px;
|
|
}
|
|
#check_pogoji .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#check_pogoji .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#check_pogoji .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#check_pogoji .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#check_pogoji h2,
|
|
#check_pogoji .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#check_pogoji p {
|
|
line-height: 20px;
|
|
}
|
|
#check_pogoji .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#check_pogoji .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#check_pogoji.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#dropped_alert {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
min-height: 30px;
|
|
width: 300px;
|
|
}
|
|
#dropped_alert .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#dropped_alert .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#dropped_alert .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#dropped_alert .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#dropped_alert h2,
|
|
#dropped_alert .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#dropped_alert p {
|
|
line-height: 20px;
|
|
}
|
|
#dropped_alert .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#dropped_alert .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#dropped_alert.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#alert_close_block {
|
|
display: none;
|
|
min-height: 30px;
|
|
width: 500px;
|
|
}
|
|
|
|
/* Popup z obvestilom, da je funkcionalnost onemogocena in je potrebno kupiti paket */
|
|
#popup_user_access {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 9999;
|
|
height: auto;
|
|
width: 450px;
|
|
}
|
|
#popup_user_access .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#popup_user_access .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#popup_user_access .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#popup_user_access .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#popup_user_access h2,
|
|
#popup_user_access .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#popup_user_access p {
|
|
line-height: 20px;
|
|
}
|
|
#popup_user_access .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#popup_user_access .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#popup_user_access.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#popup_user_access div.buttonwrapper a {
|
|
margin-top: 10px;
|
|
}
|
|
#popup_user_access p {
|
|
margin-top: 0;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/*
|
|
Popupi z errorji
|
|
*/
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 23-Aug-2018, 10:31:31
|
|
Author : podkrizniku
|
|
*/
|
|
#dsp_div {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
}
|
|
|
|
#dsp_cover_div {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #1E88E5;
|
|
opacity: 0.4;
|
|
z-index: 10;
|
|
display: none;
|
|
}
|
|
|
|
#dsp_profiles_left {
|
|
width: 192px;
|
|
float: left;
|
|
}
|
|
|
|
#dsp_profiles_right {
|
|
float: right;
|
|
width: 490px;
|
|
padding: 0 0 10px 10px;
|
|
margin-bottom: 40px;
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
#dsp_profiles_holder {
|
|
width: 190px;
|
|
height: 150px;
|
|
display: inline-block;
|
|
}
|
|
|
|
#dsp_profiles {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
display: inline-block;
|
|
}
|
|
#dsp_profiles .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#dsp_profiles .active {
|
|
padding: 2px 5px;
|
|
background-color: #1E88E5;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#dsp_note {
|
|
width: 450px;
|
|
padding: 3px;
|
|
color: black;
|
|
font-size: 11px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
#dsp_content {
|
|
width: auto;
|
|
min-height: 80px;
|
|
padding: 0;
|
|
}
|
|
#dsp_content fieldset {
|
|
margin: 0px 0px 5px 0px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#dsp_content legend {
|
|
background-color: white;
|
|
}
|
|
|
|
#dsp_left_link_holder {
|
|
width: auto;
|
|
max-width: 180px;
|
|
}
|
|
|
|
#dsp_button_holder {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
.dsp_sett_label {
|
|
display: inline-block;
|
|
width: auto;
|
|
line-height: 20px;
|
|
}
|
|
|
|
/*popup data export settings*/
|
|
#div_export_setting_show {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 90;
|
|
left: calc(50% - 200px);
|
|
top: 30vh;
|
|
min-width: 250px;
|
|
min-height: 80px;
|
|
height: auto;
|
|
width: auto;
|
|
margin: 10px;
|
|
}
|
|
#div_export_setting_show .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#div_export_setting_show .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#div_export_setting_show .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#div_export_setting_show .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#div_export_setting_show h2,
|
|
#div_export_setting_show .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#div_export_setting_show p {
|
|
line-height: 20px;
|
|
}
|
|
#div_export_setting_show .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#div_export_setting_show .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#div_export_setting_show.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Aug-2018, 10:12:15
|
|
Author : podkrizniku
|
|
*/
|
|
.condition_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
margin: 8px 8px 8px 0px;
|
|
}
|
|
|
|
.zanka_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.variable_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#zanka_profile {
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
#zanka_profile .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#zanka_profile .active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#variable_profile {
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
}
|
|
#variable_profile .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#variable_profile .active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#condition_profile {
|
|
height: 200px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
}
|
|
#condition_profile .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#condition_profile .active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#variableProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#zankaProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#statisticProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#timeProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#statusProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#conditionProfileCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#surveyConditionCover {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#profileManagerCoverDiv {
|
|
display: none;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
fieldset.statusProfileFieldset {
|
|
width: 460px;
|
|
margin: 0px;
|
|
padding: 5px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
fieldset.statusProfileFieldset legend {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
fieldset#missingProfileFieldset {
|
|
width: 470px;
|
|
margin: 0px;
|
|
padding: 5px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
|
|
#missingProfileFieldsetHolder1 {
|
|
width: 481px;
|
|
padding: 4px;
|
|
margin-top: 4px;
|
|
margin-bottom: 5px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#missingProfilebuttons {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#div_missing_profiles {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
width: 730px;
|
|
}
|
|
#div_missing_profiles fieldset {
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#div_missing_profiles legend {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#fs_list {
|
|
overflow: auto;
|
|
float: right;
|
|
width: 490px;
|
|
height: 320px;
|
|
padding: 10px;
|
|
color: #E5E5E5;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.fs_container {
|
|
height: 280px;
|
|
width: 235px;
|
|
overflow: auto;
|
|
padding: 3px 0px 3px 0px;
|
|
}
|
|
|
|
#fs_list_1 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_1 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_1 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_1 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_1 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_1 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_2 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_2 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_2 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_2 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_2 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_2 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_3 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_3 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_3 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_3 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_3 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_3 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_4 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_4 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_4 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_4 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_4 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_4 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#div_cp_preview {
|
|
float: right;
|
|
display: inline-block;
|
|
width: 780px;
|
|
margin: 8px 8px 40px 0px;
|
|
max-height: 500px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#div_cp_preview_content {
|
|
display: block;
|
|
margin: 6px;
|
|
}
|
|
|
|
.statistic_profile_left_right {
|
|
width: auto;
|
|
height: 190px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.time_profile_left_right {
|
|
width: auto;
|
|
height: 200px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.time_profile_left_right.floatRight {
|
|
height: 140px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
float: right;
|
|
padding: 10px;
|
|
width: 380px;
|
|
}
|
|
|
|
.statistic_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#statistic_profile {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
#statistic_profile .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#statistic_profile .active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#time_profile {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
#time_profile .option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#time_profile .active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#statistic_profile_content {
|
|
float: left;
|
|
width: auto;
|
|
height: 80px;
|
|
padding: 5px;
|
|
margin-bottom: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
#time_profile_content {
|
|
float: left;
|
|
width: auto;
|
|
height: 80px;
|
|
padding: 5px;
|
|
margin-bottom: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
.statistic_profile_button_left_holder {
|
|
width: auto;
|
|
max-width: 180px;
|
|
}
|
|
|
|
.statistic_profile_button_right_holder {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
}
|
|
|
|
.time_profile_button_right_holder {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
.statistic_profile_note {
|
|
width: 430px;
|
|
padding: 3px;
|
|
color: black;
|
|
font-size: 11px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#missing_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
margin: 0px 8px 8px 0px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#status_profile_holder {
|
|
float: left;
|
|
width: 190px;
|
|
height: 150px;
|
|
margin: 0px 8px 8px 0px;
|
|
color: #1E88E5;
|
|
height: auto;
|
|
}
|
|
|
|
#divStatusProfile {
|
|
position: relative;
|
|
}
|
|
|
|
#missing_profile {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
#missing_profile div.option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#missing_profile div.active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#status_profile {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
#status_profile div.option {
|
|
padding: 2px 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#status_profile div.active {
|
|
padding: 2px 5px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
|
|
#status_casi {
|
|
height: 150px;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
}
|
|
|
|
#missing_profile_data_holder {
|
|
float: right;
|
|
width: 490px;
|
|
padding: 10px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#status_profile_data_holder {
|
|
float: right;
|
|
width: 490px;
|
|
padding: 10px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#missingProfileFieldsetHolder {
|
|
width: 470px;
|
|
padding: 5px;
|
|
margin: 0px;
|
|
margin-bottom: 5px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#statusProfileFieldsetHolder {
|
|
width: 470px;
|
|
padding: 5px;
|
|
margin: 0px;
|
|
margin-bottom: 5px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#conditionProfileButtons {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#tbl_color_ersidual {
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
border-collapse: collapse;
|
|
margin: 0px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#variableTypeNote {
|
|
display: inline-block;
|
|
width: auto;
|
|
padding: 3px 10px;
|
|
margin-bottom: 4px;
|
|
line-height: 2em;
|
|
vertical-align: middle;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#variableProfileNote {
|
|
display: inline-block;
|
|
width: auto;
|
|
padding: 3px 10px;
|
|
margin-bottom: 4px;
|
|
line-height: 2em;
|
|
vertical-align: middle;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#variableProfileNote div.if_content {
|
|
display: inline-block;
|
|
}
|
|
|
|
#timeProfileDafaultNote {
|
|
display: inline-block;
|
|
width: auto;
|
|
padding: 3px 10px;
|
|
margin-bottom: 4px;
|
|
line-height: 2em;
|
|
vertical-align: middle;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#dashboardEmailFilter {
|
|
display: inline-block;
|
|
width: auto;
|
|
padding: 3px 10px;
|
|
margin-bottom: 4px;
|
|
line-height: 2em;
|
|
vertical-align: middle;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#not_default_setting {
|
|
padding: 5px;
|
|
width: auto;
|
|
margin-bottom: 15px;
|
|
border: 1px solid #FF0000;
|
|
background-color: #FF0000;
|
|
}
|
|
|
|
input#startDate {
|
|
width: 80px;
|
|
}
|
|
|
|
input#endDate {
|
|
width: 80px;
|
|
}
|
|
|
|
#vp_list {
|
|
float: right;
|
|
overflow: auto;
|
|
width: 430px;
|
|
padding: 10px;
|
|
margin: 0 10px;
|
|
color: #E5E5E5;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vp_list ul {
|
|
display: inline-block;
|
|
padding: 0 3px;
|
|
max-height: 400px;
|
|
width: auto;
|
|
}
|
|
#vp_list ul li {
|
|
list-style-type: none;
|
|
display: inline-block;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
padding: 5px;
|
|
margin-bottom: 5px;
|
|
background-color: #FFFFFF;
|
|
color: #E5E5E5;
|
|
}
|
|
#vp_list ul li label {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#vp_list ul li.selected {
|
|
background-color: #FFFFFF !important;
|
|
outline: 0 !important;
|
|
color: #1E88E5 !important;
|
|
}
|
|
|
|
#div_condition_profiles {
|
|
width: 1010px;
|
|
height: auto !important;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
}
|
|
|
|
#div_time_profiles {
|
|
width: 620px;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
}
|
|
|
|
#div_zanka_profiles {
|
|
width: 730px;
|
|
height: 430px;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
}
|
|
|
|
#newProfile {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 20;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
#newProfileDiv {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 20;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
#renameProfileDiv {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 20;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
#deleteProfileDiv {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 20;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
/*
|
|
Uvoz vprasanj iz texta znotraj ankete (popup)
|
|
Created on : 6-Nov-2018
|
|
Author : peter hrvatin
|
|
*/
|
|
#popup_import_from_text {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
height: auto;
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
line-height: 18px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text {
|
|
height: auto;
|
|
overflow: auto;
|
|
}
|
|
#popup_import_from_text .anketa_from_text h2 {
|
|
margin-top: 0;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder {
|
|
float: left;
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
resize: none;
|
|
padding: 20px;
|
|
border: 1px #1E88E5 solid !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder {
|
|
float: right;
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
padding: 20px;
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.title {
|
|
font-size: 18px;
|
|
line-height: 30px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] {
|
|
display: none !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: #E5E5E5;
|
|
letter-spacing: 8px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 14-Aug-2018, 11:40:15
|
|
Author : podkrizniku
|
|
*/
|
|
/* Arhiv */
|
|
#div_analiza_archive_name {
|
|
min-width: 900px;
|
|
width: auto;
|
|
padding-bottom: 50px !important;
|
|
}
|
|
|
|
.div_curent_archives {
|
|
margin-top: 10px;
|
|
padding: 20px 5px 20px 5px;
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
border-top: 1px dashed #E5E5E5;
|
|
}
|
|
|
|
.arch_tbl {
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
}
|
|
.arch_tbl th {
|
|
padding: 3px;
|
|
}
|
|
.arch_tbl td {
|
|
padding: 3px;
|
|
}
|
|
|
|
#arch_body {
|
|
text-align: center;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
padding: 0px;
|
|
background: none;
|
|
background-color: white;
|
|
color: black;
|
|
font-size: 11px;
|
|
width: 100%;
|
|
}
|
|
#arch_body .anl_more {
|
|
display: none;
|
|
}
|
|
|
|
#arch_body_div {
|
|
margin: auto;
|
|
width: auto;
|
|
max-width: 1024px;
|
|
background-color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.arch_body_div {
|
|
margin: auto;
|
|
width: auto;
|
|
max-width: 1024px;
|
|
background-color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.arch_head_date {
|
|
float: right;
|
|
width: auto;
|
|
height: 50px;
|
|
}
|
|
|
|
#div_archives_email_buttons {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#div_archives_email_left {
|
|
width: 590px;
|
|
float: left;
|
|
}
|
|
|
|
#div_archives_email_right {
|
|
width: 300px;
|
|
float: right;
|
|
}
|
|
|
|
dl.arch_email dd {
|
|
margin-left: 60px;
|
|
position: relative;
|
|
top: -1.1em;
|
|
}
|
|
|
|
#email_archive_text {
|
|
height: 150px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 23-Jul-2018, 10:43:58
|
|
Author : podkrizniku
|
|
*/
|
|
/**
|
|
*
|
|
* 1KA template, from which other skins are derived. Every skin usees this template as a base!
|
|
*
|
|
* - always use relative font sizes (em, %)
|
|
* - using relative font sizes, one can adjust all skin font sizes using one options (eg. increase all by 15%)
|
|
*
|
|
*/
|
|
/*
|
|
* USED FROM: template.css
|
|
*/
|
|
#preview_spremenljivka {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
height: auto;
|
|
max-height: 500px;
|
|
width: 60vw;
|
|
}
|
|
#preview_spremenljivka .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#preview_spremenljivka .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#preview_spremenljivka .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#preview_spremenljivka .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#preview_spremenljivka h2,
|
|
#preview_spremenljivka .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#preview_spremenljivka p {
|
|
line-height: 20px;
|
|
}
|
|
#preview_spremenljivka .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#preview_spremenljivka .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#preview_spremenljivka.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#preview_spremenljivka .buttons_holder {
|
|
margin-top: 30px;
|
|
}
|
|
#preview_spremenljivka h1 {
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka h1 span {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka h1, #preview_spremenljivka h2, #preview_spremenljivka h3 {
|
|
font-size: 20px;
|
|
line-height: 27px;
|
|
font-weight: 500;
|
|
}
|
|
#preview_spremenljivka input {
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#preview_spremenljivka select {
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka textarea {
|
|
vertical-align: middle;
|
|
width: 40%;
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
#preview_spremenljivka input[type=text] {
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .disabled {
|
|
border: 1px solid silver;
|
|
}
|
|
#preview_spremenljivka img {
|
|
border: none;
|
|
max-width: 800px;
|
|
}
|
|
#preview_spremenljivka label {
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka table.grid_header_table label {
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka input[type=radio] {
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka input[type=checkbox] {
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka #admin_options {
|
|
position: absolute;
|
|
left: 20px;
|
|
}
|
|
#preview_spremenljivka #admin_options a {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0 2px;
|
|
}
|
|
#preview_spremenljivka #admin_options a.printView {
|
|
background: url("../../../admin/survey/icons/icons/printer.png");
|
|
}
|
|
#preview_spremenljivka #admin_options a.normalView {
|
|
background: url("../../../admin/survey/icons/icons/pencil_go.png");
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #admin_options a.pdfExport {
|
|
background: url("../../../admin/survey/icons/icons/page_white_acrobat.png");
|
|
}
|
|
#preview_spremenljivka #admin_options a.embed_out {
|
|
background: url("../../../admin/survey/icons/icons/page_copy.png");
|
|
width: 23px;
|
|
}
|
|
#preview_spremenljivka .printDiv {
|
|
border: 1px solid gray;
|
|
padding: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
#preview_spremenljivka #logo {
|
|
position: absolute;
|
|
background: url("../../../main/survey/skins/Default/logo-small.png") no-repeat scroll 100% 0 transparent;
|
|
right: 0px;
|
|
}
|
|
#preview_spremenljivka #logo a {
|
|
display: block;
|
|
width: 96px;
|
|
height: 45px;
|
|
text-indent: -9999px;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder {
|
|
position: absolute;
|
|
right: 20px;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar span {
|
|
float: left;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar div {
|
|
display: inline-block;
|
|
width: 100px;
|
|
height: 16px;
|
|
border: 1px solid black;
|
|
margin: 0 10px;
|
|
float: left;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar div span {
|
|
display: inline-block;
|
|
background-color: #1E88E5;
|
|
height: 16px;
|
|
float: none;
|
|
}
|
|
#preview_spremenljivka #preview {
|
|
position: fixed;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 200px;
|
|
text-align: center;
|
|
z-index: 100;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
font-size: 90%;
|
|
}
|
|
#preview_spremenljivka #preview select {
|
|
font-size: 100%;
|
|
}
|
|
#preview_spremenljivka div.buttons {
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka #footer_survey {
|
|
text-align: center;
|
|
font-size: 90%;
|
|
}
|
|
#preview_spremenljivka #footer_survey p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_mobile {
|
|
margin-bottom: 10px;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_UL {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_FDV {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_PoweredBy {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka .display_none {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka .clr {
|
|
clear: both;
|
|
}
|
|
#preview_spremenljivka .floatLeft {
|
|
float: left;
|
|
display: inline;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka .spremenljivka_info {
|
|
color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka .variabla {
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka.tip_7 .variabla label {
|
|
padding: 5px 10px 5px 0;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka.tip_21 .variabla label {
|
|
padding: 5px 10px 5px 0;
|
|
}
|
|
#preview_spremenljivka span.reminder {
|
|
position: absolute;
|
|
color: #FF0000;
|
|
left: -8px;
|
|
}
|
|
#preview_spremenljivka div.naslov {
|
|
position: relative;
|
|
float: left;
|
|
width: auto;
|
|
min-width: 100px;
|
|
max-width: 100%;
|
|
padding: 0 0 20px 0;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 500;
|
|
}
|
|
#preview_spremenljivka p.spremenljivka_info {
|
|
font-size: 80%;
|
|
}
|
|
#preview_spremenljivka .variable_holder {
|
|
padding: 0 10px;
|
|
}
|
|
#preview_spremenljivka table.grid_table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
text-align: center;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignLeft {
|
|
text-align: left !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignRight {
|
|
text-align: right !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignCenter {
|
|
text-align: center !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table label {
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka table.grid_table td {
|
|
padding: 5px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
#preview_spremenljivka thead {
|
|
font-weight: 600;
|
|
}
|
|
#preview_spremenljivka td.question {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka td.differential {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka table td.question input {
|
|
width: 80px;
|
|
}
|
|
#preview_spremenljivka table.grid_table.multigriddropdown {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka td.category input[type=text] {
|
|
border: 0;
|
|
outline: 1px solid #4ca0ea;
|
|
}
|
|
#preview_spremenljivka td.category textarea {
|
|
border: 0;
|
|
outline: 1px solid #4ca0ea;
|
|
}
|
|
#preview_spremenljivka table.doublegrid thead tr:first-child {
|
|
height: 30px;
|
|
}
|
|
#preview_spremenljivka table.doublecheckgrid thead tr:first-child {
|
|
height: 30px;
|
|
}
|
|
#preview_spremenljivka col.space {
|
|
width: 5%;
|
|
}
|
|
#preview_spremenljivka td.double {
|
|
border-left: 1px solid black;
|
|
}
|
|
#preview_spremenljivka .width_5 {
|
|
width: 5%;
|
|
}
|
|
#preview_spremenljivka .width_10 {
|
|
width: 10%;
|
|
}
|
|
#preview_spremenljivka .width_15 {
|
|
width: 15%;
|
|
}
|
|
#preview_spremenljivka .width_20 {
|
|
width: 20%;
|
|
}
|
|
#preview_spremenljivka .width_25 {
|
|
width: 25%;
|
|
}
|
|
#preview_spremenljivka .width_30 {
|
|
width: 30%;
|
|
}
|
|
#preview_spremenljivka .width_33 {
|
|
width: 33.3%;
|
|
}
|
|
#preview_spremenljivka .width_35 {
|
|
width: 35%;
|
|
}
|
|
#preview_spremenljivka .width_40 {
|
|
width: 40%;
|
|
}
|
|
#preview_spremenljivka .width_45 {
|
|
width: 45%;
|
|
}
|
|
#preview_spremenljivka .width_50 {
|
|
width: 50%;
|
|
}
|
|
#preview_spremenljivka .width_55 {
|
|
width: 55%;
|
|
}
|
|
#preview_spremenljivka .width_60 {
|
|
width: 60%;
|
|
}
|
|
#preview_spremenljivka .width_65 {
|
|
width: 65%;
|
|
}
|
|
#preview_spremenljivka .width_70 {
|
|
width: 70%;
|
|
}
|
|
#preview_spremenljivka .width_75 {
|
|
width: 75%;
|
|
}
|
|
#preview_spremenljivka .width_80 {
|
|
width: 80%;
|
|
}
|
|
#preview_spremenljivka .width_85 {
|
|
width: 85%;
|
|
}
|
|
#preview_spremenljivka .width_90 {
|
|
width: 90%;
|
|
}
|
|
#preview_spremenljivka .width_95 {
|
|
width: 95%;
|
|
}
|
|
#preview_spremenljivka .width_100 {
|
|
width: 100%;
|
|
}
|
|
#preview_spremenljivka table.text_vrednost {
|
|
table-layout: fixed;
|
|
text-align: left;
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka .limit {
|
|
color: #FF0000;
|
|
cursor: default;
|
|
white-space: nowrap;
|
|
}
|
|
#preview_spremenljivka table.ranking_table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka table.ranking_table td {
|
|
width: 45%;
|
|
padding: 5px;
|
|
vertical-align: top;
|
|
}
|
|
#preview_spremenljivka table.ranking_table td.middle {
|
|
width: 10%;
|
|
vertical-align: top;
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka table.ranking_table ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka td.middle img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-left: -20px;
|
|
}
|
|
#preview_spremenljivka .handle {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .handle_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .ime {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .izbran {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .ranking {
|
|
cursor: pointer;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#preview_spremenljivka .ranking_long {
|
|
cursor: pointer;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#preview_spremenljivka .frame_ranking {
|
|
width: 230px !important;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed #000000;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#preview_spremenljivka .dropholder {
|
|
position: relative;
|
|
padding-top: 11px;
|
|
}
|
|
#preview_spremenljivka .dropholder .dropzone {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
#preview_spremenljivka .dropzone {
|
|
border-top: 1px solid black;
|
|
min-height: 100px;
|
|
padding-top: 10px;
|
|
}
|
|
#preview_spremenljivka .frame_dropping {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#preview_spremenljivka .frame_dropping_titles {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 0px auto;
|
|
height: 15px;
|
|
text-align: center;
|
|
background-color: #FFFFFF;
|
|
border-top: 1px solid #1E88E5;
|
|
border-left: 1px solid #1E88E5;
|
|
border-right: 1px solid #1E88E5;
|
|
}
|
|
#preview_spremenljivka .moving {
|
|
cursor: pointer;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 230px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#preview_spremenljivka .frame_moving {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed #000000;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#preview_spremenljivka ul.sorting {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka .sortholder {
|
|
margin: 0 auto;
|
|
width: 250px;
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .sortzone {
|
|
position: absolute;
|
|
margin: 0 auto 0 auto;
|
|
width: 250px;
|
|
}
|
|
#preview_spremenljivka .spremenljivka.tip_17 input {
|
|
width: 50px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum {
|
|
text-align: right;
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum input {
|
|
width: 50px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum.sum {
|
|
float: left;
|
|
border-top: 1px solid black;
|
|
}
|
|
#preview_spremenljivka .stat {
|
|
float: right;
|
|
}
|
|
#preview_spremenljivka #vnos {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
border: 3px solid #E5E5E5;
|
|
background-color: #eee;
|
|
text-align: center;
|
|
padding: 3px;
|
|
}
|
|
#preview_spremenljivka p.vnos {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka .content_status {
|
|
border: none;
|
|
padding-bottom: 2px;
|
|
}
|
|
#preview_spremenljivka .content_status span {
|
|
display: inline-table;
|
|
}
|
|
#preview_spremenljivka .counter {
|
|
float: left;
|
|
width: auto;
|
|
padding-top: 5px;
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka div.comment {
|
|
font-style: italic;
|
|
color: #FF0000;
|
|
float: left;
|
|
width: 98%;
|
|
padding-top: 5px;
|
|
display: block;
|
|
border-top: 1px dashed #cccccc;
|
|
}
|
|
#preview_spremenljivka #edit_warning {
|
|
width: 380px;
|
|
margin: -15px 0 5px 15px;
|
|
padding: 5px;
|
|
border: 2px red solid;
|
|
}
|
|
#preview_spremenljivka .arrow {
|
|
cursor: pointer;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 auto;
|
|
}
|
|
#preview_spremenljivka #arrow_up {
|
|
background-image: url("../../../main/survey/skins/Default/arrowU.png");
|
|
}
|
|
#preview_spremenljivka #arrow_up:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowU2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_down {
|
|
background-image: url("../../../main/survey/skins/Default/arrowD.png");
|
|
}
|
|
#preview_spremenljivka #arrow_down:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowD2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_left {
|
|
background-image: url("../../../main/survey/skins/Default/arrowL.png");
|
|
}
|
|
#preview_spremenljivka #arrow_left:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowL2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_right {
|
|
background-image: url("../../../main/survey/skins/Default/arrowR.png");
|
|
}
|
|
#preview_spremenljivka #arrow_right:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowR2.png");
|
|
}
|
|
#preview_spremenljivka #dynamic_count {
|
|
width: 60px;
|
|
padding: 7px 0;
|
|
font-weight: bold;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.popup_content.consulting {
|
|
font-weight: 600;
|
|
padding: 20px 20px;
|
|
text-align: center;
|
|
}
|
|
.popup_content.consulting .row {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 10px 0;
|
|
}
|
|
.popup_content.consulting .row .col {
|
|
min-width: 120px;
|
|
}
|
|
.popup_content.consulting .row .col a {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.popup_content.dodeljeni_uporabniki ul {
|
|
overflow: auto;
|
|
max-height: 60vh;
|
|
padding: 10px;
|
|
margin: 0 0 20px 0;
|
|
list-style-type: none;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
.popup_content.dodeljeni_uporabniki ul li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
line-height: 24px;
|
|
padding: 0 5px;
|
|
}
|
|
.popup_content.dodeljeni_uporabniki ul li:hover {
|
|
background-color: #1E88E5;
|
|
}
|
|
.popup_content.dodeljeni_uporabniki h4 {
|
|
margin: 0 0 5px 0;
|
|
}
|
|
.popup_content.dodeljeni_uporabniki .add_user {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 50px;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
|
|
#custom_report_alert {
|
|
display: none;
|
|
margin-left: -200px;
|
|
width: 280px;
|
|
height: 100px;
|
|
}
|
|
#custom_report_alert .buttons {
|
|
position: absolute;
|
|
right: 10px;
|
|
bottom: 15px;
|
|
}
|
|
|
|
/*
|
|
Urejanje vprasalnika - popupi
|
|
*/
|
|
#vrednost_edit {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
z-index: 89;
|
|
min-height: 130px;
|
|
width: 600px;
|
|
}
|
|
#vrednost_edit .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#vrednost_edit .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#vrednost_edit .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#vrednost_edit .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#vrednost_edit h2,
|
|
#vrednost_edit .divPopUp_top {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#vrednost_edit p {
|
|
line-height: 20px;
|
|
}
|
|
#vrednost_edit .button_holder {
|
|
justify-content: end !important;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#vrednost_edit .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#vrednost_edit.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#vrednost_edit p {
|
|
padding: 1px 3px;
|
|
}
|
|
#vrednost_edit div {
|
|
padding: -10px;
|
|
}
|
|
#vrednost_edit textarea[name=naslov] {
|
|
width: 99%;
|
|
height: 60px;
|
|
}
|
|
|
|
/*
|
|
Specific pages scss
|
|
*/
|
|
/* font awesom za admin */
|
|
#variable_holder input[type=checkbox].enka-admin-custom,
|
|
#variable_holder input[type=radio].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
|
|
#variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
#variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: #E5E5E5;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#variable_holder input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
#variable_holder input[type=radio].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before {
|
|
display: inline-block;
|
|
float: left;
|
|
padding-top: 4px;
|
|
padding-left: 4px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f096";*/
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
|
|
#variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f10c";*/
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
|
|
/* select, checked */
|
|
#variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f046";*/
|
|
content: "";
|
|
color: #E5E5E5;
|
|
letter-spacing: 8px;
|
|
}
|
|
|
|
#variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f192";*/
|
|
content: "";
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
Osnova za branching
|
|
*/
|
|
#placeholder {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0 0 0 0;
|
|
}
|
|
|
|
#branching {
|
|
min-height: 400px;
|
|
width: calc(100% - 401px - 304px);
|
|
margin: 0 0 0 304px;
|
|
background-color: white;
|
|
}
|
|
#branching ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0;
|
|
margin: 0;
|
|
/*> ul{
|
|
padding-left: 25px;
|
|
|
|
> ul{
|
|
padding-left: 25px;
|
|
|
|
ul{
|
|
padding-left: 25px;
|
|
}
|
|
}
|
|
}*/
|
|
}
|
|
#branching ul li {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
#branching ul li.drop {
|
|
height: 16px;
|
|
}
|
|
#branching ul li.drop:hover .pb_new {
|
|
display: flex;
|
|
}
|
|
#branching ul li.drop:hover .pb_icon {
|
|
display: block;
|
|
}
|
|
#branching ul li.nodrop {
|
|
height: 16px;
|
|
}
|
|
#branching ul li.nodrop:hover .pb_new {
|
|
display: flex;
|
|
}
|
|
#branching ul li.nodrop:hover .pb_icon {
|
|
display: block;
|
|
}
|
|
#branching ul li .pb_on,
|
|
#branching ul li .pb_new {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#branching ul li .pb_on.pb_new,
|
|
#branching ul li .pb_new.pb_new {
|
|
display: none;
|
|
}
|
|
#branching ul li .pb_on.permanent,
|
|
#branching ul li .pb_new.permanent {
|
|
cursor: default;
|
|
}
|
|
#branching ul li .pb_on .pb_page,
|
|
#branching ul li .pb_new .pb_page {
|
|
width: 130px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
color: #A9A9A9;
|
|
}
|
|
#branching ul li .pb_on .pb_line,
|
|
#branching ul li .pb_new .pb_line {
|
|
width: 100%;
|
|
height: 1px;
|
|
border-bottom: 1px #D3D3D3 solid;
|
|
}
|
|
#branching ul li .pb_on .pb_icon,
|
|
#branching ul li .pb_new .pb_icon {
|
|
display: none;
|
|
}
|
|
#branching ul li .pb_on .pb_icon:before,
|
|
#branching ul li .pb_new .pb_icon:before {
|
|
content: "A";
|
|
}
|
|
#branching li.spr.ui-draggable-dragging {
|
|
z-index: 99999;
|
|
}
|
|
#branching li.drop.branchinghover {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
#branching li.drop.branchinghover a {
|
|
display: none;
|
|
}
|
|
#branching li.nodrop.branchinghover {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
#branching li.nodrop.branchinghover a {
|
|
display: none;
|
|
}
|
|
#branching .variable_name {
|
|
cursor: move;
|
|
}
|
|
#branching #bottom_icons_holder {
|
|
display: none;
|
|
}
|
|
|
|
.branchinghover {
|
|
background: url("../../../admin/survey/img_0/hover_background.png") repeat-x top left !important;
|
|
}
|
|
|
|
.blockSwitch {
|
|
position: relative;
|
|
margin: 10px auto 0;
|
|
text-align: center;
|
|
}
|
|
.blockSwitch p {
|
|
display: inline;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Okno za drop vprasanja, ko je anketa prazna */
|
|
.empty_vrivanje {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin: 20px 0px 20px 45px !important;
|
|
padding: 60px 0 !important;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
.empty_vrivanje .empty_vrivanje_title {
|
|
margin: 0 auto;
|
|
padding: 8px 20px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #1E88E5;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
.empty_vrivanje .empty_vrivanje_subtitle {
|
|
margin: 15px auto 0 auto;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
.empty_vrivanje .empty_vrivanje_subtitle a {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.empty_vrivanje.branchinghover {
|
|
color: white;
|
|
background: 0 !important;
|
|
background-color: #E5E5E5;
|
|
}
|
|
.empty_vrivanje.branchinghover a {
|
|
display: inline !important;
|
|
color: white;
|
|
}
|
|
.empty_vrivanje.branchinghover .empty_vrivanje_title {
|
|
color: white;
|
|
background-color: #E5E5E5;
|
|
border-color: white;
|
|
}
|
|
|
|
/*
|
|
Levi toolbox v urejanju ankete (dodajanje vprasanj...)
|
|
*/
|
|
.toolbox_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 220px;
|
|
background-color: #F2F2F2;
|
|
}
|
|
.toolbox_holder .toolbox {
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item {
|
|
display: flex;
|
|
padding: 0 12px 0 0;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon {
|
|
width: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon:before {
|
|
font-size: 16px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.matrix_32 {
|
|
margin-top: 7px;
|
|
line-height: 9px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.matrix_32:before {
|
|
font-size: 11px !important;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.abc_32, .toolbox_holder .toolbox .toolbox_item .item_icon.number_32 {
|
|
margin-top: -1px;
|
|
line-height: 40px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.abc_32:before, .toolbox_holder .toolbox .toolbox_item .item_icon.number_32:before {
|
|
font-size: 14px !important;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_text {
|
|
font-size: 14px;
|
|
line-height: 40px;
|
|
text-indent: 3px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_adv {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_adv:hover {
|
|
background-color: #0059ab;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_block {
|
|
border-bottom: none;
|
|
}
|
|
.toolbox_holder .toolbox #locked_toolbar {
|
|
position: absolute;
|
|
top: 1px;
|
|
left: 1px;
|
|
width: 45px;
|
|
height: 194px;
|
|
padding: 140px 0 0 3px;
|
|
background: rgba(30, 136, 229, 0.85);
|
|
}
|
|
.toolbox_holder .toolbox #locked_toolbar span.lock_big {
|
|
margin-left: 13px;
|
|
}
|
|
.toolbox_holder .toolbox #toolbox_basic.forma {
|
|
height: 266px;
|
|
top: 235px;
|
|
}
|
|
.toolbox_holder .toolbox #toolbox_basic.forma #locked_toolbar {
|
|
height: 199px;
|
|
padding-top: 85px;
|
|
}
|
|
.toolbox_holder .toolbox_expand {
|
|
display: none;
|
|
cursor: auto;
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
z-index: 99;
|
|
top: 220px;
|
|
left: 245px;
|
|
width: 272px;
|
|
color: #333333;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_title {
|
|
margin: 16px 16px 0 16px;
|
|
padding-bottom: 10px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_title .subtitle {
|
|
display: block;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segments_holder {
|
|
max-height: 450px;
|
|
overflow-y: scroll;
|
|
padding-bottom: 16px;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_title {
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_option {
|
|
cursor: pointer;
|
|
padding: 5px 16px 5px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_option:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder {
|
|
width: 300px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment {
|
|
margin-top: 0;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option {
|
|
padding: 7px 16px 7px 16px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a .faicon,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a .faicon:before,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview {
|
|
display: none;
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
z-index: 9999;
|
|
top: 220px;
|
|
box-sizing: border-box;
|
|
width: 450px;
|
|
max-height: 520px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub {
|
|
display: none;
|
|
padding: 16px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub > span {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample {
|
|
overflow: hidden;
|
|
margin-top: 10px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_text {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option div {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
text-align: center;
|
|
margin-bottom: 3px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 {
|
|
width: 100%;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 div {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
text-align: center;
|
|
margin-bottom: 3px;
|
|
width: 60px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub input[type=radio],
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub input[type=checkbox] {
|
|
overflow: auto !important;
|
|
padding: auto !important;
|
|
clip: auto !important;
|
|
border: auto !important;
|
|
position: relative;
|
|
width: 16px !important;
|
|
height: 16px !important;
|
|
margin: 0 8px 0 0 !important;
|
|
vertical-align: -1px;
|
|
}
|
|
.toolbox_holder.open {
|
|
width: 240px;
|
|
}
|
|
.toolbox_holder.closed {
|
|
width: 40px;
|
|
}
|
|
.toolbox_holder.closed .toolbox_item .item_text {
|
|
display: none;
|
|
}
|
|
.toolbox_holder.closed .toolbox_expand {
|
|
left: 55px;
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: none;
|
|
}
|
|
|
|
.mobile_add_question_popup {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 11:04:39
|
|
Author : podkrizniku
|
|
*/
|
|
.nastavitveSpan4 {
|
|
display: table-cell;
|
|
float: left;
|
|
font-weight: 500;
|
|
width: 55%;
|
|
clear: both;
|
|
}
|
|
|
|
.nastavitveSpan5 {
|
|
display: table-cell;
|
|
float: left;
|
|
font-weight: 500;
|
|
width: 25%;
|
|
clear: both;
|
|
}
|
|
|
|
select#skin_anketa {
|
|
max-width: 120px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
select#skin {
|
|
max-width: 120px;
|
|
margin: 4px 0 2px 0;
|
|
}
|
|
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main {
|
|
display: flex;
|
|
/* Leve nastavitve */
|
|
/* Srednji del */
|
|
/* Desne nastavitve */
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings {
|
|
width: 330px;
|
|
min-width: 290px;
|
|
margin: 20px 0 0 0;
|
|
padding: 0;
|
|
line-height: 18px;
|
|
background-color: white;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .more {
|
|
float: right;
|
|
margin: 5px 20px 10px 0;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .less {
|
|
float: right;
|
|
margin: 5px 20px 10px 0;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_holder {
|
|
height: 35px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
background-color: #1E88E5;
|
|
width: 100%;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_content {
|
|
padding: 8px 0px 7px 0px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_content .header_left {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
width: auto;
|
|
float: left;
|
|
padding-left: 10px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings fieldset {
|
|
margin: 11px 10px;
|
|
padding: 3px 5px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings legend {
|
|
margin: 0;
|
|
padding: 0 10px 0 5px;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: #1E88E5;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder {
|
|
margin: 85px 0 0 20px;
|
|
max-width: 1100px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje {
|
|
padding: 3px;
|
|
min-height: 400px;
|
|
width: calc(96% - 315px);
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul.first {
|
|
margin: 1px 0 0 0 !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul li {
|
|
margin-left: 0px !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #vprasanje_float_editing {
|
|
margin-top: 45px !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder {
|
|
position: absolute;
|
|
right: calc(3% + 5px);
|
|
margin-left: -5px;
|
|
top: 222px;
|
|
height: auto;
|
|
width: 310px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings {
|
|
padding: 5px 15px;
|
|
width: 315px;
|
|
box-sizing: border-box;
|
|
float: right;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings fieldset {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings .form_bottom_settings {
|
|
margin: 0 8px 10px 8px;
|
|
padding: 0 0 5px 10px;
|
|
background-color: inherit;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje {
|
|
padding: 1px 0 10px 10px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
|
|
padding: 2px;
|
|
border: 0;
|
|
background-color: #FFC700;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 13:34:26
|
|
Author : podkrizniku
|
|
*/
|
|
#branching.expanded.branching_forma ul.first {
|
|
margin-top: 59px !important;
|
|
}
|
|
#branching.expanded.branching_forma ul.first li.empty_vrivanje {
|
|
margin-top: -45px !important;
|
|
}
|
|
|
|
#branching.collapsed.branching_forma ul.first {
|
|
margin-top: 66px !important;
|
|
}
|
|
|
|
#anketa_edit.forma #quick_settings_holder {
|
|
position: absolute;
|
|
right: 5%;
|
|
top: 235px;
|
|
height: auto;
|
|
width: 310px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings {
|
|
padding: 5px 15px;
|
|
width: 315px;
|
|
box-sizing: border-box;
|
|
float: right;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings fieldset {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings .form_bottom_settings {
|
|
margin: 0 8px 10px 8px;
|
|
padding: 0 0 5px 10px;
|
|
background-color: inherit;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje {
|
|
padding: 1px 0 10px 10px;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
|
|
padding: 2px;
|
|
border: 0;
|
|
background-color: #FFC700;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 13:12:19
|
|
Author : podkrizniku
|
|
*/
|
|
.editmenu {
|
|
float: right;
|
|
margin: 2px 0px 0px 0px;
|
|
padding: 2px;
|
|
padding-right: 10px;
|
|
border: 0;
|
|
position: static;
|
|
}
|
|
|
|
.extra_opt {
|
|
margin-right: 10px;
|
|
}
|
|
.extra_opt a {
|
|
color: black;
|
|
text-decoration: none;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.intro_concl {
|
|
float: left;
|
|
font-size: 12px;
|
|
color: #E5E5E5;
|
|
padding: 4px;
|
|
}
|
|
|
|
.save_button {
|
|
float: right;
|
|
margin: 10px 0px;
|
|
padding-right: 10px;
|
|
z-index: 50;
|
|
}
|
|
|
|
li.spr div.edit_mode {
|
|
display: none;
|
|
}
|
|
li.spr div.preview_mode {
|
|
display: block;
|
|
}
|
|
li.spr thead.edit_mode {
|
|
display: none;
|
|
}
|
|
li.spr .editingOnly {
|
|
visibility: hidden;
|
|
}
|
|
li.spr span.inline_other {
|
|
display: none;
|
|
}
|
|
li.spr #variabla_new span.inline_other {
|
|
display: inline;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
div[contenteditable][default="1"][vre_id=new] {
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
div.stolpci {
|
|
float: left;
|
|
}
|
|
div.stolpci span.inline_delete {
|
|
display: none;
|
|
}
|
|
div.stolpci span.inline_edit {
|
|
display: none;
|
|
}
|
|
|
|
div#variabla_new span.inline_move {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_edit {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_delete {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_if_follow {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_if_not {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_hidden {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.correct {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.show-hidden {
|
|
visibility: visible !important;
|
|
}
|
|
|
|
.show-disable {
|
|
visibility: visible !important;
|
|
}
|
|
|
|
.show-correct {
|
|
visibility: visible !important;
|
|
color: #1e88e5 !important;
|
|
}
|
|
|
|
.show-correct:before {
|
|
visibility: visible !important;
|
|
color: #33cc33 !important;
|
|
}
|
|
|
|
#vprasanje {
|
|
display: none;
|
|
position: fixed;
|
|
top: 5%;
|
|
bottom: 5%;
|
|
right: 3%;
|
|
width: 80%;
|
|
z-index: 80;
|
|
padding: 10px;
|
|
}
|
|
|
|
.branch {
|
|
margin: 0px 0px 0px 0px;
|
|
padding: 0px 0px 0px 0px;
|
|
}
|
|
|
|
#div_status_values {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 90;
|
|
top: 20px;
|
|
right: 30px;
|
|
width: 720px;
|
|
padding: 10px;
|
|
border: 1px solid #FF0000;
|
|
background-color: #E5E5E5;
|
|
}
|
|
#div_status_values fieldset {
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#div_status_values legend {
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
._branch {
|
|
padding: 0px !important;
|
|
margin: 0px !important;
|
|
}
|
|
|
|
/*question 5_2 - chat*/
|
|
.tawk-chat-activation.button {
|
|
margin: 8px 10px;
|
|
padding: 6px 8px;
|
|
float: left;
|
|
color: white;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 4px;
|
|
}
|
|
.tawk-chat-activation.button:hover {
|
|
background-color: #FFC700;
|
|
border: 1px solid #FFC700;
|
|
}
|
|
|
|
/*bottom links*/
|
|
.forma_bottom {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 30px;
|
|
padding: 40px 10px 20px 45px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.forma_bottom_inner {
|
|
display: inline-block;
|
|
}
|
|
|
|
.forma_bottom_inner.changes {
|
|
float: left;
|
|
width: 220px;
|
|
}
|
|
.forma_bottom_inner.changes table tr td {
|
|
padding: 0 5px 0 0;
|
|
}
|
|
|
|
.forma_bottom_inner.links {
|
|
float: right;
|
|
font-size: 12px;
|
|
}
|
|
.forma_bottom_inner.links a {
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.kviz-editing-correct::before {
|
|
color: #33cc33 !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 06-Aug-2018, 11:37:12
|
|
Author : podkrizniku
|
|
*/
|
|
#branching.collapsed {
|
|
min-height: 317px;
|
|
margin-top: 10px;
|
|
}
|
|
#branching.collapsed li.spr {
|
|
line-height: 28px;
|
|
}
|
|
#branching.collapsed li.spr:hover {
|
|
background-color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.spr div.spr_edit {
|
|
padding-top: 0px;
|
|
margin-top: 0px;
|
|
margin-right: 10px;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing {
|
|
line-height: inherit;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing:hover {
|
|
background: none;
|
|
cursor: auto;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing div.spr_edit {
|
|
padding-top: 2px;
|
|
margin-top: 5px;
|
|
margin-right: 30px;
|
|
}
|
|
#branching.collapsed li.drop {
|
|
height: 6px;
|
|
margin: 2px 0px 2px 50px;
|
|
margin: 0px 0 0px 40px;
|
|
padding: 2px 0px 2px 10px;
|
|
border-left: 2.5px solid transparent;
|
|
}
|
|
#branching.collapsed li.drop span.pb_on {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
#branching.collapsed li.drop span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.drop span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.drop:hover span.pb_on {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.drop:hover span.pb_new {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop {
|
|
height: 6px;
|
|
margin: 2px 0px 2px 50px;
|
|
margin: 0px 0 0px 40px;
|
|
padding: 2px 0px 2px 0px;
|
|
border-left: 2.5px solid transparent;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_on {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.pb_on {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.pb_new {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.permanent {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
cursor: default;
|
|
}
|
|
#branching.collapsed div.if_remove {
|
|
padding-top: 0px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
/*
|
|
Urejanje vprasanja - nastavitve na desni
|
|
*/
|
|
.texteditor {
|
|
width: 98% !important;
|
|
height: 50px;
|
|
margin-top: 0;
|
|
border: 1px solid #cccccc;
|
|
}
|
|
|
|
.texteditor.info {
|
|
height: 14px;
|
|
line-height: 14px;
|
|
width: 100%;
|
|
}
|
|
|
|
#vprasanje_float_editing {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 70;
|
|
align-self: flex-start;
|
|
padding: 0 32px 0 64px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
width: 305px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #FFFFFF;
|
|
background: #FFFFFF;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_header {
|
|
height: 45px;
|
|
padding: 0 7px;
|
|
color: #FFFFFF;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 45px;
|
|
background-color: #1E88E5;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs {
|
|
z-index: 100;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
width: 100%;
|
|
height: 45px;
|
|
margin-bottom: 16px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 45px;
|
|
padding: 0 5px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link.active {
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link.active span {
|
|
color: #333333;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link span {
|
|
height: 25px;
|
|
line-height: 25px;
|
|
font-size: 13px;
|
|
color: #777777;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_edit {
|
|
margin: 0 16px;
|
|
background-color: white;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .button_holder {
|
|
margin: 0 16px 10px 16px;
|
|
padding-top: 8px;
|
|
border-top: 1px #D3D3D3 solid;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-top: 1px solid #D3D3D3;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset legend {
|
|
margin: 0;
|
|
padding: 0 10px 0 0;
|
|
color: #333333;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
text-transform: none;
|
|
background-color: transparent;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 8px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: left;
|
|
min-height: 20px;
|
|
margin-top: 8px;
|
|
line-height: 20px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half {
|
|
justify-content: space-between;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half label {
|
|
width: 50%;
|
|
margin: 0;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half .content {
|
|
width: 50%;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half .content input[type=text],
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half .content select,
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .vprasanje_setting_holder .vprasanje_setting_line.half-half .content textarea {
|
|
width: 100%;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset p,
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset span,
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset label {
|
|
line-height: 20px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset .jquery-selectbox {
|
|
background-color: white;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:54:23
|
|
Author : podkrizniku
|
|
*/
|
|
/*
|
|
Branching element z vprasanjem
|
|
*/
|
|
.editor_display {
|
|
width: 98%;
|
|
background-color: #eee;
|
|
border: 1px solid #cccccc;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.editor_display_small {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.spremenljivka {
|
|
width: 100%;
|
|
}
|
|
|
|
.add-variable-mobile {
|
|
display: none;
|
|
}
|
|
|
|
.add-variable {
|
|
display: none;
|
|
position: absolute;
|
|
left: 59px;
|
|
bottom: 4px;
|
|
}
|
|
.add-variable span {
|
|
position: relative;
|
|
top: 1px;
|
|
margin-right: 5px !important;
|
|
}
|
|
.add-variable a {
|
|
color: #1E88E5;
|
|
}
|
|
.add-variable a:hover {
|
|
color: #FFC700;
|
|
}
|
|
.add-variable .tip_6 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_16 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_19 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_20 {
|
|
left: 52px;
|
|
}
|
|
|
|
.locked .add-variable {
|
|
display: none !important;
|
|
}
|
|
|
|
li.spr {
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit {
|
|
cursor: pointer;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 0;
|
|
right: 0;
|
|
color: #333333;
|
|
height: 45px;
|
|
padding: 10px 14px;
|
|
}
|
|
li.spr .spr_edit a {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
width: 20px;
|
|
height: 20px;
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit a:before, li.spr .spr_edit a:after {
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit a .arhiv {
|
|
background-position: -16px -30px;
|
|
}
|
|
li.spr .spr_edit a .hide {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
li.spr .spr_edit span.scale_ordnom {
|
|
vertical-align: 2px;
|
|
margin-right: 20px;
|
|
}
|
|
li.spr .spr_edit span.scale_ordnom a,
|
|
li.spr .spr_edit span.scale_ordnom span {
|
|
display: inline-block;
|
|
height: 20px;
|
|
width: auto;
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
li.spr:hover .spr_edit {
|
|
display: block;
|
|
}
|
|
li.spr .spremenljivka_content {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
color: #333333;
|
|
background-color: white;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content:hover {
|
|
background-color: white;
|
|
}
|
|
li.spr .spremenljivka_content:hover .add-variable {
|
|
display: block;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 45px;
|
|
padding-left: 14px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .variable_name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
color: #333333;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings {
|
|
display: flex;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings span {
|
|
padding-left: 16px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings .lock_holder {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 6px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode {
|
|
position: relative;
|
|
padding: 24px 32px 32px 32px;
|
|
overflow: hidden;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .naslov {
|
|
display: block;
|
|
width: 100%;
|
|
min-width: 100px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla {
|
|
padding: 0;
|
|
min-height: 20px;
|
|
margin: 8px 0 0 0;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla .move_updown_orange {
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla input {
|
|
float: left;
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .vrednost_inline {
|
|
float: left;
|
|
width: calc(100% - 190px);
|
|
/*max-width: 80%;
|
|
min-width: 160px;*/
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder select {
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla_limit {
|
|
width: auto !important;
|
|
color: #1E88E5;
|
|
margin-top: 6px;
|
|
display: inline-block;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form {
|
|
position: relative;
|
|
padding: 24px 32px 32px 32px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .naslov {
|
|
display: block;
|
|
width: auto;
|
|
min-width: 100px;
|
|
}
|
|
li.spr .spremenljivka_content h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content h3 p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content form {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
padding: 3px;
|
|
}
|
|
li.spr .spremenljivka_content input {
|
|
vertical-align: text-top;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline,
|
|
li.spr .spremenljivka_content .vrednost_inline,
|
|
li.spr .spremenljivka_content .naslov {
|
|
box-sizing: border-box;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline p,
|
|
li.spr .spremenljivka_content .vrednost_inline p,
|
|
li.spr .spremenljivka_content .naslov p {
|
|
padding: 0;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable] {
|
|
cursor: text;
|
|
min-height: 26px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true] {
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true]:hover {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true]:focus {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content .display_editor {
|
|
cursor: pointer;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
right: 40px;
|
|
top: 25px;
|
|
}
|
|
|
|
li.spr_editing .spr_edit {
|
|
display: block;
|
|
}
|
|
li.spr_editing .spr_edit a,
|
|
li.spr_editing .spr_edit span {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spr_edit a:before, li.spr_editing .spr_edit a:after,
|
|
li.spr_editing .spr_edit span:before,
|
|
li.spr_editing .spr_edit span:after {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content {
|
|
background-color: white;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings {
|
|
color: white !important;
|
|
background-color: #1E88E5 !important;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings .spr_settings span.red {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings #spr_settings_intro_concl div.red {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content .content_div_normalmode {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .comment_container_inline {
|
|
border-top: none;
|
|
border-left: 1px solid #1E88E5;
|
|
border-right: 1px solid #1E88E5;
|
|
border-bottom: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_tekst_form {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .add-variable {
|
|
display: none;
|
|
}
|
|
li.spr_editing .content_div_normalmode {
|
|
padding-bottom: 10px;
|
|
}
|
|
li.spr_editing .grid-plus-minus {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing .sub-table {
|
|
display: table-row;
|
|
}
|
|
li.spr_editing div[contenteditable][default="1"] {
|
|
color: #333333;
|
|
}
|
|
li.spr_editing .variable_name {
|
|
color: #FFFFFF !important;
|
|
}
|
|
|
|
.variable_holder.clr {
|
|
height: auto;
|
|
}
|
|
|
|
div.spremenljivka_content.orientation_ob .variable_holder {
|
|
clear: none;
|
|
}
|
|
div.spremenljivka_content.orientation_ob div.variabla {
|
|
clear: none;
|
|
}
|
|
|
|
div.spremenljivka_content h3 p {
|
|
padding: 3px 3px 3px 3px;
|
|
margin: 0;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
margin: 0;
|
|
}
|
|
div.spremenljivka_content span.inline {
|
|
visibility: hidden;
|
|
cursor: pointer;
|
|
float: left;
|
|
}
|
|
div.spremenljivka_content span.inline_edit {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_delete {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_if_not {
|
|
float: right;
|
|
margin: -2px 3px 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_if_follow {
|
|
float: right;
|
|
margin: -3px 3px 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_hidden {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.correct {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_ob .variable_holder {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_ob div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr.spr_editing div.edit_mode {
|
|
display: block;
|
|
}
|
|
li.spr.spr_editing td.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr.spr_editing thead.edit_mode {
|
|
display: table-header-group;
|
|
}
|
|
li.spr.spr_editing .editingOnly {
|
|
visibility: visible;
|
|
}
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_pod div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.stolpci {
|
|
float: none;
|
|
width: auto !important;
|
|
}
|
|
li.spr.spr_editing div.stolpci span.inline_delete {
|
|
display: block;
|
|
}
|
|
li.spr.spr_editing div.stolpci span.inline_edit {
|
|
display: block;
|
|
}
|
|
|
|
.spremenljivka_info {
|
|
font-size: 9px;
|
|
color: #666666;
|
|
padding: 2px;
|
|
clear: both;
|
|
padding: 2px 15px;
|
|
}
|
|
|
|
div.variable_inline {
|
|
display: none;
|
|
float: left;
|
|
width: 30px;
|
|
padding: 2px 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.spr.spr_editing span.display_editor {
|
|
visibility: visible;
|
|
}
|
|
|
|
.spr span.display_editor.show {
|
|
visibility: visible;
|
|
}
|
|
|
|
div.spremenljivka_content.orientation_pod div.variabla {
|
|
clear: none;
|
|
}
|
|
|
|
li.spr_editing div.spremenljivka_content div.variabla span.inline {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing table.grid_header_table span.inline {
|
|
visibility: visible;
|
|
}
|
|
|
|
li div.spremenljivka_content div.variabla span.inline.show {
|
|
visibility: visible;
|
|
}
|
|
li div.spremenljivka_content span.inline_move {
|
|
margin: 2px 8px 0 3px;
|
|
}
|
|
li div.spremenljivka_content span.image_upload {
|
|
margin-top: 4px;
|
|
margin-left: 8px;
|
|
margin-right: 4px;
|
|
float: left;
|
|
}
|
|
|
|
#spr_settings_intro_concl {
|
|
float: left;
|
|
width: auto;
|
|
vertical-align: bottom;
|
|
padding-left: 10px;
|
|
}
|
|
#spr_settings_intro_concl img {
|
|
padding-left: 10px;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
table.text_vrednost {
|
|
text-align: center;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.variable {
|
|
color: #E5E5E5;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.comment_container_inline {
|
|
margin: 0px;
|
|
padding: 4px 15px;
|
|
background-color: #1E88E5;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
.comment_container_inline a.surveycomment {
|
|
font-size: 10px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:52:29
|
|
Author : podkrizniku
|
|
*/
|
|
.slider {
|
|
display: inline-block;
|
|
width: 84.5%;
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
.slider .ui-state-default {
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
.slider .ui-state-hover {
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.sliderText {
|
|
visibility: hidden;
|
|
position: relative;
|
|
text-align: center;
|
|
color: #E5E5E5;
|
|
width: 30px;
|
|
height: 15px;
|
|
padding: 3px;
|
|
margin-top: 7px;
|
|
background: #E5E5E5;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
border: #E5E5E5 solid 1px;
|
|
}
|
|
.sliderText:after {
|
|
content: "";
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-width: 9px 7px 0;
|
|
border-color: #E5E5E5 transparent;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 1;
|
|
bottom: -9px;
|
|
left: 11px;
|
|
}
|
|
.sliderText:before {
|
|
content: "";
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-width: 9px 7px 0;
|
|
border-color: #E5E5E5 transparent;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 0;
|
|
bottom: -10px;
|
|
left: 11px;
|
|
}
|
|
|
|
.classic_slider .ui-slider-handle {
|
|
width: 9px !important;
|
|
height: 14px !important;
|
|
padding: 5px 0;
|
|
margin-left: -5px !important;
|
|
top: -7px !important;
|
|
border-bottom-right-radius: 10px 30px !important;
|
|
border-bottom-left-radius: 10px 30px !important;
|
|
}
|
|
|
|
.special_slider .ui-slider-handle {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
margin-left: -8px !important;
|
|
top: -3px !important;
|
|
border-radius: 10px 10px !important;
|
|
background-color: red !important;
|
|
}
|
|
|
|
.circle_slider .ui-slider-pip .ui-slider-line {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
border-radius: 10px 10px !important;
|
|
margin-left: -8px !important;
|
|
background: #E5E5E5 !important;
|
|
top: -23px !important;
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.elipse_slider .ui-slider-pip .ui-slider-line {
|
|
width: 13px !important;
|
|
height: 30px !important;
|
|
border-radius: 10px 10px !important;
|
|
margin-left: -7px !important;
|
|
background: #E5E5E5 !important;
|
|
top: -31px !important;
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
.elipse_slider .ui-slider-handle {
|
|
width: 9px !important;
|
|
height: 14px !important;
|
|
padding: 5px 0;
|
|
margin-left: -5px !important;
|
|
top: -7px !important;
|
|
border-bottom-right-radius: 10px 30px !important;
|
|
border-bottom-left-radius: 10px 30px !important;
|
|
}
|
|
|
|
.label_podrocje_prikaz {
|
|
border-bottom: 1px solid black !important;
|
|
border-left: 1px solid black !important;
|
|
border-right: 1px solid black !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:58:50
|
|
Author : podkrizniku
|
|
*/
|
|
.naslov.calculation {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
#arrows_more_calculation {
|
|
position: absolute;
|
|
bottom: 40px;
|
|
padding: 5px 0;
|
|
margin-left: 43%;
|
|
width: 10%;
|
|
cursor: pointer;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #E5E5E5;
|
|
display: none;
|
|
text-align: center;
|
|
}
|
|
|
|
#bottom_space {
|
|
padding: 0;
|
|
}
|
|
|
|
#calculation_editing_calculations {
|
|
/*min-height: 40px;*/
|
|
padding: 0 0 10px 0;
|
|
}
|
|
#calculation_editing_calculations span.calculations_display {
|
|
font-size: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:59:20
|
|
Author : podkrizniku
|
|
*/
|
|
.naslov.quota {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
/*popup edit*/
|
|
#quota {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 91;
|
|
height: auto;
|
|
width: 600px;
|
|
}
|
|
#quota #quota_editing_inner {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 50px;
|
|
overflow: auto;
|
|
}
|
|
#quota #condition_editing_close {
|
|
float: right;
|
|
margin-right: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
#quota #bottom_space {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#quota_editing_quotas {
|
|
min-height: 40px;
|
|
padding: 10px;
|
|
}
|
|
#quota_editing_quotas span.quota_display {
|
|
font-size: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:00:32
|
|
Author : podkrizniku
|
|
*/
|
|
.spremenljivka_content[tip="24"] .variable_holder {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.grid_header_table {
|
|
width: 100%;
|
|
text-align: center;
|
|
border-collapse: collapse;
|
|
}
|
|
.grid_header_table td.grid_header {
|
|
height: 18px;
|
|
}
|
|
.grid_header_table tbody tr td {
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) td {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) td div[contenteditable=true] {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.grid_header {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.grid_question {
|
|
width: 20%;
|
|
text-align: left;
|
|
padding-right: 1%;
|
|
}
|
|
|
|
.col_border {
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
|
|
.grid-plus-minus {
|
|
text-align: right;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.sub-table {
|
|
display: none;
|
|
}
|
|
|
|
div.grid_inline {
|
|
min-width: 20px;
|
|
padding: 2px 0;
|
|
}
|
|
|
|
div.grid_inline_droppable_title {
|
|
height: 15px !important;
|
|
width: 230px;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
border-top: 1px black dashed !important;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
text-align: center;
|
|
}
|
|
|
|
div.grid_inline_droppable_title_box {
|
|
height: 15px !important;
|
|
width: 230px;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
li table.grid_header_table span.inline.show {
|
|
visibility: visible;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="6"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="16"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="19"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="20"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="24"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
table.grid_header_table span.inline_delete {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 5px;
|
|
margin-right: 57px;
|
|
margin-right: 0px;
|
|
}
|
|
table.grid_header_table span.inline_edit {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
table.grid_header_table span.inline_if_not {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
margin-right: 32px;
|
|
}
|
|
table.grid_header_table span.inline_if_follow {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
table.grid_header_table span.inline_hidden {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
margin-right: 14px;
|
|
}
|
|
table.grid_header_table span.correct {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
|
|
.trak_class {
|
|
border: 1px solid #E5E5E5;
|
|
cursor: pointer;
|
|
background: white !important;
|
|
}
|
|
|
|
.trak_class_input {
|
|
visibility: hidden !important;
|
|
display: block;
|
|
z-index: -1;
|
|
}
|
|
|
|
.radio-button-label {
|
|
cursor: pointer !important;
|
|
z-index: -2;
|
|
}
|
|
|
|
.trak_container_bg {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
|
|
table.trak_inline_nadnaslov td {
|
|
text-align: center !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:02:29
|
|
Author : podkrizniku
|
|
*/
|
|
.variabla_vsota {
|
|
padding: 0px 5px;
|
|
width: 25%;
|
|
text-align: right;
|
|
}
|
|
.variabla_vsota input {
|
|
margin-left: 10px;
|
|
margin-top: 2px !important;
|
|
}
|
|
|
|
.vrednost_inline_vsota {
|
|
float: left;
|
|
box-sizing: border-box;
|
|
width: 200px;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 15px 2px 18px !important;
|
|
margin-left: 12px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.variabla_vsota_inline {
|
|
float: left;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 15px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
/* Zadnja vrsticas pri urejanju vsote - "skupaj" */
|
|
table.variabla_vsota {
|
|
clear: both;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
display: block;
|
|
width: auto;
|
|
}
|
|
table.variabla_vsota tr td.text {
|
|
border-top: 1px black solid;
|
|
}
|
|
table.variabla_vsota tr td.text .variabla_vsota_sum {
|
|
margin-left: 18px;
|
|
}
|
|
table.variabla_vsota tr td.text .variabla_vsota_sum div {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.variabla_vsota tr td.input {
|
|
border-top: 1px black solid;
|
|
}
|
|
table.variabla_vsota tr td.input input {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:07:51
|
|
Author : podkrizniku
|
|
*/
|
|
span.display_editor_image_hotspot {
|
|
position: absolute;
|
|
right: 100px;
|
|
top: 11px;
|
|
cursor: pointer;
|
|
visibility: visible;
|
|
}
|
|
|
|
.hotspot span.inline_delete_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 485px !important;
|
|
}
|
|
.hotspot span.inline_edit_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
}
|
|
.hotspot span.inline_if_not_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 535px !important;
|
|
}
|
|
.hotspot span.inline_if_follow_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
}
|
|
.hotspot span.inline_hidden_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 510px !important;
|
|
}
|
|
|
|
.inline_edit_hotspot {
|
|
display: inline-block;
|
|
width: 32px;
|
|
height: 32px;
|
|
background-image: url(../../../admin/survey/img_new/icons_hidpi.png);
|
|
background-position: 0px -1874px;
|
|
}
|
|
|
|
canvas.hotspot_canvas {
|
|
position: absolute;
|
|
top: 15px !important;
|
|
left: 10px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hotspot_image_editor {
|
|
position: relative;
|
|
top: 15px !important;
|
|
z-index: 1;
|
|
}
|
|
|
|
div.hotspot_vrednost_inline {
|
|
float: left;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 2px;
|
|
border: 1px solid #E5E5E5;
|
|
margin: 2px;
|
|
background: white;
|
|
}
|
|
|
|
.inline_hotspot_edit_region {
|
|
margin-top: 4px !important;
|
|
margin-bottom: 4px !important;
|
|
}
|
|
|
|
.inline_hotspot_delete_region {
|
|
margin-top: 3px !important;
|
|
margin-bottom: 3px !important;
|
|
}
|
|
|
|
div.vrednost_inline_hotspot {
|
|
float: left;
|
|
}
|
|
div.vrednost_inline_hotspot img {
|
|
float: left;
|
|
}
|
|
|
|
#hotspot_edit {
|
|
display: none;
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 50%;
|
|
z-index: 89;
|
|
min-height: 130px;
|
|
margin-top: -100px;
|
|
margin-left: -300px;
|
|
padding: 0 10px 10px 10px;
|
|
background-color: white;
|
|
border: 4px solid #333333;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Aug-2018, 12:30:57
|
|
Author : podkrizniku
|
|
*/
|
|
.razvrscanje_preview {
|
|
border: 1px solid #E5E5E5;
|
|
background-color: silver;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
display: block;
|
|
}
|
|
|
|
.razvrscanje_preview_frame {
|
|
border: 1px dashed #E5E5E5;
|
|
background-color: #E5E5E5;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
height: 13px;
|
|
display: block;
|
|
text-indent: -20px;
|
|
}
|
|
|
|
.dragdrop_preview_frame {
|
|
border: 1px dashed #E5E5E5;
|
|
background-color: #E5E5E5;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
height: 90px;
|
|
display: block;
|
|
text-indent: -20px;
|
|
}
|
|
|
|
.dragdrop_preview_frame_grid {
|
|
font-size: 14px;
|
|
width: 150px !important;
|
|
height: 25px;
|
|
padding: 0 0 2px 0;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_preview_frame_grid_title {
|
|
height: 15px !important;
|
|
width: 150px !important;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
border-top: 1px black dashed !important;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
text-align: center;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Aug-2018, 13:19:50
|
|
Author : podkrizniku
|
|
*/
|
|
.ranking {
|
|
font-size: 14px;
|
|
width: 220px;
|
|
height: 25px;
|
|
padding: 5px 0 0 0;
|
|
margin: 15px auto 0 auto;
|
|
border: 1px solid #000;
|
|
background-color: #E5E5E5;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.ranking img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.ranking_long {
|
|
font-size: 14px;
|
|
width: 220px;
|
|
height: 25px;
|
|
padding: 5px 0 0 0;
|
|
margin: 15px auto 0 auto;
|
|
border: 1px solid #000;
|
|
background-color: #E5E5E5;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.ranking_frame {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 29px;
|
|
padding: 5px 0 0 0;
|
|
margin: 10px auto 0 auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 100px;
|
|
padding: 5px 0 0 0;
|
|
margin: 10px auto 0 auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame_grid {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 25px;
|
|
padding: 0 0 2px 0;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame_grid_box {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 30px;
|
|
padding: 0 0 2px 0;
|
|
margin: 10px auto 0px auto;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
border-bottom: 1px black dashed !important;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.drag_and_drop_box {
|
|
cursor: pointer;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px solid #000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px solid #000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
}
|
|
.drag_and_drop_box img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.drag_and_drop {
|
|
top: -6px;
|
|
left: -6px;
|
|
}
|
|
|
|
.drag_and_drop_right {
|
|
top: -6px !important;
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right {
|
|
top: 15px !important;
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right_after_refresh {
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right_over {
|
|
left: -6px !important;
|
|
}
|
|
|
|
.inline_labele_podrocij {
|
|
text-align: center !important;
|
|
}
|
|
|
|
table.inline_labele_podrocij td {
|
|
text-align: center !important;
|
|
}
|
|
|
|
/*radio with image*/
|
|
.custom_radio .custom_radio_answer {
|
|
padding: 0 1px;
|
|
}
|
|
|
|
.custom_radio.visual-radio-scale .custom_radio_answer {
|
|
padding: 0 3px;
|
|
}
|
|
.custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.enka-vizualna-skala {
|
|
display: inline-block;
|
|
height: 20px;
|
|
width: 20px;
|
|
float: left;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 20-Aug-2018, 11:13:15
|
|
Author : podkrizniku
|
|
*/
|
|
/*GOOGLE MAPS*/
|
|
.pac-input {
|
|
background-color: white;
|
|
font-family: Roboto;
|
|
font-size: 1.2em;
|
|
font-weight: 300;
|
|
margin-left: 0 px;
|
|
padding: 0 11px 0 13px;
|
|
text-overflow: ellipsis;
|
|
width: 17em;
|
|
border: 1px solid transparent;
|
|
border-radius: 2px 0 0 2px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
margin-top: 10px;
|
|
outline: medium none;
|
|
}
|
|
|
|
.boxsizingBorder {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.maps-delete-menu {
|
|
position: absolute;
|
|
background: white;
|
|
padding: 3px;
|
|
color: #E5E5E5;
|
|
font-weight: bold;
|
|
border: 1px solid #E5E5E5;
|
|
font-family: sans-serif;
|
|
font-size: 12px;
|
|
box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
|
|
margin-top: -10px;
|
|
margin-left: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.maps-delete-menu:hover {
|
|
background: #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 20-Aug-2018, 11:15:47
|
|
Author : podkrizniku
|
|
*/
|
|
.fotoresults_div {
|
|
float: right;
|
|
}
|
|
|
|
.my_camera_div {
|
|
float: left;
|
|
}
|
|
|
|
.my_camera {
|
|
border: 1px solid;
|
|
}
|
|
|
|
.record_foto {
|
|
display: block;
|
|
float: right;
|
|
margin-top: -30px;
|
|
margin-right: -12px;
|
|
position: relative;
|
|
}
|
|
|
|
.upload_foto_result {
|
|
display: none;
|
|
height: 240px;
|
|
border: 1px solid;
|
|
padding-right: 0px !important;
|
|
margin-top: 10px !important;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 13-Aug-2018, 12:32:48
|
|
Author : podkrizniku
|
|
*/
|
|
li.if .if_remove,
|
|
li.block .if_remove,
|
|
li.loop .if_remove,
|
|
li.if .if_remove {
|
|
display: none;
|
|
}
|
|
li.if:hover span.conditions_display,
|
|
li.block:hover span.conditions_display,
|
|
li.loop:hover span.conditions_display,
|
|
li.if:hover span.conditions_display {
|
|
cursor: pointer;
|
|
}
|
|
li.if:hover div.if_remove,
|
|
li.block:hover div.if_remove,
|
|
li.loop:hover div.if_remove,
|
|
li.if:hover div.if_remove {
|
|
display: block;
|
|
}
|
|
|
|
li.endif:hover,
|
|
li.endblock:hover,
|
|
li.endloop:hover,
|
|
li.inout:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
li.if.if_editing div.if_remove,
|
|
li.block.if_editing div.if_remove,
|
|
li.loop.if_editing div.if_remove {
|
|
display: block;
|
|
}
|
|
|
|
a.pm {
|
|
position: absolute;
|
|
left: auto;
|
|
float: none;
|
|
margin: 9px 0 0 -15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.pm.minus {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.endif_editing {
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
li.if_editing div.if_content:before {
|
|
background-color: #1E88E5;
|
|
content: "";
|
|
display: block;
|
|
height: 15px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
span.conditions_display {
|
|
display: block;
|
|
line-height: 28px;
|
|
}
|
|
|
|
/*if condition variable select*/
|
|
select.spremenljivka_select option {
|
|
max-width: 500px;
|
|
}
|
|
|
|
.condition {
|
|
position: relative;
|
|
left: -21px;
|
|
}
|
|
|
|
span.endif {
|
|
position: relative;
|
|
left: -29px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.block > div > #div_condition_editing_container {
|
|
background-color: #1E88E5;
|
|
line-height: 28px;
|
|
}
|
|
|
|
.loop > div > #div_condition_editing_container {
|
|
padding-top: 6px;
|
|
}
|
|
|
|
#div_condition_editing_inner > .condition_editing_preview {
|
|
background-color: #1E88E5;
|
|
padding-left: 6px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body {
|
|
max-height: 50vh;
|
|
overflow-y: auto;
|
|
margin: 20px 0;
|
|
padding: 10px 5px 5px 5px;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .tbl_condition_editing {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#div_condition_editing_operators {
|
|
padding: 5px 0;
|
|
}
|
|
|
|
#div_condition_editing {
|
|
display: none;
|
|
height: auto;
|
|
width: 800px;
|
|
}
|
|
#div_condition_editing div#div_condition_editing_container {
|
|
margin-bottom: 44px;
|
|
}
|
|
#div_condition_editing .error_display {
|
|
background-color: transparent;
|
|
}
|
|
#div_condition_editing .condition_editing_vrednost_title {
|
|
margin: -5px 0 15px 5px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#div_condition_editing_float {
|
|
position: absolute;
|
|
top: 0;
|
|
right: -335px;
|
|
width: 290px;
|
|
padding: 0 10px 15px 10px;
|
|
background-color: white;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#div_condition_editing_float h2 {
|
|
margin-top: 0;
|
|
padding: 10px;
|
|
border-bottom: 0;
|
|
margin: 0 -10px 0 -10px;
|
|
background-color: #1E88E5;
|
|
}
|
|
#div_condition_editing_float p {
|
|
padding: 3px;
|
|
margin: 10px 0;
|
|
}
|
|
#div_condition_editing_float p.heading {
|
|
border: 0;
|
|
background: none;
|
|
padding: 0;
|
|
}
|
|
#div_condition_editing_float span.content {
|
|
float: right;
|
|
}
|
|
#div_condition_editing_float fieldset {
|
|
margin: 11px 0;
|
|
padding: 0;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#div_condition_editing_float legend {
|
|
background-color: transparent;
|
|
color: #1E88E5;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
padding: 0 10px 0 5px;
|
|
}
|
|
|
|
.error_display {
|
|
display: block;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.tbl_ce_bck_blue {
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
.tbl_ce_lol {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
|
|
.tbl_ce_tb {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
|
|
.tbl_ce_lor {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
|
|
.if_remove {
|
|
z-index: 5;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-right: 20px;
|
|
padding-top: 9px;
|
|
}
|
|
|
|
.endif a.surveycomment {
|
|
padding-right: 15px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.endblock a.surveycomment {
|
|
padding-right: 15px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
#condition_editing_bottom_placeholder {
|
|
display: block;
|
|
height: 1px;
|
|
margin-bottom: 15px;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
|
|
.tbl_condition_editing {
|
|
width: 98%;
|
|
border-spacing: 0px;
|
|
margin: 0px 1% 0px 1%;
|
|
border-collapse: collapse;
|
|
}
|
|
.tbl_condition_editing th {
|
|
color: #E5E5E5;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 20-Aug-2018, 11:24:57
|
|
Author : podkrizniku
|
|
*/
|
|
#toolbox_library {
|
|
z-index: 0;
|
|
position: fixed;
|
|
top: 225px;
|
|
left: 35px;
|
|
width: 315px;
|
|
height: auto;
|
|
left: auto;
|
|
right: 30px;
|
|
color: #1E88E5;
|
|
background-color: white;
|
|
border: 0;
|
|
box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.07);
|
|
}
|
|
#toolbox_library #library_holder {
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#toolbox_library #library_holder #library_title {
|
|
padding: 10px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
#toolbox_library #library_holder #library_title span.library {
|
|
margin: 0 5px 2px 0;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs > span {
|
|
width: 50%;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
padding: 7px 10px;
|
|
text-align: center;
|
|
transition: 0.2s;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft {
|
|
background-color: white;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft a {
|
|
color: #1E88E5;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight {
|
|
background-color: white;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight a {
|
|
color: #1E88E5;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs span.nohighlight:hover {
|
|
background-color: #2c8fe7;
|
|
}
|
|
#toolbox_library #library_holder p.display_tabs a {
|
|
display: block;
|
|
color: #1E88E5;
|
|
}
|
|
#toolbox_library #library_holder #library {
|
|
background-color: white;
|
|
height: 400px;
|
|
overflow-y: auto;
|
|
/* Ankete */
|
|
}
|
|
#toolbox_library #library_holder #library #libraryInner {
|
|
padding: 5px 10px;
|
|
bottom: 0;
|
|
overflow: auto;
|
|
}
|
|
#toolbox_library #library_holder #library .lib_tab {
|
|
width: auto;
|
|
cursor: pointer;
|
|
}
|
|
#toolbox_library #library_holder #library ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
margin-top: 4px;
|
|
padding-left: 18px;
|
|
}
|
|
#toolbox_library #library_holder #library li .anketa.tip0 {
|
|
margin: 0;
|
|
padding-left: 14px;
|
|
}
|
|
#toolbox_library #library_holder #library li .anketa.tip1 {
|
|
margin: 0;
|
|
margin-left: -3px;
|
|
}
|
|
#toolbox_library #library_holder #library .new_folder {
|
|
visibility: hidden;
|
|
}
|
|
#toolbox_library #library_holder #library .delete_folder {
|
|
visibility: hidden;
|
|
}
|
|
#toolbox_library #library_holder #library span.folderdrop {
|
|
margin-bottom: 2px;
|
|
}
|
|
#toolbox_library #library_holder #library span.folderdrop:hover .new_folder {
|
|
visibility: visible;
|
|
}
|
|
#toolbox_library #library_holder #library span.folderdrop:hover .delete_folder {
|
|
visibility: visible;
|
|
}
|
|
#toolbox_library #library_holder #library span.faicon.folder {
|
|
vertical-align: 3px;
|
|
margin-right: 3px;
|
|
}
|
|
#toolbox_library #library_holder #library span.faicon.folder::before {
|
|
font-size: 20px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip0 .folder_container {
|
|
display: block;
|
|
height: auto;
|
|
overflow: hidden;
|
|
padding: 1px 3px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 {
|
|
padding-left: 10px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .folder_container {
|
|
display: block;
|
|
overflow: show;
|
|
height: auto;
|
|
min-height: 20px;
|
|
padding: 0px 3px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .mapca {
|
|
display: none !important;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .new_spr {
|
|
padding: 0 3px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .new_spr:hover {
|
|
background-color: #1980da;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .new_spr .faicon {
|
|
line-height: 22px;
|
|
}
|
|
#toolbox_library #library_holder #library .tip1 .faicon.plus,
|
|
#toolbox_library #library_holder #library .tip1 .faicon.minus {
|
|
opacity: 1 !important;
|
|
margin-right: 3px;
|
|
}
|
|
#toolbox_library #library_holder #library div .folder_right {
|
|
width: 15px;
|
|
height: 22px;
|
|
line-height: 22px;
|
|
float: right;
|
|
text-align: left;
|
|
}
|
|
#toolbox_library #library_holder #library div .tip1 .folder_right {
|
|
width: 18px;
|
|
}
|
|
#toolbox_library #library_holder #library div .folder_container:hover {
|
|
background-color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
#toolbox_library #library_holder #library div.folder_left {
|
|
width: 80%;
|
|
float: none;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
position: relative;
|
|
}
|
|
#toolbox_library #library_holder #library div.folder_left.indent {
|
|
display: block;
|
|
height: 22px;
|
|
line-height: 22px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
position: relative;
|
|
}
|
|
#toolbox_library #library_holder #library .folder strong:hover {
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
fieldset #obvescanje_sidebyside_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_left {
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
margin-right: 32px;
|
|
width: 560px;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right {
|
|
flex-grow: 0;
|
|
width: 100%;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right div.message_instructions {
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
width: 100%;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right div.message_instructions div.izpolnjena_spremenljivke {
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder label {
|
|
cursor: default;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder label.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .alert_authors {
|
|
display: block;
|
|
text-indent: 12px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .setting_item label {
|
|
margin-right: 8px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .setting_item.respondent_jeziki {
|
|
margin-left: 24px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki span.faicon {
|
|
vertical-align: middle;
|
|
text-indent: 0;
|
|
}
|
|
fieldset .setting_holder .alert_other_emails {
|
|
margin-left: 24px;
|
|
}
|
|
fieldset .setting_holder .alert_other_emails label {
|
|
cursor: default;
|
|
}
|
|
fieldset .setting_holder textarea.alert_other_emails {
|
|
width: 538px;
|
|
height: 100px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
span.faicon.respondent_iconwithlink {
|
|
margin-left: 16px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
#vrednost_edit label {
|
|
cursor: default;
|
|
}
|
|
#vrednost_edit label.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
#vrednost_edit .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 565px;
|
|
}
|
|
#vrednost_edit .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
#vrednost_edit .setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#vrednost_edit .button_holder {
|
|
justify-content: start;
|
|
}
|
|
|
|
button.ui-datepicker-trigger {
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
min-width: auto;
|
|
color: #1E88E5;
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
}
|
|
button.ui-datepicker-trigger:hover {
|
|
color: #1980da;
|
|
}
|
|
button.ui-datepicker-trigger.disabled {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
|
|
fieldset span.charalimit#anketa_polnoIme_chars {
|
|
width: 400px;
|
|
}
|
|
fieldset span.charalimit#anketa_akronim_chars, fieldset span.charalimit#anketa_note_chars {
|
|
width: 800px;
|
|
}
|
|
fieldset input[type=text]#anketa_polnoIme {
|
|
width: 400px;
|
|
}
|
|
fieldset input[type=text]#anketa_akronim {
|
|
width: 800px;
|
|
}
|
|
fieldset textarea#anketa_note {
|
|
width: 800px;
|
|
height: 120px;
|
|
}
|
|
|
|
textarea#addusers, textarea#addusers_note {
|
|
width: 800px;
|
|
height: 120px;
|
|
}
|
|
|
|
div.setting_holder.red label {
|
|
color: red;
|
|
}
|
|
div.setting_holder.red input[type=text] {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
textarea.gdpr_requests_comment {
|
|
width: 200px;
|
|
height: 60px;
|
|
}
|
|
|
|
img.twoFAQRcode {
|
|
margin: 10px 0;
|
|
max-width: 115px;
|
|
}
|
|
|
|
label[for=active-master] {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
div #user_info_segment {
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 32px 20px;
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div #user_info_segment .user_info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div #user_info_segment .user_info.text {
|
|
margin-right: 50px;
|
|
}
|
|
div .myprofile_postget_wrap {
|
|
max-width: 320px;
|
|
min-width: 320px;
|
|
overflow-wrap: break-word;
|
|
white-space: normal;
|
|
padding: 8px 0px;
|
|
font-family: "Courier";
|
|
font-size: 12px;
|
|
}
|
|
div .myprofile_date_wrap {
|
|
width: auto;
|
|
white-space: nowrap;
|
|
}
|
|
div .altmail span.faicon {
|
|
margin-right: 8px;
|
|
margin-left: 16px;
|
|
}
|
|
div #klik-dodaj-email span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 25-Jul-2018, 11:34:25
|
|
Author : podkrizniku
|
|
*/
|
|
div#main.hide_header {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
#new_anketa_div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
#new_anketa_div .layout_left_item {
|
|
width: 308px;
|
|
height: 100vh !important;
|
|
padding: 4px;
|
|
background-color: #FFFFFF;
|
|
border-right: 1px solid #E5E5E5;
|
|
border-left: none;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
margin-right: 0;
|
|
box-shadow: none;
|
|
height: fit-content;
|
|
}
|
|
#new_anketa_div .layout_left_item .item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
padding: 24px 0 24px 70px;
|
|
border: 1px solid #E5E5E5;
|
|
color: #333333;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#new_anketa_div .layout_left_item .item:hover {
|
|
background-color: #ebebeb;
|
|
}
|
|
#new_anketa_div .layout_left_item .item span.new_survey_menu_icon {
|
|
margin-right: 8px;
|
|
margin-left: 0;
|
|
}
|
|
#new_anketa_div .layout_left_item .item.active {
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_left_item .item.active:hover {
|
|
background-color: #187bd1;
|
|
}
|
|
#new_anketa_div .layout_left_item ul {
|
|
list-style-type: none;
|
|
padding-left: 70px;
|
|
margin: 16px 0;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li {
|
|
margin-bottom: 3px;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li:last-of-type {
|
|
margin-bottom: 0px;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li a {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li a:hover {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li .active {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 25-Jul-2018, 11:36:53
|
|
Author : podkrizniku
|
|
*/
|
|
#new_anketa_div div.button_holder {
|
|
margin-top: 62px;
|
|
}
|
|
#new_anketa_div .layout_right_item {
|
|
margin-top: 64px;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 90%;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering {
|
|
max-width: 1060px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering span.faicon.fa-times {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-top: 12px;
|
|
margin-right: 12px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .pre-title {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .title {
|
|
margin-bottom: 32px;
|
|
font-size: 26px;
|
|
overflow: hidden;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .title:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
margin-right: -100%;
|
|
margin-left: 12px;
|
|
border-top: 1px solid #C4C4C4;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset p.bottom32 {
|
|
margin-bottom: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset p.top32 {
|
|
margin-top: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_horizontal_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 36px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder input[type=text] {
|
|
width: 332px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder select.dropdown {
|
|
width: 332px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder span.charalimit {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
width: 332px;
|
|
color: #777777;
|
|
text-align: right;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting {
|
|
/**input[type="file"]#restore {
|
|
display: none;
|
|
}
|
|
|
|
//Button - medium - gray
|
|
label.custom_file_upload {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
|
|
font-weight: $semi-bold;
|
|
font-family: $font_family;
|
|
|
|
box-shadow: none;
|
|
border: 0;
|
|
|
|
transition: 0.3s;
|
|
|
|
padding: 10px 32px;
|
|
min-width: 160px;
|
|
font-size: 16px;
|
|
|
|
color: $black;
|
|
|
|
background-color: $gray;
|
|
border: 1px $black solid;
|
|
|
|
&:hover {
|
|
background-color: darken($gray, 5%);
|
|
}
|
|
|
|
|
|
}**/
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .radioSetting_type.active {
|
|
color: #777777;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] {
|
|
margin: 0 8px 4px 0;
|
|
display: none !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-custom-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] {
|
|
display: none !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .custom_radio_picture.obarvan > label > span.enka-custom-radio:before {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .visual-radio-scale.checked .enka-vizualna-skala::before {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text {
|
|
width: 350px;
|
|
margin-right: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text span {
|
|
line-height: 28px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text select {
|
|
height: 40px;
|
|
width: 330px;
|
|
font-size: 15px !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder label {
|
|
margin: 0;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type {
|
|
cursor: pointer;
|
|
width: 332px;
|
|
max-height: 68px;
|
|
margin-right: 36px;
|
|
padding: 26px 0;
|
|
text-align: center;
|
|
border: 1px #E5E5E5 solid;
|
|
background-color: #F8F8F8;
|
|
border-radius: 2px;
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type:hover {
|
|
background-color: #f3f3f3;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type span.faicon {
|
|
margin-right: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type.active {
|
|
border-color: #1E88E5;
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin {
|
|
overflow: hidden;
|
|
height: 270px;
|
|
display: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skins_holder {
|
|
overflow: hidden;
|
|
position: absolute;
|
|
height: 220px;
|
|
width: 83%;
|
|
left: 120px;
|
|
margin-top: 10px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skins_holder #noSurvey_skins {
|
|
width: 3450px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin {
|
|
cursor: pointer;
|
|
float: left;
|
|
margin: 0 10px;
|
|
padding: 5px 5px 15px 5px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
background-color: #1E88E5;
|
|
border: none;
|
|
/*border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;*/
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin:hover {
|
|
color: #777777;
|
|
background-color: #187bd1;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin .preview {
|
|
width: 200px;
|
|
height: 150px;
|
|
margin-bottom: 4px;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin.selected {
|
|
color: #777777;
|
|
background-color: #FF0000;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin.selected .preview {
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skin_arrow_left {
|
|
float: left;
|
|
width: 30px;
|
|
height: 40px;
|
|
margin-top: 80px;
|
|
margin-left: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skin_arrow_right {
|
|
float: right;
|
|
width: 30px;
|
|
height: 40px;
|
|
margin-top: 80px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons {
|
|
width: auto;
|
|
margin: 20px auto;
|
|
text-align: center;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_create {
|
|
display: inline-block;
|
|
padding: 12px 0px;
|
|
margin: 8px 15px;
|
|
width: 120px;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: 40px;
|
|
-moz-border-radius: 40px;
|
|
-webkit-border-radius: 40px;
|
|
color: white;
|
|
background-color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_create:hover {
|
|
background-color: #FF0000;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_cancel {
|
|
display: inline-block;
|
|
padding: 11px 0px;
|
|
margin: 8px 15px;
|
|
width: 120px;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: 40px;
|
|
-moz-border-radius: 40px;
|
|
-webkit-border-radius: 40px;
|
|
color: #1E88E5 !important;
|
|
background-color: #ffffff;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_cancel:hover {
|
|
background-color: #1E88E5;
|
|
color: white !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
box-sizing: border-box;
|
|
width: 90%;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template {
|
|
cursor: pointer;
|
|
margin-bottom: 32px;
|
|
border: solid 1px #E5E5E5;
|
|
width: 292px;
|
|
height: 205px;
|
|
transition: 0.1s;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template:hover {
|
|
background-color: #fafafa;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template:hover .template_title {
|
|
background-color: #f0f0f0;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template .template_title {
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
background-color: #F8F8F8;
|
|
padding: 19px 11px 19px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template .template_content {
|
|
overflow: hidden;
|
|
margin: 16px 11px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template .template_preview {
|
|
bottom: 0;
|
|
margin: 0 11px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected {
|
|
cursor: pointer;
|
|
border-color: #808080;
|
|
background-color: #C4C4C4;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected .template_title {
|
|
background-color: #808080;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected .template_preview a {
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template select.template_type_menu {
|
|
display: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text {
|
|
height: auto;
|
|
overflow: auto;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #input_field_holder {
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #input_field_holder #input_field {
|
|
margin-right: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #input_field_holder #input_field textarea {
|
|
width: 514px;
|
|
height: 370px;
|
|
box-sizing: border-box;
|
|
border-color: #E5E5E5;
|
|
margin-top: 0;
|
|
padding: 16px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #input_field_holder #input_field textarea:focus::-moz-placeholder {
|
|
color: transparent;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder {
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field {
|
|
width: 514px;
|
|
height: 370px;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
padding: 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable_title {
|
|
margin-top: 16px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable_title:first-of-type {
|
|
margin-top: 0px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable_title input[type=text] {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
width: 245px;
|
|
margin-top: 4px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable_title input[type=text].large {
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable {
|
|
color: #333333 !important;
|
|
margin-top: 8px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable input[type=radio] {
|
|
display: none !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: #C4C4C4;
|
|
letter-spacing: 8px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
input[type=radio] + span.enka-checkbox-radio {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.noSurvey_skin #noSurvey_skins .skin:hover .preview {
|
|
background-color: #FF0000;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
|
|
#novaanketa_naslov_1 {
|
|
margin-bottom: 3px;
|
|
width: 290px;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_akronim_1 {
|
|
margin-bottom: 3px;
|
|
width: 290px;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_naslov_1.full {
|
|
width: 290px;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_opis {
|
|
width: 290px;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_akronim_1.full {
|
|
width: 510px !important;
|
|
max-width: 510px !important;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_opis_1.full {
|
|
width: 505px !important;
|
|
max-width: 505px !important;
|
|
vertical-align: top;
|
|
color: black;
|
|
}
|
|
|
|
#novaanketa_naslov_1_chars {
|
|
display: inline-block;
|
|
min-width: 40px;
|
|
height: auto;
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
#quick_comments_link.newCss {
|
|
display: none;
|
|
}
|
|
|
|
#firstNavigation ol.right-side {
|
|
display: none;
|
|
}
|
|
|
|
div.status_advanced {
|
|
flex-direction: column;
|
|
}
|
|
|
|
div.status_advanced_box {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a.status_advanced_link {
|
|
width: 95%;
|
|
}
|
|
|
|
.content_div_normalmode {
|
|
overflow-x: auto;
|
|
}
|
|
.content_div_normalmode::-webkit-scrollbar {
|
|
background-color: inherit;
|
|
height: 5px;
|
|
}
|
|
.content_div_normalmode::-webkit-scrollbar-thumb {
|
|
background: #c4c4c4;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
@media (max-width: 1100px) and (prefers-color-scheme: dark) {
|
|
.content_div_normalmode::-webkit-scrollbar-thumb {
|
|
background: #c4c4c4;
|
|
}
|
|
}
|
|
@media (max-width: 850px) {
|
|
#main {
|
|
margin-top: 70px;
|
|
padding-bottom: 30px;
|
|
/*overflow-x: scroll;*/
|
|
}
|
|
#main #anketa_edit {
|
|
box-sizing: border-box !important;
|
|
padding: 15px !important;
|
|
}
|
|
#main #placeholder {
|
|
width: auto;
|
|
}
|
|
|
|
fieldset {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
fieldset .nastavitveSpan1,
|
|
fieldset .nastavitveSpan2,
|
|
fieldset .nastavitveSpan3,
|
|
fieldset .nastavitveSpan4,
|
|
fieldset .nastavitveSpan5,
|
|
fieldset .nastavitveSpan6 {
|
|
width: auto !important;
|
|
display: block !important;
|
|
float: none !important;
|
|
text-align: left !important;
|
|
padding: 15px 0 5px 0 !important;
|
|
}
|
|
fieldset select,
|
|
fieldset .select2-container,
|
|
fieldset input[type=text],
|
|
fieldset textarea {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
fieldset .setting {
|
|
height: auto !important;
|
|
}
|
|
|
|
#vnosi_paginacija div select {
|
|
display: inline-block;
|
|
width: fit-content;
|
|
margin: 0 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
div.breadcrumbs {
|
|
display: block;
|
|
padding: 15px;
|
|
color: #1e88e5;
|
|
font-weight: 600;
|
|
}
|
|
|
|
header {
|
|
/* Mobile meni */
|
|
/* Mobile meni - NASTAVITVE V UREJANJU ANKETE*/
|
|
}
|
|
header .desktop_header {
|
|
display: none;
|
|
}
|
|
header .mobile_header {
|
|
position: fixed;
|
|
z-index: 9990;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 70px;
|
|
border-bottom: 1px solid #efefef;
|
|
}
|
|
header .mobile_header.survey_edit {
|
|
color: white;
|
|
background-color: #1e88e5;
|
|
}
|
|
header .mobile_header.survey_list {
|
|
color: #1e88e5;
|
|
background-color: white;
|
|
}
|
|
header .mobile_header .mobile_menu_icon {
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
header .mobile_header .mobile_menu_icon.mobile_menu_close {
|
|
display: none;
|
|
}
|
|
header .mobile_header .mobile_menu_icon.mobile_menu_close span {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
line-height: 25px;
|
|
}
|
|
header .mobile_header .mobile_menu_icon span {
|
|
cursor: pointer;
|
|
}
|
|
header .mobile_header .mobile_settings_icon {
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
header .mobile_header .mobile_settings_icon.mobile_settings_close {
|
|
display: none;
|
|
}
|
|
header .mobile_header .mobile_settings_icon.mobile_settings_close span {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
line-height: 25px;
|
|
}
|
|
header .mobile_header .mobile_settings_icon span {
|
|
cursor: pointer;
|
|
}
|
|
header .mobile_header .mobile_settings_icon span::before {
|
|
font-size: 24px;
|
|
}
|
|
header .mobile_header .mobile_survey_title {
|
|
width: calc(100% - 120px);
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
header .mobile_header .mobile_logo {
|
|
width: calc(100% - 120px);
|
|
}
|
|
header .mobile_header .mobile_logo #enka_logo {
|
|
margin: 0 auto;
|
|
}
|
|
header .mobile_menu {
|
|
position: fixed;
|
|
z-index: 9995;
|
|
display: flex;
|
|
flex-direction: column;
|
|
top: 71px;
|
|
bottom: 0;
|
|
width: 85vw;
|
|
color: #333;
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
pointer-events: none;
|
|
transform: translateX(-100%);
|
|
}
|
|
header .mobile_menu:not(.no-transition),
|
|
header .mobile_menu .submenu:not(.no-transition) {
|
|
transition: all 250ms;
|
|
}
|
|
header .mobile_menu.opened {
|
|
pointer-events: auto;
|
|
transform: translateX(0px);
|
|
}
|
|
header .mobile_menu.submenu-opened {
|
|
overflow: hidden;
|
|
}
|
|
header .mobile_menu ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
padding-left: 0px;
|
|
margin: 0;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
header .mobile_menu ul > li {
|
|
display: block;
|
|
}
|
|
header .mobile_menu ul > li > a {
|
|
position: relative;
|
|
display: block;
|
|
padding: 18px 20px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 150ms;
|
|
}
|
|
header .mobile_menu ul > li > a:hover {
|
|
background-color: #c8e3f8;
|
|
border-radius: 3px;
|
|
}
|
|
header .mobile_menu ul > li > a .arrow_back {
|
|
display: block;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 18px;
|
|
transform: rotate(180deg);
|
|
}
|
|
header .mobile_menu ul > li a.active {
|
|
color: #ffa608;
|
|
background-color: inherit;
|
|
}
|
|
header .mobile_menu ul > li:not(:last-child) > a {
|
|
border-bottom: 1px solid #efefef;
|
|
}
|
|
header .mobile_menu .submenu {
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
pointer-events: none;
|
|
z-index: 9998;
|
|
position: fixed;
|
|
bottom: 0;
|
|
top: 0;
|
|
left: 100%;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
background-color: #ffffff;
|
|
}
|
|
header .mobile_menu .submenu.opened {
|
|
left: 0;
|
|
pointer-events: auto;
|
|
}
|
|
header .mobile_menu .submenu.opened:not(.current) {
|
|
overflow: hidden;
|
|
}
|
|
header .mobile_menu .submenu-header {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: flex;
|
|
border-bottom: solid 1px #efefef;
|
|
}
|
|
header .mobile_menu .submenu-header > a {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 18px 20px;
|
|
padding-left: 20px;
|
|
text-decoration: none;
|
|
}
|
|
header .mobile_menu .submenu-header > label {
|
|
display: block;
|
|
width: calc(100% - 110px);
|
|
margin-bottom: 8px;
|
|
margin-top: 20px;
|
|
padding-left: 0px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
opacity: 0.5;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu .arrow_back {
|
|
line-height: 30px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu a {
|
|
font-size: 13px;
|
|
color: #333;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu a .email {
|
|
font-size: 12px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div {
|
|
padding: 5px 0 10px 0;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div .faicon {
|
|
padding-right: 10px;
|
|
vertical-align: -1px;
|
|
}
|
|
header .mobile_settings {
|
|
position: fixed;
|
|
right: 0;
|
|
z-index: 9994;
|
|
top: 71px;
|
|
bottom: 0;
|
|
width: 85vw;
|
|
color: #333;
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
/*pointer-events: none;*/
|
|
margin-right: -85vw;
|
|
}
|
|
header .mobile_settings .mobile_settings_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 0 15px 0;
|
|
font-size: 13px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a.anketa_img_nav {
|
|
padding-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px #c8e3f8 solid;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .faicon::before {
|
|
padding-right: 10px;
|
|
font-size: 20px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_icon {
|
|
width: 60px;
|
|
min-width: 60px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_icon.bottom {
|
|
width: 30px;
|
|
min-width: 30px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_text {
|
|
width: auto;
|
|
}
|
|
|
|
#srv_footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 0;
|
|
}
|
|
#srv_footer .footer_left {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Popup za vprasajcke */
|
|
.qtip {
|
|
position: fixed !important;
|
|
z-index: 9999999 !important;
|
|
width: 80% !important;
|
|
box-sizing: border-box !important;
|
|
top: 20% !important;
|
|
left: 10% !important;
|
|
box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.34) !important;
|
|
}
|
|
|
|
#main #moje_ankete_edit {
|
|
padding: 20px !important;
|
|
}
|
|
#main #moje_ankete_edit #anketa_edit {
|
|
padding: 0 !important;
|
|
}
|
|
#main #moje_ankete_edit #survey_list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#main #moje_ankete_edit #survey_list > div {
|
|
margin: 15px 0 20px 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #anketa_new_float {
|
|
display: flex;
|
|
justify-content: left;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #pagination {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
transform: none;
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #pagination.bottom {
|
|
display: block;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #sortButton,
|
|
#main #moje_ankete_edit #survey_list #filterButton,
|
|
#main #moje_ankete_edit #survey_list #folderSwitch {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys {
|
|
padding: 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys form {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys form input[type=text] {
|
|
width: 100%;
|
|
padding: 5px 0 5px 7px;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .div_sl_new {
|
|
padding: 20px 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list table#surveyList_new td {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(3), #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(6) {
|
|
display: table-cell;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica .folder_left {
|
|
line-height: 20px;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica .folder_right .library_item_setting_text {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica ul li.anketa {
|
|
margin: 5px 0;
|
|
}
|
|
#main #moje_ankete_edit fieldset div.data {
|
|
margin-top: 10px;
|
|
}
|
|
#main #moje_ankete_edit fieldset div.setting {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#new_anketa_div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: auto;
|
|
width: 100%;
|
|
}
|
|
#new_anketa_div #left_menu,
|
|
#new_anketa_div #right_content {
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
#new_anketa_div #right_content {
|
|
box-sizing: border-box;
|
|
margin: 20px 0 0 0;
|
|
padding: 0;
|
|
}
|
|
#new_anketa_div #right_content .setting {
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
#new_anketa_div #right_content .survey_title_text_holder {
|
|
flex-direction: column !important;
|
|
}
|
|
#new_anketa_div #right_content select {
|
|
width: 100% !important;
|
|
margin: 0;
|
|
}
|
|
#new_anketa_div #right_content input {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder {
|
|
flex-direction: column !important;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder label {
|
|
margin-bottom: 15px;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder label > div {
|
|
box-sizing: border-box;
|
|
padding: 10px !important;
|
|
}
|
|
#new_anketa_div #right_content .fieldset {
|
|
line-height: 24px;
|
|
}
|
|
#new_anketa_div #right_content .fieldset input[type=file] {
|
|
margin-top: 20px;
|
|
}
|
|
#new_anketa_div #input_field_holder,
|
|
#new_anketa_div #preview_field_holder {
|
|
width: 100% !important;
|
|
float: none;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
padding: 10px 0 !important;
|
|
}
|
|
#new_anketa_div .from_text_instructions {
|
|
line-height: 20px !important;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template .template {
|
|
align-self: center;
|
|
width: auto !important;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template .template .template_preview {
|
|
margin-right: 10px !important;
|
|
}
|
|
#new_anketa_div #left_menu ul.template_type_menu {
|
|
display: none;
|
|
}
|
|
#new_anketa_div select.template_type_menu {
|
|
display: block !important;
|
|
height: 40px;
|
|
width: 100%;
|
|
padding: 2px 5px;
|
|
margin-bottom: 40px !important;
|
|
font-size: 15px !important;
|
|
border: 1px solid #c8e3f8 !important;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
table.dashboard {
|
|
border-spacing: 0px;
|
|
}
|
|
table.dashboard > tbody > tr,
|
|
table.dashboard > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.dashboard > tbody > tr > td {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.locked .add-variable-mobile,
|
|
.spremenljivka_content:hover .add-variable {
|
|
display: none !important;
|
|
}
|
|
|
|
#branching {
|
|
width: 100%;
|
|
}
|
|
#branching li {
|
|
margin: 0 10px 0 10px !important;
|
|
}
|
|
#branching .spr_edit {
|
|
display: none !important;
|
|
}
|
|
#branching .content_div_normalmode {
|
|
padding-bottom: 40px;
|
|
}
|
|
#branching .add-variable-mobile {
|
|
display: block;
|
|
position: absolute;
|
|
left: 59px;
|
|
bottom: 20px;
|
|
}
|
|
#branching .empty_vrivanje {
|
|
padding: 30px 0 !important;
|
|
margin: 20px 10px 20px 10px !important;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_title {
|
|
display: none;
|
|
margin: 0 20px;
|
|
font-size: 14px;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_subtitle {
|
|
display: none;
|
|
margin: 15px 20px 0 15px;
|
|
font-size: 13px;
|
|
}
|
|
#branching .empty_vrivanje .mobile_add_question {
|
|
position: relative;
|
|
bottom: auto;
|
|
}
|
|
#branching #bottom_icons_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: left;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 30px 10px 20px 20px;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 0 0 10px 0;
|
|
margin: 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a {
|
|
margin: 0 11px 0 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
#toolbox_advanced_settings {
|
|
display: none !important;
|
|
top: 150px;
|
|
}
|
|
|
|
#toolbox_basic {
|
|
display: none !important;
|
|
top: 187px;
|
|
}
|
|
|
|
#toolbox_library {
|
|
display: none !important;
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 25px;
|
|
left: calc(50% - 95px);
|
|
width: 190px;
|
|
}
|
|
.mobile_add_question a {
|
|
display: flex !important;
|
|
justify-content: center;
|
|
padding: 10px 20px 10px !important;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
.mobile_add_question .plus {
|
|
margin-right: 8px;
|
|
font-size: 28px;
|
|
line-height: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mobile_add_question_popup {
|
|
z-index: 9999;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
padding: 40px 20px 20px 20px;
|
|
background: white;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item {
|
|
cursor: pointer;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 300px;
|
|
height: 45px;
|
|
margin: 15px auto 5px auto;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: #f5fafe;
|
|
border: 1px #dfeffb solid;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item:hover {
|
|
background-color: #dfeffb;
|
|
border: 1px #c8e3f8 solid;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.faicon {
|
|
position: absolute;
|
|
left: 20px;
|
|
line-height: 42px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.faicon.matrix_32 {
|
|
line-height: 10px;
|
|
margin-top: 9px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.item_text {
|
|
line-height: 42px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_button {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
left: calc(50% - 95px);
|
|
box-sizing: border-box;
|
|
width: 190px;
|
|
text-align: center;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_button a {
|
|
padding: 10px 20px 10px !important;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#vprasanje_float_editing {
|
|
position: fixed;
|
|
z-index: 99999;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
margin: 0 !important;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
box-shadow: 0px 0px 100px 100px #333;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_edit {
|
|
top: 0;
|
|
margin-bottom: 55px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_tabs {
|
|
position: absolute;
|
|
top: 42px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_tabs a.tab_link {
|
|
height: auto;
|
|
padding: 10px 9px;
|
|
}
|
|
#vprasanje_float_editing .tab {
|
|
padding-top: 100px;
|
|
}
|
|
#vprasanje_float_editing .tab h2 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_buttons {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
position: relative;
|
|
bottom: 30px;
|
|
padding: 0 15px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_buttons span {
|
|
width: 40%;
|
|
margin-left: 0 !important;
|
|
text-align: center;
|
|
}
|
|
|
|
#main #anketa #globalSetingsList {
|
|
max-width: 100% !important;
|
|
width: 100% !important;
|
|
}
|
|
#main #anketa #globalSetingsList fieldset {
|
|
width: 100% !important;
|
|
}
|
|
|
|
/* NASTAVITVE in ARHIVI */
|
|
#main #anketa #anketa_edit.page_nastavitve,
|
|
#main #anketa #anketa_edit.page_osn_pod,
|
|
#main #anketa #anketa_edit.page_mobile_settings,
|
|
#main #anketa #anketa_edit.page_jezik,
|
|
#main #anketa #anketa_edit.page_dostop,
|
|
#main #anketa #anketa_edit.page_piskot,
|
|
#main #anketa #anketa_edit.page_alert,
|
|
#main #anketa #anketa_edit.page_trajanje,
|
|
#main #anketa #anketa_edit.page_skupine,
|
|
#main #anketa #anketa_edit.page_urejanje,
|
|
#main #anketa #anketa_edit.page_prikaz,
|
|
#main #anketa #anketa_edit.page_metadata,
|
|
#main #anketa #anketa_edit.page_missing,
|
|
#main #anketa #anketa_edit.page_export_settings,
|
|
#main #anketa #anketa_edit.page_gdpr_settings,
|
|
#main #anketa #anketa_edit.page_uporabnost,
|
|
#main #anketa #anketa_edit.page_kviz,
|
|
#main #anketa #anketa_edit.page_voting,
|
|
#main #anketa #anketa_edit.page_social_network,
|
|
#main #anketa #anketa_edit.page_slideshow,
|
|
#main #anketa #anketa_edit.page_telephone,
|
|
#main #anketa #anketa_edit.page_chat,
|
|
#main #anketa #anketa_edit.page_panel,
|
|
#main #anketa #anketa_edit.page_advanced_paradata,
|
|
#main #anketa #anketa_edit.page_json_survey_export,
|
|
#main #anketa #anketa_edit.page_fieldwork {
|
|
flex-direction: column-reverse;
|
|
}
|
|
#main #anketa #anketa_edit.page_nastavitve > div,
|
|
#main #anketa #anketa_edit.page_osn_pod > div,
|
|
#main #anketa #anketa_edit.page_mobile_settings > div,
|
|
#main #anketa #anketa_edit.page_jezik > div,
|
|
#main #anketa #anketa_edit.page_dostop > div,
|
|
#main #anketa #anketa_edit.page_piskot > div,
|
|
#main #anketa #anketa_edit.page_alert > div,
|
|
#main #anketa #anketa_edit.page_trajanje > div,
|
|
#main #anketa #anketa_edit.page_skupine > div,
|
|
#main #anketa #anketa_edit.page_urejanje > div,
|
|
#main #anketa #anketa_edit.page_prikaz > div,
|
|
#main #anketa #anketa_edit.page_metadata > div,
|
|
#main #anketa #anketa_edit.page_missing > div,
|
|
#main #anketa #anketa_edit.page_export_settings > div,
|
|
#main #anketa #anketa_edit.page_gdpr_settings > div,
|
|
#main #anketa #anketa_edit.page_uporabnost > div,
|
|
#main #anketa #anketa_edit.page_kviz > div,
|
|
#main #anketa #anketa_edit.page_voting > div,
|
|
#main #anketa #anketa_edit.page_social_network > div,
|
|
#main #anketa #anketa_edit.page_slideshow > div,
|
|
#main #anketa #anketa_edit.page_telephone > div,
|
|
#main #anketa #anketa_edit.page_chat > div,
|
|
#main #anketa #anketa_edit.page_panel > div,
|
|
#main #anketa #anketa_edit.page_advanced_paradata > div,
|
|
#main #anketa #anketa_edit.page_json_survey_export > div,
|
|
#main #anketa #anketa_edit.page_fieldwork > div {
|
|
width: 100%;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
/* OBLIKA */
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder {
|
|
width: 100%;
|
|
}
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#theme-editor {
|
|
width: 100% !important;
|
|
float: none !important;
|
|
}
|
|
|
|
#theme-preview {
|
|
width: 100% !important;
|
|
float: none !important;
|
|
margin-top: 80px !important;
|
|
}
|
|
|
|
/* ARHIVI */
|
|
#main #anketa #anketa_edit.page_arhivi {
|
|
flex-direction: column-reverse;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi > div {
|
|
width: 100% !important;
|
|
margin: 20px 0;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input {
|
|
width: 100% !important;
|
|
}
|
|
|
|
#srv_diagnostic br {
|
|
display: none;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results,
|
|
#srv_diagnostic #srv_diagnostic_results_right {
|
|
clear: both;
|
|
display: block !important;
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 20px 0 !important;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results table,
|
|
#srv_diagnostic #srv_diagnostic_results_right table {
|
|
width: 100%;
|
|
min-width: 100%;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results table td + td,
|
|
#srv_diagnostic #srv_diagnostic_results_right table td + td {
|
|
width: auto !important;
|
|
}
|
|
|
|
.subpage_testnipodatki {
|
|
line-height: 20px;
|
|
}
|
|
.subpage_testnipodatki form input[type=submit] {
|
|
margin: 10px 0 10px 15px;
|
|
padding: 3px;
|
|
}
|
|
.subpage_testnipodatki form label {
|
|
padding-top: 20px;
|
|
}
|
|
.subpage_testnipodatki form label input {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
#vabila > table,
|
|
table.invitations_settings,
|
|
#inv_msg_preview table,
|
|
#inv_send_mail table {
|
|
border-spacing: 0px;
|
|
width: 100%;
|
|
}
|
|
#vabila > table tbody,
|
|
table.invitations_settings tbody,
|
|
#inv_msg_preview table tbody,
|
|
#inv_send_mail table tbody {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100% !important;
|
|
}
|
|
#vabila > table > tbody > tr,
|
|
#vabila > table > tbody > tr > td,
|
|
table.invitations_settings > tbody > tr,
|
|
table.invitations_settings > tbody > tr > td,
|
|
#inv_msg_preview table > tbody > tr,
|
|
#inv_msg_preview table > tbody > tr > td,
|
|
#inv_send_mail table > tbody > tr,
|
|
#inv_send_mail table > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
#vabila > table > tbody > tr > td,
|
|
table.invitations_settings > tbody > tr > td,
|
|
#inv_msg_preview table > tbody > tr > td,
|
|
#inv_send_mail table > tbody > tr > td {
|
|
height: auto !important;
|
|
margin: 0;
|
|
padding: 0 !important;
|
|
}
|
|
#vabila > table > tbody > tr > td > br,
|
|
table.invitations_settings > tbody > tr > td > br,
|
|
#inv_msg_preview table > tbody > tr > td > br,
|
|
#inv_send_mail table > tbody > tr > td > br {
|
|
display: none;
|
|
}
|
|
#vabila > table > tbody > tr > td > div,
|
|
#vabila > table > tbody > tr > td > fieldset,
|
|
table.invitations_settings > tbody > tr > td > div,
|
|
table.invitations_settings > tbody > tr > td > fieldset,
|
|
#inv_msg_preview table > tbody > tr > td > div,
|
|
#inv_msg_preview table > tbody > tr > td > fieldset,
|
|
#inv_send_mail table > tbody > tr > td > div,
|
|
#inv_send_mail table > tbody > tr > td > fieldset {
|
|
margin: 15px 0;
|
|
}
|
|
#vabila > table colgroup,
|
|
#vabila > table colgroup col,
|
|
table.invitations_settings colgroup,
|
|
table.invitations_settings colgroup col,
|
|
#inv_msg_preview table colgroup,
|
|
#inv_msg_preview table colgroup col,
|
|
#inv_send_mail table colgroup,
|
|
#inv_send_mail table colgroup col {
|
|
width: 100% !important;
|
|
}
|
|
#vabila > table p label,
|
|
table.invitations_settings p label,
|
|
#inv_msg_preview table p label,
|
|
#inv_send_mail table p label {
|
|
width: 100%;
|
|
}
|
|
#vabila > table p label input[type=text],
|
|
#vabila > table p label input[type=number],
|
|
#vabila > table p label input[type=password],
|
|
table.invitations_settings p label input[type=text],
|
|
table.invitations_settings p label input[type=number],
|
|
table.invitations_settings p label input[type=password],
|
|
#inv_msg_preview table p label input[type=text],
|
|
#inv_msg_preview table p label input[type=number],
|
|
#inv_msg_preview table p label input[type=password],
|
|
#inv_send_mail table p label input[type=text],
|
|
#inv_send_mail table p label input[type=number],
|
|
#inv_send_mail table p label input[type=password] {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#surveyInvitationSetting,
|
|
#surveyInvitationSettingServer {
|
|
min-width: 100% !important;
|
|
width: 100% !important;
|
|
margin: 10px 0 !important;
|
|
box-sizing: border-box !important;
|
|
}
|
|
|
|
#inv_top_navi {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#inv_top_navi .inv_space {
|
|
display: none;
|
|
}
|
|
#inv_top_navi > #inv_step_nav {
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0 0 15px 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav .inv_step {
|
|
height: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav span.label {
|
|
padding: 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step span.circle {
|
|
width: 18px;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step span.label {
|
|
padding: 0 0 0 3px;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step_space {
|
|
display: none;
|
|
}
|
|
|
|
#inv_recipients_profiles_holder,
|
|
#inv_import_list_container,
|
|
#inv_messages_profiles_holder,
|
|
#inv_msg_preview_hld,
|
|
#invitation_profile_notes,
|
|
#inv_select_mail_to,
|
|
#inv_select_mail_preview {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 15px 0 !important;
|
|
}
|
|
#inv_recipients_profiles_holder textarea,
|
|
#inv_import_list_container textarea,
|
|
#inv_messages_profiles_holder textarea,
|
|
#inv_msg_preview_hld textarea,
|
|
#invitation_profile_notes textarea,
|
|
#inv_select_mail_to textarea,
|
|
#inv_select_mail_preview textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
#inv_msg_preview table th {
|
|
height: auto !important;
|
|
width: 100% !important;
|
|
margin: 0;
|
|
padding: 20px 0 0 0 !important;
|
|
text-align: left;
|
|
}
|
|
#inv_msg_preview table input {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.addthis_toolbox {
|
|
line-height: 24px;
|
|
}
|
|
.addthis_toolbox .at-icon-wrapper {
|
|
height: 24px !important;
|
|
width: 24px !important;
|
|
}
|
|
.addthis_toolbox .at-icon-wrapper svg {
|
|
height: 24px !important;
|
|
width: 24px !important;
|
|
}
|
|
.addthis_toolbox .addthis_separator {
|
|
font-size: 16px;
|
|
}
|
|
|
|
#inv_field_container ul li {
|
|
width: 45%;
|
|
}
|
|
|
|
.page_data #vnosi_paginacija {
|
|
display: flex;
|
|
flex-direction: column;
|
|
float: none;
|
|
}
|
|
.page_data #vnosi_paginacija > div {
|
|
margin: 5px 0;
|
|
}
|
|
.page_data #vnosi_paginacija label {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.page_data #data_search_filter {
|
|
display: flex;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.page_data #data_search_filter input {
|
|
box-sizing: border-box;
|
|
margin-left: 10px;
|
|
width: 100%;
|
|
}
|
|
.page_data .dataSettingsBasic {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
.page_data #toggleDataCheckboxes {
|
|
display: none;
|
|
}
|
|
.page_data #div_vnosi_data #dataTableScroller {
|
|
display: none;
|
|
}
|
|
.page_data #div_vnosi_data #tableContainer {
|
|
overflow-y: hidden;
|
|
padding-bottom: 20px;
|
|
}
|
|
.page_data #bottom_data_legend {
|
|
display: block;
|
|
float: none;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 5px 0 10px 0;
|
|
}
|
|
|
|
.subpage_append,
|
|
.subpage_merge,
|
|
.subpage_calculation,
|
|
.subpage_coding_auto,
|
|
.subpage_recoding,
|
|
.subpage_coding,
|
|
.page_export {
|
|
flex-direction: column !important;
|
|
}
|
|
.subpage_append .anketa_edit_main,
|
|
.subpage_merge .anketa_edit_main,
|
|
.subpage_calculation .anketa_edit_main,
|
|
.subpage_coding_auto .anketa_edit_main,
|
|
.subpage_recoding .anketa_edit_main,
|
|
.subpage_coding .anketa_edit_main,
|
|
.page_export .anketa_edit_main {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
}
|
|
.subpage_append .anketa_edit_left,
|
|
.subpage_merge .anketa_edit_left,
|
|
.subpage_calculation .anketa_edit_left,
|
|
.subpage_coding_auto .anketa_edit_left,
|
|
.subpage_recoding .anketa_edit_left,
|
|
.subpage_coding .anketa_edit_left,
|
|
.page_export .anketa_edit_left {
|
|
display: none !important;
|
|
}
|
|
.subpage_append textarea,
|
|
.subpage_merge textarea,
|
|
.subpage_calculation textarea,
|
|
.subpage_coding_auto textarea,
|
|
.subpage_recoding textarea,
|
|
.subpage_coding textarea,
|
|
.page_export textarea {
|
|
width: 100% !important;
|
|
}
|
|
.subpage_append #inv_upload_recipients_nosbmt + span,
|
|
.subpage_merge #inv_upload_recipients_nosbmt + span,
|
|
.subpage_calculation #inv_upload_recipients_nosbmt + span,
|
|
.subpage_coding_auto #inv_upload_recipients_nosbmt + span,
|
|
.subpage_recoding #inv_upload_recipients_nosbmt + span,
|
|
.subpage_coding #inv_upload_recipients_nosbmt + span,
|
|
.page_export #inv_upload_recipients_nosbmt + span {
|
|
display: block;
|
|
clear: both;
|
|
margin: 40px 0 0 0 !important;
|
|
}
|
|
|
|
.analysis_bottom_settings a:first-child {
|
|
display: block;
|
|
margin: 0 0 20px 0 !important;
|
|
}
|
|
|
|
.chart_holder {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.chart_holder .chart_img {
|
|
min-height: auto;
|
|
float: none;
|
|
pointer-events: none;
|
|
}
|
|
.chart_holder .chart_img img {
|
|
width: 100%;
|
|
}
|
|
.chart_holder .chart_settings {
|
|
display: none;
|
|
}
|
|
.chart_holder .chart_bottom_settings:first-child {
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
table.analysis_reports {
|
|
border-spacing: 0px;
|
|
}
|
|
table.analysis_reports > tbody > tr,
|
|
table.analysis_reports > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.analysis_reports > tbody > tr > td {
|
|
margin: 10px 0;
|
|
}
|
|
table.analysis_reports fieldset {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.noSurvey_sequence {
|
|
padding: 0;
|
|
}
|
|
.noSurvey_sequence .main_holder.main {
|
|
flex-direction: column;
|
|
}
|
|
.noSurvey_sequence .main_holder .left_holder {
|
|
width: 90% !important;
|
|
margin: auto;
|
|
}
|
|
.noSurvey_sequence .main_holder .right_holder {
|
|
width: 90% !important;
|
|
margin: auto;
|
|
}
|
|
.noSurvey_sequence .buttons_holder {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.noSurvey_sequence .buttons_holder a .button {
|
|
margin: 10px 30px;
|
|
}
|
|
|
|
#table-horizontal-scroll-wrapper1-userchanges {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
#table-horizontal-scroll-wrapper2-userchanges {
|
|
display: table-cell;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
#table-horizontal-scroll-wrapper2-userchanges table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.page_arhivi,
|
|
.page_tracking,
|
|
.subpage_anal_arch,
|
|
.subpage_view_archive,
|
|
.subpage_anal_arch {
|
|
flex-direction: column !important;
|
|
}
|
|
.page_arhivi .anketa_edit_left,
|
|
.page_tracking .anketa_edit_left,
|
|
.subpage_anal_arch .anketa_edit_left,
|
|
.subpage_view_archive .anketa_edit_left,
|
|
.subpage_anal_arch .anketa_edit_left {
|
|
display: none !important;
|
|
}
|
|
.page_arhivi .anketa_edit_main,
|
|
.page_tracking .anketa_edit_main,
|
|
.subpage_anal_arch .anketa_edit_main,
|
|
.subpage_view_archive .anketa_edit_main,
|
|
.subpage_anal_arch .anketa_edit_main {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=admin_new.css.map */
|