35488 lines
1.1 MiB
35488 lines
1.1 MiB
@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;
|
|
}
|
|
|
|
.fa-brands {
|
|
font-family: "Font Awesome 5 Brands";
|
|
font-weight: 400;
|
|
}
|
|
|
|
/*
|
|
All colors
|
|
*/
|
|
p, span {
|
|
font-size: 16px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
|
|
.bottom16 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.top32 {
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.bottom32 {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.bottom8 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.top8 {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.top4 {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.top0 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.warning,
|
|
.red {
|
|
color: #FF0000;
|
|
}
|
|
|
|
.blue {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.gray {
|
|
color: #777777;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 800;
|
|
}
|
|
|
|
.semi-bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.heavy {
|
|
font-weight: 900;
|
|
}
|
|
|
|
.caps {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.as_link {
|
|
text-decoration: underline;
|
|
color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.avg {
|
|
text-decoration: overline;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
padding: 0 32px;
|
|
max-width: 1060px;
|
|
}
|
|
body #main_holder #main .wide {
|
|
margin: 0 auto;
|
|
padding: 0 32px;
|
|
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.fa-brands,
|
|
a.fa-brands {
|
|
font-family: "Font Awesome 5 Brands";
|
|
color: inherit;
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.empty,
|
|
a.faicon.empty,
|
|
span.fa-brands.empty,
|
|
a.fa-brands.empty {
|
|
font-weight: 400;
|
|
}
|
|
span.faicon.link-right,
|
|
a.faicon.link-right,
|
|
span.fa-brands.link-right,
|
|
a.fa-brands.link-right {
|
|
margin-right: 10px;
|
|
}
|
|
span.faicon.link-left,
|
|
a.faicon.link-left,
|
|
span.fa-brands.link-left,
|
|
a.fa-brands.link-left {
|
|
margin-left: 8px;
|
|
}
|
|
span.faicon.large::before,
|
|
a.faicon.large::before,
|
|
span.fa-brands.large::before,
|
|
a.fa-brands.large::before {
|
|
font-size: 32px !important;
|
|
}
|
|
span.faicon.medium::before,
|
|
a.faicon.medium::before,
|
|
span.fa-brands.medium::before,
|
|
a.fa-brands.medium::before {
|
|
font-size: 24px !important;
|
|
}
|
|
span.faicon.title20::before,
|
|
a.faicon.title20::before,
|
|
span.fa-brands.title20::before,
|
|
a.fa-brands.title20::before {
|
|
font-size: 20px !important;
|
|
margin-left: 16px;
|
|
}
|
|
span.faicon.normal::before,
|
|
a.faicon.normal::before,
|
|
span.fa-brands.normal::before,
|
|
a.fa-brands.normal::before {
|
|
font-size: 16px !important;
|
|
}
|
|
span.faicon.small::before,
|
|
a.faicon.small::before,
|
|
span.fa-brands.small::before,
|
|
a.fa-brands.small::before {
|
|
font-size: 10px !important;
|
|
}
|
|
span.faicon.yellow,
|
|
a.faicon.yellow,
|
|
span.fa-brands.yellow,
|
|
a.fa-brands.yellow {
|
|
color: #FFC700 !important;
|
|
}
|
|
span.faicon.blue,
|
|
a.faicon.blue,
|
|
span.fa-brands.blue,
|
|
a.fa-brands.blue {
|
|
color: #1E88E5 !important;
|
|
}
|
|
span.faicon.red,
|
|
a.faicon.red,
|
|
span.fa-brands.red,
|
|
a.fa-brands.red {
|
|
color: #FF0000 !important;
|
|
}
|
|
span.faicon.ultra_dark_gray,
|
|
a.faicon.ultra_dark_gray,
|
|
span.fa-brands.ultra_dark_gray,
|
|
a.fa-brands.ultra_dark_gray {
|
|
color: #555555 !important;
|
|
}
|
|
span.faicon.green,
|
|
a.faicon.green,
|
|
span.fa-brands.green,
|
|
a.fa-brands.green {
|
|
color: #00C437 !important;
|
|
}
|
|
span.faicon.aslink,
|
|
a.faicon.aslink,
|
|
span.fa-brands.aslink,
|
|
a.fa-brands.aslink {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
span.faicon.aslink:hover,
|
|
a.faicon.aslink:hover,
|
|
span.fa-brands.aslink:hover,
|
|
a.fa-brands.aslink:hover {
|
|
color: #0059ab;
|
|
}
|
|
span.faicon.fa-stack,
|
|
a.faicon.fa-stack,
|
|
span.fa-brands.fa-stack,
|
|
a.fa-brands.fa-stack {
|
|
height: 1em;
|
|
line-height: 1em;
|
|
width: 1em;
|
|
vertical-align: baseline;
|
|
}
|
|
span.faicon.flipX,
|
|
a.faicon.flipX,
|
|
span.fa-brands.flipX,
|
|
a.fa-brands.flipX {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
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 span.fa-brands,
|
|
div.icon_holder a.fa-brands,
|
|
div.icon_holder button.ui-datepicker-trigger {
|
|
margin-left: 12px;
|
|
}
|
|
div.icon_holder.multiple span.faicon,
|
|
div.icon_holder.multiple a.faicon,
|
|
div.icon_holder.multiple span.fa-brands,
|
|
div.icon_holder.multiple a.fa-brands {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
div.icon_holder.multiple span.faicon:last-of-type,
|
|
div.icon_holder.multiple a.faicon:last-of-type,
|
|
div.icon_holder.multiple span.fa-brands:last-of-type,
|
|
div.icon_holder.multiple a.fa-brands: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.success::before,
|
|
span.circle-check::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.file-import::before {
|
|
content: "";
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
span.faicon.import::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
/*span.faicon.import::after{
|
|
font-size: 14px;
|
|
content: "\f061";
|
|
display: inline-block;
|
|
}*/
|
|
span.faicon.library::before {
|
|
font-size: 24px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.folder::before {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.folder_empty::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
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,
|
|
span.faicon.edit2::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.refresh::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.filter::before {
|
|
font-size: 18px;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.grip::before {
|
|
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.clipboard_notes::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: "";
|
|
}
|
|
|
|
.faicon.monitor::before {
|
|
content: "";
|
|
}
|
|
|
|
.faicon.mobile::before {
|
|
content: "";
|
|
}
|
|
|
|
.faicon.tablet::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 {
|
|
content: "";
|
|
font-weight: 700;
|
|
}
|
|
|
|
span.faicon.comments_empty::before {
|
|
content: "";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.data_link::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.data_link_small::before {
|
|
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: "";
|
|
}
|
|
|
|
span.faicon.chart::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.data::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.publish::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.test::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* 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: "";
|
|
}
|
|
|
|
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: "";
|
|
}
|
|
|
|
span.faicon.file-preview::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.dots::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.dots_ver:before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.open_icon::before,
|
|
a.faicon.open_icon::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.table_icon::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.list::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.link-chain::before {
|
|
content: "";
|
|
}
|
|
|
|
span.fa-brands.html5::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.stopwatch20::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.checkbox-empty::before {
|
|
content: "";
|
|
font-weight: 400 !important;
|
|
}
|
|
|
|
span.faicon.fa-1::before {
|
|
content: "1";
|
|
}
|
|
|
|
span.faicon.phone::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.screwdriver::before {
|
|
content: "";
|
|
font-weight: 600 !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 : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* NAPREDNI MODULI */
|
|
.navigation_modules a {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
span.module_icon {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 24px;
|
|
padding: 0 8px;
|
|
color: #FFFFFF;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
background-color: #0059ab;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
span.module_icon::before {
|
|
line-height: 20px;
|
|
}
|
|
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: #1E88E5;
|
|
}
|
|
span.module_icon.gdpr:hover {
|
|
color: #FFFFFF;
|
|
}
|
|
span.module_icon.gdpr.active {
|
|
color: #FFFFFF;
|
|
}
|
|
span.module_icon.gdpr.active:hover {
|
|
color: white;
|
|
}
|
|
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: Source Sans Pro, sans-serif;
|
|
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;
|
|
}
|
|
|
|
span.inline.faicon.odg_if_not::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF*";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_follow::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_follow::after {
|
|
font-size: 14px;
|
|
margin-left: 2px;
|
|
content: "";
|
|
}
|
|
|
|
.variabla span.inline.faicon.correct::before {
|
|
font-size: 14px;
|
|
font-weight: 900;
|
|
content: "";
|
|
}
|
|
|
|
.faicon.move_updown::before {
|
|
font-size: 16px;
|
|
color: #0059ab;
|
|
content: "";
|
|
}
|
|
|
|
.faicon.image_upload::before {
|
|
content: "";
|
|
font-weight: 400;
|
|
}
|
|
|
|
/*
|
|
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 {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #ed1c24;
|
|
}
|
|
|
|
span.faicon.pdf.black {
|
|
color: #1E88E5 !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: #1E88E5 !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: #1E88E5 !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: #1E88E5 !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: #1E88E5 !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 {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.arhiv_mail::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.share-arrow::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 : 10-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Analiza */
|
|
span.faicon.an_sigma::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
content: "Σ";
|
|
}
|
|
|
|
span.faicon.an_sigmax::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
content: "Σ*";
|
|
}
|
|
|
|
span.faicon.an_freq::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "f";
|
|
}
|
|
|
|
span.faicon.an_freqx::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "f*";
|
|
}
|
|
|
|
span.faicon.an_stat::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
content: "s";
|
|
}
|
|
|
|
span.faicon.an_chart_bar::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
/*content: "\f080";*/
|
|
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
|
|
*/
|
|
/* Invitation table */
|
|
span.faicon.inv_sent_0::before {
|
|
content: "";
|
|
}
|
|
|
|
span.faicon.inv_sent_1::before {
|
|
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;
|
|
}
|
|
a.read-more {
|
|
text-decoration: none;
|
|
}
|
|
a.read-more .faicon:before {
|
|
padding-left: 8px;
|
|
font-size: 8px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.displayNone {
|
|
display: none !important;
|
|
}
|
|
|
|
/*
|
|
Components scss
|
|
*/
|
|
/*
|
|
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 p {
|
|
margin-bottom: 8px;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content p:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ul,
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ol {
|
|
margin-bottom: 8px;
|
|
margin: 8px 0 8px 0;
|
|
padding: 0;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ul li,
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ol li {
|
|
margin: 4px 0 4px 16px;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
/* tooltip popups */
|
|
.tooltip {
|
|
position: relative;
|
|
}
|
|
.tooltip:hover .expanded-tooltip {
|
|
display: block;
|
|
}
|
|
.tooltip .expanded-tooltip {
|
|
display: none;
|
|
white-space: normal;
|
|
z-index: 99999;
|
|
position: absolute;
|
|
top: 26px;
|
|
left: -1px;
|
|
width: 307px;
|
|
height: auto;
|
|
margin: 0;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
cursor: auto;
|
|
margin-top: 14px;
|
|
padding: 12px;
|
|
border-radius: 2px;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box a {
|
|
text-decoration: none;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 20px;
|
|
width: 15px;
|
|
height: 15px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid;
|
|
border-color: #E5E5E5 transparent transparent #E5E5E5;
|
|
-webkit-transform: rotate(45deg);
|
|
-moz-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
-o-transform: rotate(45deg);
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box h1 {
|
|
margin: 0 0 12px 0;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
text-transform: uppercase;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box h1 .faicon {
|
|
padding: 0 !important;
|
|
margin-right: 8px;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box h1 .faicon:before {
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
vertical-align: unset !important;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_line {
|
|
margin-bottom: 10px;
|
|
padding: 0 !important;
|
|
line-height: 18px;
|
|
font-size: 14px;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_line:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_line a,
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_line label {
|
|
padding: 0 !important;
|
|
font-size: 14px;
|
|
line-height: 18px !important;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_device {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_device .item.separator {
|
|
height: 24px;
|
|
width: 1px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_device .item a {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
padding: 0 !important;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_device .item a .faicon:before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.tooltip .expanded-tooltip .expanded-tooltip-box .tooltip_device .item a:last-child {
|
|
margin-right: 0px;
|
|
padding-right: 0px;
|
|
border-right: 0;
|
|
}
|
|
.tooltip .expanded-tooltip#request_help_content, .tooltip .expanded-tooltip#test_data_content, .tooltip .expanded-tooltip#survey_locked_content {
|
|
left: -16px;
|
|
}
|
|
|
|
/*
|
|
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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
.divPopUp h2 span.faicon,
|
|
.divPopUp h2 span.fa-brands,
|
|
.divPopUp .divPopUp_top span.faicon,
|
|
.divPopUp .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
.divPopUp h2 span.faicon:before,
|
|
.divPopUp h2 span.fa-brands:before,
|
|
.divPopUp .divPopUp_top span.faicon:before,
|
|
.divPopUp .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp p {
|
|
line-height: 20px;
|
|
}
|
|
.divPopUp .popup_note,
|
|
.divPopUp .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
.divPopUp .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
.divPopUp .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
.divPopUp .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
.divPopUp .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
.divPopUp .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.divPopUp .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.divPopUp .popup_main .popup_left .list .list-item.active, .divPopUp .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
.divPopUp .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
.divPopUp .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
.divPopUp .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
.divPopUp .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.divPopUp .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
.divPopUp .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
.divPopUp .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.divPopUp .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.divPopUp .popup_main .setting_line label,
|
|
.divPopUp .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
.divPopUp .popup_main .settings_block label,
|
|
.divPopUp .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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.PopUpNarrow {
|
|
width: 600px !important;
|
|
}
|
|
.divPopUp.PopUpAuto {
|
|
width: fit-content !important;
|
|
}
|
|
|
|
.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 #fullscreen .divPopUp {
|
|
display: block !important;
|
|
}
|
|
#fade .popup_holder .divPopUp {
|
|
display: none;
|
|
position: relative;
|
|
}
|
|
|
|
/* 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%);
|
|
}
|
|
|
|
/*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;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #333333;
|
|
border-radius: 2px;
|
|
}
|
|
#loading span.spinner {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 16px;
|
|
font-size: 14px;
|
|
}
|
|
#loading span.spinner::before {
|
|
font-size: 14px;
|
|
}
|
|
#loading span.text {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 40px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.bottom_left_popup_holder {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
z-index: 78;
|
|
position: fixed;
|
|
bottom: 16px;
|
|
left: 16px;
|
|
/* Action spodaj levo (npr. uspesno kopiranje...) */
|
|
}
|
|
.bottom_left_popup_holder #action_note_holder {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 275px;
|
|
height: 38px;
|
|
padding: 0 16px;
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box.success, .bottom_left_popup_holder .action_note_box.active-users {
|
|
border-color: #1E88E5;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box.success .faicon:before, .bottom_left_popup_holder .action_note_box.active-users .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box.error {
|
|
border-color: #FF0000;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box.error .faicon:before {
|
|
color: #FF0000;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box span.faicon::before {
|
|
font-size: 15px;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box span.text {
|
|
font-size: 14px;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box .close {
|
|
cursor: pointer;
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box .close:hover {
|
|
color: #333333;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box .close span {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
.bottom_left_popup_holder .action_note_box .close span:hover {
|
|
color: #333333;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
}
|
|
#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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#check_pogoji h2 span.faicon,
|
|
#check_pogoji h2 span.fa-brands,
|
|
#check_pogoji .divPopUp_top span.faicon,
|
|
#check_pogoji .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#check_pogoji h2 span.faicon:before,
|
|
#check_pogoji h2 span.fa-brands:before,
|
|
#check_pogoji .divPopUp_top span.faicon:before,
|
|
#check_pogoji .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji p {
|
|
line-height: 20px;
|
|
}
|
|
#check_pogoji .popup_note,
|
|
#check_pogoji .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#check_pogoji .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#check_pogoji .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#check_pogoji .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#check_pogoji .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#check_pogoji .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#check_pogoji .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#check_pogoji .popup_main .popup_left .list .list-item.active, #check_pogoji .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#check_pogoji .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#check_pogoji .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#check_pogoji .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#check_pogoji .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#check_pogoji .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#check_pogoji .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#check_pogoji .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#check_pogoji .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#check_pogoji .popup_main .setting_line label,
|
|
#check_pogoji .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#check_pogoji .popup_main .settings_block label,
|
|
#check_pogoji .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#dropped_alert h2 span.faicon,
|
|
#dropped_alert h2 span.fa-brands,
|
|
#dropped_alert .divPopUp_top span.faicon,
|
|
#dropped_alert .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#dropped_alert h2 span.faicon:before,
|
|
#dropped_alert h2 span.fa-brands:before,
|
|
#dropped_alert .divPopUp_top span.faicon:before,
|
|
#dropped_alert .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert p {
|
|
line-height: 20px;
|
|
}
|
|
#dropped_alert .popup_note,
|
|
#dropped_alert .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#dropped_alert .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#dropped_alert .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#dropped_alert .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#dropped_alert .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#dropped_alert .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#dropped_alert .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#dropped_alert .popup_main .popup_left .list .list-item.active, #dropped_alert .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#dropped_alert .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#dropped_alert .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#dropped_alert .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#dropped_alert .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#dropped_alert .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#dropped_alert .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#dropped_alert .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#dropped_alert .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#dropped_alert .popup_main .setting_line label,
|
|
#dropped_alert .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#dropped_alert .popup_main .settings_block label,
|
|
#dropped_alert .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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;
|
|
}
|
|
|
|
/*
|
|
Popupi z errorji
|
|
*/
|
|
div#success_save {
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
background-color: #FFFFFF;
|
|
width: fit-content;
|
|
padding: 10px 16px 10px 16px;
|
|
z-index: 900;
|
|
position: fixed;
|
|
bottom: 16px;
|
|
left: 16px;
|
|
-moz-box-shadow: 0 0 5px #E5E5E5;
|
|
-webkit-box-shadow: 0 0 5px #E5E5E5;
|
|
box-shadow: 0 0 5px #E5E5E5;
|
|
display: none;
|
|
}
|
|
|
|
div.button_holder.print_button {
|
|
margin-top: 16px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
div#newProfileDiv .setting_holder,
|
|
div#newProfile .setting_holder,
|
|
div#renameProfileDiv .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#newProfileDiv .setting_holder:first-of-type,
|
|
div#newProfile .setting_holder:first-of-type,
|
|
div#renameProfileDiv .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#newProfileDiv .setting_holder .setting_item,
|
|
div#newProfile .setting_holder .setting_item,
|
|
div#renameProfileDiv .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div#newProfileDiv .setting_holder .setting_item label,
|
|
div#newProfile .setting_holder .setting_item label,
|
|
div#renameProfileDiv .setting_holder .setting_item label {
|
|
margin-right: 0;
|
|
}
|
|
div#newProfileDiv .setting_holder .setting_item input.text,
|
|
div#newProfile .setting_holder .setting_item input.text,
|
|
div#renameProfileDiv .setting_holder .setting_item input.text {
|
|
margin-left: 4px;
|
|
width: 469px !important;
|
|
}
|
|
|
|
div#time_profile_content .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#time_profile_content .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#time_profile_content .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div#time_profile_content .setting_holder .setting_item label {
|
|
margin-right: 0;
|
|
}
|
|
div#time_profile_content .setting_holder .setting_item input.text {
|
|
margin: 0 4px 0 4px;
|
|
}
|
|
div#time_profile_content .setting_holder .setting_item span.faicon {
|
|
margin-right: 16px;
|
|
}
|
|
div#time_profile_content .setting_holder .setting_item select.dropdown {
|
|
margin-left: 4px;
|
|
width: 130px;
|
|
}
|
|
|
|
fieldset#missingProfileFieldset table, fieldset#missingProfileFieldset tr {
|
|
border: none;
|
|
font-size: 14px !important;
|
|
width: 100%;
|
|
line-height: normal;
|
|
}
|
|
fieldset#missingProfileFieldset table th, fieldset#missingProfileFieldset tr th {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
fieldset#missingProfileFieldset table th, fieldset#missingProfileFieldset table td, fieldset#missingProfileFieldset tr th, fieldset#missingProfileFieldset tr td {
|
|
padding: 4px;
|
|
vertical-align: middle;
|
|
}
|
|
fieldset#missingProfileFieldset table tr, fieldset#missingProfileFieldset tr tr {
|
|
height: 20px;
|
|
}
|
|
fieldset#missingProfileFieldset div.mv_settings_other {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
div.setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.setting_holder div.find-wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
div.setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div.setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div.setting_holder .setting_item label {
|
|
cursor: pointer !important;
|
|
}
|
|
div.setting_holder .setting_item input[type=checkbox][disabled] + label:before {
|
|
color: #C4C4C4;
|
|
pointer-events: none;
|
|
}
|
|
|
|
div.qtip_comment {
|
|
padding: 2px 16px 16px 16px;
|
|
}
|
|
div.qtip_comment h1:before {
|
|
display: none;
|
|
}
|
|
div.qtip_comment div textarea {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.qtip_comment div .button_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
div.qtip_comment div .button_holder button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
div.qtip_comment div .comment_bottom {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
div.qtip_comment div .comment_bottom a {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
div.from_text_popup {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
table#inv_edit_recipient {
|
|
width: 100%;
|
|
}
|
|
|
|
div#telephone_popup .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#telephone_popup .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#telephone_popup .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div#telephone_popup .setting_holder .setting_item input.text {
|
|
margin: 0 4px 0 4px;
|
|
}
|
|
div#telephone_popup .setting_holder .setting_item span.faicon {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
div#div_analiza_archive_name .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder .setting_item label {
|
|
cursor: pointer;
|
|
margin-right: 0;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder .setting_item.indent {
|
|
margin-left: 25px;
|
|
margin-top: 0;
|
|
display: none;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder .setting_item.indent input.text {
|
|
margin-left: 4px;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder .setting_item input.text.medium {
|
|
width: 40% !important;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
div#div_analiza_archive_name .setting_holder input.text,
|
|
div#div_analiza_archive_name .setting_holder textarea {
|
|
width: 100% !important;
|
|
}
|
|
div#div_analiza_archive_name .alaysis_archive_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
}
|
|
div#div_analiza_archive_name .alaysis_archive_wrap .alaysis_archive_right,
|
|
div#div_analiza_archive_name .alaysis_archive_wrap .alaysis_archive_left {
|
|
width: 50%;
|
|
}
|
|
|
|
#div_creport_settings_profiles #creport_profiles,
|
|
#div_creport_settings_profiles #mc_tables,
|
|
#mc_tables_left #creport_profiles,
|
|
#mc_tables_left #mc_tables {
|
|
cursor: pointer;
|
|
width: 99%;
|
|
height: 140px;
|
|
display: inline-block;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#div_creport_settings_profiles #creport_profiles .option,
|
|
#div_creport_settings_profiles #mc_tables .option,
|
|
#mc_tables_left #creport_profiles .option,
|
|
#mc_tables_left #mc_tables .option {
|
|
padding: 8px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
#div_creport_settings_profiles #creport_profiles .active,
|
|
#div_creport_settings_profiles #mc_tables .active,
|
|
#mc_tables_left #creport_profiles .active,
|
|
#mc_tables_left #mc_tables .active {
|
|
background-color: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
#div_creport_settings_profiles #creport_settings_profiles_comment textarea,
|
|
#mc_tables_left #creport_settings_profiles_comment textarea {
|
|
width: 100%;
|
|
height: 80px;
|
|
}
|
|
#div_creport_settings_profiles .button_holder,
|
|
#mc_tables_left .button_holder {
|
|
display: flex;
|
|
border-top: 1px solid #E5E5E5;
|
|
padding-top: 16px !important;
|
|
margin-top: 16px !important;
|
|
justify-content: space-between !important;
|
|
}
|
|
|
|
#div_mc_tables {
|
|
margin-bottom: 0;
|
|
}
|
|
#div_mc_tables .button_holder {
|
|
border-top: 1px solid #E5E5E5;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
#newCReportProfile .text,
|
|
#renameCReportProfile .text {
|
|
width: 100%;
|
|
}
|
|
|
|
#renameCReportProfile .button_holder,
|
|
#deleteCReportProfile .button_holder {
|
|
margin-top: 32px;
|
|
justify-content: flex-end;
|
|
margin-bottom: 0;
|
|
}
|
|
#renameCReportProfile .button_holder button,
|
|
#deleteCReportProfile .button_holder button {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
|
|
div#div_zanka_profiles {
|
|
width: 880px !important;
|
|
}
|
|
|
|
div#fs_list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
gap: 8px;
|
|
}
|
|
div#fs_list div#skupine_left,
|
|
div#fs_list div#skupine_right {
|
|
width: 50%;
|
|
}
|
|
div#fs_list div#skupine_left div.top,
|
|
div#fs_list div#skupine_right div.top {
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div#fs_list div#skupine_left div.top div.clear_multiply,
|
|
div#fs_list div#skupine_right div.top div.clear_multiply {
|
|
margin-right: 18px;
|
|
}
|
|
div#fs_list div#skupine_left div.top div.clear_multiply label,
|
|
div#fs_list div#skupine_right div.top div.clear_multiply label {
|
|
margin: 0 0 0 8px;
|
|
font-size: 14px;
|
|
}
|
|
div#fs_list div#skupine_left div.fs_container ul,
|
|
div#fs_list div#skupine_right div.fs_container ul {
|
|
width: 100% !important;
|
|
}
|
|
div#fs_list div#skupine_left div.fs_container ul li,
|
|
div#fs_list div#skupine_right div.fs_container ul li {
|
|
width: 100% !important;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.pbLabel {
|
|
height: 20px;
|
|
width: 160px;
|
|
vertical-align: middle;
|
|
padding: auto 0;
|
|
}
|
|
|
|
#pbRowPercent {
|
|
width: 500px;
|
|
height: 20px;
|
|
margin: 0 0 5px 0;
|
|
padding: 3px;
|
|
display: block;
|
|
background-color: white;
|
|
background: -webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));
|
|
background: -moz-linear-gradient(top, #f6fbff, #fff);
|
|
border: 1px solid #EAF9FE;
|
|
}
|
|
#pbRowPercent div {
|
|
background-color: #C7ED8B;
|
|
height: 100%;
|
|
width: 0;
|
|
border: none;
|
|
-moz-box-shadow: 2px 0 5px #F8F8F8;
|
|
-webkit-box-shadow: 2px 0 5px #F8F8F8;
|
|
box-shadow: 2px 0 5px #F8F8F8;
|
|
}
|
|
|
|
#pbRowPercentLabel {
|
|
position: absolute;
|
|
z-index: 1px;
|
|
padding: 3px;
|
|
}
|
|
|
|
#hpbRowPercent {
|
|
visibility: hidden;
|
|
}
|
|
|
|
div#testiranje_preview_settings {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 64px;
|
|
}
|
|
div#testiranje_preview_settings .testiranje_preview_settings_left,
|
|
div#testiranje_preview_settings .testiranje_preview_settings_right {
|
|
width: fit-content;
|
|
}
|
|
div#testiranje_preview_settings .testiranje_preview_settings_left .setting_holder,
|
|
div#testiranje_preview_settings .testiranje_preview_settings_right .setting_holder {
|
|
width: fit-content;
|
|
}
|
|
|
|
#div_survey_links {
|
|
min-width: 600px;
|
|
width: auto;
|
|
}
|
|
#div_survey_links .hash_comment {
|
|
min-width: 200px;
|
|
height: 100%;
|
|
min-height: 1em;
|
|
outline: 1px solid #C4C4C4;
|
|
display: inline-block;
|
|
}
|
|
|
|
fieldset.statusProfileFieldset div.valid_units_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
width: 500px;
|
|
margin-top: -8px;
|
|
}
|
|
fieldset.statusProfileFieldset div.valid_units_wrap div.valid_units_box {
|
|
width: 50%;
|
|
margin-top: 8px;
|
|
}
|
|
fieldset.statusProfileFieldset div.valid_units_wrap div.valid_units_box input[type=checkbox][disabled] + label:before {
|
|
color: #C4C4C4;
|
|
pointer-events: none;
|
|
}
|
|
fieldset.statusProfileFieldset .setting_holder .setting_title {
|
|
font-size: 14px !important;
|
|
}
|
|
fieldset.statusProfileFieldset .setting_holder .setting_item label {
|
|
font-size: 14px !important;
|
|
}
|
|
fieldset.statusProfileFieldset .setting_holder .horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
fieldset.statusProfileFieldset .setting_holder.disabled {
|
|
pointer-events: none;
|
|
color: #C4C4C4;
|
|
}
|
|
fieldset.statusProfileFieldset .setting_holder.disabled .setting_item label {
|
|
pointer-events: none;
|
|
color: #C4C4C4;
|
|
}
|
|
|
|
#divStatusProfile .popup_main:not(.with_menu),
|
|
#div_variable_profiles .popup_main:not(.with_menu) {
|
|
border-bottom: none;
|
|
}
|
|
|
|
div#div_cp_preview_content div#div_condition_editing_container,
|
|
div#div_condition_editing div#div_condition_editing_container {
|
|
background-color: #EEF7FF;
|
|
padding: 12px;
|
|
}
|
|
div#div_cp_preview_content div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_preview div.condition_editing_naslov_holder div#div_condition_editing_conditions .clr_if,
|
|
div#div_cp_preview_content div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_preview div.condition_editing_naslov_holder div#div_condition_editing_conditions .colorif,
|
|
div#div_condition_editing div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_preview div.condition_editing_naslov_holder div#div_condition_editing_conditions .clr_if,
|
|
div#div_condition_editing div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_preview div.condition_editing_naslov_holder div#div_condition_editing_conditions .colorif {
|
|
color: #1E88E5;
|
|
}
|
|
div#div_cp_preview_content div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_body,
|
|
div#div_condition_editing div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_body {
|
|
margin-top: 16px !important;
|
|
}
|
|
div#div_cp_preview_content div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_body div.condition_editing_row div.white_holder,
|
|
div#div_condition_editing div#div_condition_editing_container div#div_condition_editing_inner div.condition_editing_body div.condition_editing_row div.white_holder {
|
|
padding: 16px;
|
|
}
|
|
div#div_cp_preview_content div#div_condition_editing_container div#div_condition_editing_inner div.div_condition_editing_operators,
|
|
div#div_condition_editing div#div_condition_editing_container div#div_condition_editing_inner div.div_condition_editing_operators {
|
|
margin: 0;
|
|
}
|
|
|
|
div.popup_right #div_cp_preview_content #if_popup_butons {
|
|
display: none !important;
|
|
}
|
|
|
|
#rec_spremenljivka_naslov {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.question_recode_table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
.question_recode_table td, .question_recode_table th {
|
|
font-size: 14px;
|
|
}
|
|
.question_recode_table td select, .question_recode_table th select {
|
|
width: 100% !important;
|
|
}
|
|
|
|
#divRecodeSprOption label {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#divRecodeSprNew .setting_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin: 16px 0;
|
|
}
|
|
#divRecodeSprNew .setting_holder button {
|
|
width: fit-content;
|
|
min-width: auto;
|
|
}
|
|
#divRecodeSprNew .setting_holder input.text {
|
|
margin: 0 16px 0 16px;
|
|
}
|
|
#divRecodeSprNew .setting_holder input.text.none-left {
|
|
margin-left: 0;
|
|
}
|
|
#divRecodeSprNew .setting_holder .recode_end {
|
|
margin-left: 80px;
|
|
}
|
|
|
|
#coding_spr_new p, #coding_spr_new span,
|
|
#divRecodeSprNew p,
|
|
#divRecodeSprNew span {
|
|
font-size: 14px;
|
|
}
|
|
#coding_spr_new input,
|
|
#divRecodeSprNew input {
|
|
margin: 0 16px 0 16px;
|
|
}
|
|
#coding_spr_new button,
|
|
#divRecodeSprNew button {
|
|
width: fit-content;
|
|
min-width: auto;
|
|
}
|
|
|
|
table.question_recode_table {
|
|
table-layout: fixed;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
table.question_recode_table td, table.question_recode_table th {
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
table.question_recode_table td.main_head, table.question_recode_table th.main_head {
|
|
width: 50%;
|
|
}
|
|
table.question_recode_table td.dark, table.question_recode_table th.dark {
|
|
background-color: #F2F2F2;
|
|
}
|
|
table.question_recode_table td.labela, table.question_recode_table th.labela {
|
|
width: 190px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
div.column.variable select {
|
|
margin-left: 8px !important;
|
|
}
|
|
|
|
div#inspect_div .setting_holder .horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
div.popupShadow {
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
|
|
div#newMCTable .setting_holder input.text {
|
|
width: 100% !important;
|
|
}
|
|
|
|
div#mc_table_settings h3 {
|
|
font-weight: 700;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
div#mc_table_settings h3:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
margin-right: -100%;
|
|
margin-left: 12px;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
div#mc_table_settings form {
|
|
padding: 0;
|
|
}
|
|
|
|
#table_create_time {
|
|
margin: 16px 0 32px 0;
|
|
text-align: right;
|
|
}
|
|
|
|
div#div_analiza_archive_name {
|
|
width: 900px !important;
|
|
}
|
|
div#div_analiza_archive_name div.setting_holder textarea.email {
|
|
height: 60px !important;
|
|
}
|
|
div#div_analiza_archive_name div#div_archives_email_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
margin-top: 4px;
|
|
}
|
|
div#div_analiza_archive_name div#div_archives_email_wrap div#div_archives_email_left {
|
|
width: 60%;
|
|
}
|
|
div#div_analiza_archive_name div#div_archives_email_wrap div#div_archives_email_right {
|
|
min-height: 100% !important;
|
|
}
|
|
div#div_analiza_archive_name div#div_archives_email_wrap div#div_archives_email_right div.message_instructions {
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
width: 100%;
|
|
min-height: 100% !important;
|
|
}
|
|
div#div_analiza_archive_name div#div_archives_email_wrap div#div_archives_email_right div.message_instructions div.sistemske p {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
div.user_settings div.segment .setting_holder {
|
|
margin-bottom: 8px !important;
|
|
}
|
|
div.user_settings div.segment .setting_holder.horizontal {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
align-items: center;
|
|
}
|
|
div.user_settings div.segment .setting_holder.horizontal span.setting_title {
|
|
margin-right: 8px;
|
|
}
|
|
div.user_settings div.segment .setting_holder:last-of-type {
|
|
margin-bottom: 8px !important;
|
|
}
|
|
|
|
div.edit_user_content {
|
|
max-height: 500px;
|
|
overflow: auto;
|
|
}
|
|
|
|
div#invListAccess {
|
|
max-height: 200px;
|
|
overflow: auto;
|
|
}
|
|
|
|
/*
|
|
Header scss - top line, menu...
|
|
*/
|
|
header .mobile_header {
|
|
display: none;
|
|
}
|
|
|
|
header #top_line {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 60px;
|
|
padding: 0 32px;
|
|
}
|
|
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 .setting_box {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 28px;
|
|
min-width: 28px;
|
|
margin-left: 8px;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
header #top_line .setting_box:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
header #top_line .setting_box a {
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
line-height: 28px;
|
|
text-decoration: none;
|
|
}
|
|
header #top_line .setting_box a .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
header #top_line .setting_box a .text {
|
|
margin-left: 8px;
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
header #top_line #anketa_header_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 30px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_naslov a {
|
|
font-size: 16px;
|
|
color: #333333;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-left: 32px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help .faicon {
|
|
padding-bottom: 20px;
|
|
margin-bottom: -20px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help .block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 8px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help .block .line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help .block .line:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_help .block:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
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_test {
|
|
position: relative;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_test a .faicon:after {
|
|
content: "T";
|
|
position: absolute;
|
|
top: -2px;
|
|
left: 11px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 8px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview a {
|
|
padding: 0 16px;
|
|
line-height: 28px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview .block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 8px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview .block .line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview .block .line:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview .block:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url {
|
|
color: #C4C4C4;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url a {
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
text-decoration: none;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url span {
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_quick_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_quick_settings a {
|
|
padding: 0 16px;
|
|
}
|
|
header #top_line #enka_nav {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 32px;
|
|
}
|
|
header #top_line #enka_nav #search_holder {
|
|
margin-left: 16px;
|
|
}
|
|
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: 4px 0 3px 5px;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
header #top_line #enka_nav #help_holder {
|
|
margin-left: 8px;
|
|
}
|
|
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: 16px;
|
|
vertical-align: middle;
|
|
}
|
|
header #top_line #xtradiv .xtraname {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
width: auto;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
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 {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 99999;
|
|
right: 0;
|
|
top: 40px;
|
|
width: 120px;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings a {
|
|
text-decoration: none;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings a {
|
|
color: #1E88E5;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings a:hover {
|
|
color: #0059ab;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings a:hover .faicon:before {
|
|
color: #0059ab;
|
|
}
|
|
header #top_line #xtradiv #xtradivSettings a .faicon:before {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.switch_anketa {
|
|
position: relative;
|
|
display: block;
|
|
width: 46px;
|
|
height: 16px;
|
|
}
|
|
.switch_anketa.anketa_on {
|
|
background-image: url("../../public/img/icons/toggle_active.svg");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.switch_anketa.anketa_off {
|
|
background-image: url("../../public/img/icons/toggle_inactive.svg");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
header #surveyNavigation {
|
|
height: 60px;
|
|
background-color: #1E88E5;
|
|
}
|
|
header #surveyNavigation #firstNavigation {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 60px;
|
|
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: 0;
|
|
transition: 0.2s;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li a {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li a div {
|
|
padding: 0 32px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
}
|
|
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.navigation_buttons_list li.active_off:hover {
|
|
background-color: #187bd1;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.moja1ka .faicon,
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li #mojeAnketeLink .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.moja1ka .faicon:before,
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li #mojeAnketeLink .faicon:before {
|
|
font-size: 16px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.separator {
|
|
height: 38px;
|
|
padding: 0;
|
|
border-left: 1px #FFFFFF solid;
|
|
}
|
|
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 li .faicon.language.gray:before {
|
|
color: #0059ab;
|
|
}
|
|
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 .faicon {
|
|
line-height: 25px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss .faicon:before {
|
|
font-size: 24px;
|
|
}
|
|
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 #E5E5E5 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;
|
|
margin-left: 16px;
|
|
border-bottom: 1px transparent solid;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li a,
|
|
header #secondNavigation ul.secondNavigationArchive li a {
|
|
padding: 12px 16px;
|
|
line-height: 41px;
|
|
font-size: 15px;
|
|
color: #808080;
|
|
text-decoration: none;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li a .faicon.arrow2_r,
|
|
header #secondNavigation ul.secondNavigationArchive li a .faicon.arrow2_r {
|
|
margin-left: 8px;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li a .faicon.arrow2_r:before,
|
|
header #secondNavigation ul.secondNavigationArchive li a .faicon.arrow2_r:before {
|
|
font-size: 10px;
|
|
vertical-align: 1px;
|
|
}
|
|
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: 18px !important;
|
|
}
|
|
header #topSettingsHolder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 0 32px;
|
|
width: 100%;
|
|
height: 44px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .borderLeft {
|
|
padding-left: 32px;
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
header #topSettingsHolder .left_options_holder {
|
|
display: flex;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-right: 32px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation span {
|
|
margin-left: 32px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation span a {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
color: #808080;
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation span a.help {
|
|
color: #1E88E5;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation span.active a {
|
|
color: #1E88E5;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation span span.faicon.arrow_back {
|
|
padding: 0;
|
|
line-height: 0px;
|
|
margin-right: 32px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #additional_navigation.nonresponse {
|
|
margin-left: 32px;
|
|
padding-left: 0;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #dataOnlyValid {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 25px;
|
|
width: auto;
|
|
padding: 0 32px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #dataOnlyValid.borderLeft {
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #dataOnlyValid label {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #dataOnlyValid .dataOnlyValid_label {
|
|
display: none;
|
|
margin-right: 16px;
|
|
font-size: 14px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 32px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav span {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza {
|
|
cursor: pointer;
|
|
z-index: 78;
|
|
height: 26px;
|
|
width: 190px;
|
|
margin-left: 8px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza:hover ul li.highlightLineTab {
|
|
background: none;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza:hover > ul li {
|
|
display: block !important;
|
|
transition: 0.2s;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul {
|
|
position: absolute;
|
|
z-index: 78;
|
|
top: -2px;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 190px;
|
|
list-style-type: none;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul:after {
|
|
position: absolute;
|
|
right: 8px;
|
|
top: 5px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li {
|
|
padding: 5px 8px;
|
|
border: 0;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li a {
|
|
display: block;
|
|
margin-right: 12px;
|
|
text-decoration: none;
|
|
color: #C4C4C4 !important;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li:hover > a {
|
|
color: #333333 !important;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li.highlightLineTab a span {
|
|
font-weight: 500;
|
|
color: #333333 !important;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li.previewCheck {
|
|
margin-top: 4px;
|
|
padding: 5px 0 7px 0;
|
|
color: #333333;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLinks.analiza ul li.previewCheck label:hover {
|
|
color: #FFC700;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #toggleDataCheckboxes {
|
|
cursor: pointer;
|
|
}
|
|
header #topSettingsHolder .right_options_holder {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
header #topSettingsHolder .right_options_holder > div {
|
|
margin-left: 20px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder select {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
height: 28px;
|
|
margin-left: 8px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder .faicon:before {
|
|
font-size: 20px;
|
|
color: #1E88E5;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder {
|
|
position: relative;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder .faicon {
|
|
cursor: pointer;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options {
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options2 {
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options3 {
|
|
float: left;
|
|
display: inline;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 78;
|
|
top: 35px;
|
|
right: 10px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right a,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 a {
|
|
text-decoration: none;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right ul,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right ul li,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right ul li:last-of-type,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right ul li span,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right ul li span:hover,
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right2 {
|
|
right: 55px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options span#filters_span {
|
|
color: #1E88E5;
|
|
margin-left: 4px;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options:hover span#filters_span {
|
|
color: #FFC700 !important;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #analiza_right_options2:hover span#filters_span {
|
|
color: #FFC700 !important;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#analiza_right_options_holder #div_analiza_filtri_right.analiza ul li.space {
|
|
display: none;
|
|
}
|
|
header #topSettingsHolder .right_options_holder#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 {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 99999;
|
|
right: 0px;
|
|
top: 31px;
|
|
width: 150px;
|
|
}
|
|
#hover_export a {
|
|
text-decoration: none;
|
|
}
|
|
#hover_export ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
#hover_export ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
#hover_export ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#hover_export ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
#hover_export ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
#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 a:first-of-type {
|
|
padding-top: 0;
|
|
}
|
|
#hover_export a:last-of-type {
|
|
padding-bottom: 0;
|
|
}
|
|
#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;
|
|
}
|
|
footer#srv_footer .footer_right .right_help_button {
|
|
position: fixed;
|
|
right: -71px;
|
|
top: calc(50%);
|
|
width: 150px;
|
|
padding: 4px 8px;
|
|
border: 1px #1E88E5 solid;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
background-color: #FFFFFF;
|
|
-webkit-transform: rotate(-90deg);
|
|
-moz-transform: rotate(-90deg);
|
|
-o-transform: rotate(-90deg);
|
|
-ms-transform: rotate(-90deg);
|
|
transform: rotate(-90deg);
|
|
transition: 0.3s;
|
|
}
|
|
footer#srv_footer .footer_right .right_help_button:hover {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
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.dostop_1ka {
|
|
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.dostop_1ka {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.dostop_1ka 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.dostop_1ka {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
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.small-rounded,
|
|
submit.small-rounded {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 8px;
|
|
height: 24px;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
text-decoration: none;
|
|
border-radius: 2px;
|
|
}
|
|
button.small-rounded .faicon,
|
|
submit.small-rounded .faicon {
|
|
margin-right: 4px;
|
|
}
|
|
button.small-rounded .faicon:before,
|
|
submit.small-rounded .faicon:before {
|
|
font-size: 12px;
|
|
}
|
|
button.medium-rounded,
|
|
submit.medium-rounded {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 16px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
text-decoration: none;
|
|
border-radius: 2px;
|
|
}
|
|
button.medium-rounded .faicon,
|
|
submit.medium-rounded .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
button.medium-rounded .faicon:before,
|
|
submit.medium-rounded .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
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.table-inline,
|
|
submit.table-inline {
|
|
padding: 4px 20px;
|
|
width: fit-content;
|
|
font-size: 14px;
|
|
border-radius: 2px;
|
|
margin-left: 16px;
|
|
white-space: nowrap;
|
|
}
|
|
button.table,
|
|
submit.table {
|
|
padding: 4px 20px;
|
|
width: fit-content;
|
|
font-size: 14px;
|
|
border-radius: 2px;
|
|
white-space: nowrap;
|
|
}
|
|
button.blue,
|
|
submit.blue {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
button.blue:hover,
|
|
submit.blue:hover {
|
|
background-color: #1980da;
|
|
}
|
|
button.blue:disabled,
|
|
submit.blue:disabled {
|
|
color: #808080;
|
|
background-color: #E5E5E5;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
button.blue:disabled:hover,
|
|
submit.blue:disabled:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
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.white-gray,
|
|
submit.white-gray {
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
button.white-gray:hover,
|
|
submit.white-gray:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.white-gray .faicon:before,
|
|
submit.white-gray .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
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.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
div.button_holder.top8 {
|
|
margin-top: 8px;
|
|
}
|
|
div.button_holder.bottom0 {
|
|
margin-bottom: 0px;
|
|
}
|
|
div.button_holder.inline {
|
|
align-items: flex-end;
|
|
}
|
|
div.button_holder.inline.vertical_center {
|
|
align-items: center;
|
|
}
|
|
div.button_holder.inline button {
|
|
margin-left: 16px;
|
|
}
|
|
div.button_holder.below {
|
|
margin-bottom: 0;
|
|
margin-top: 24px;
|
|
}
|
|
div.button_holder.intext {
|
|
margin: 16px 0;
|
|
}
|
|
div.button_holder.float-right {
|
|
justify-content: end;
|
|
}
|
|
div.button_holder.float-right button {
|
|
margin-left: 16px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
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=email], input[type=password], input[type=number] {
|
|
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=email].w200, input[type=password].w200, input[type=number].w200 {
|
|
width: 200px;
|
|
}
|
|
input[type=text].w300, input[type=email].w300, input[type=password].w300, input[type=number].w300 {
|
|
width: 300px;
|
|
}
|
|
input[type=text].w400, input[type=email].w400, input[type=password].w400, input[type=number].w400 {
|
|
width: 400px;
|
|
}
|
|
input[type=text].wauto, input[type=email].wauto, input[type=password].wauto, input[type=number].wauto {
|
|
width: auto;
|
|
}
|
|
input[type=text].large, input[type=email].large, input[type=password].large, input[type=number].large {
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
input[type=text].medium, input[type=email].medium, input[type=password].medium, input[type=number].medium {
|
|
height: 32px;
|
|
font-size: 14px;
|
|
padding: 6px 7px;
|
|
}
|
|
input[type=text].small, input[type=email].small, input[type=password].small, input[type=number].small {
|
|
height: 26px;
|
|
font-size: 14px;
|
|
padding: 3px 7px;
|
|
}
|
|
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
input[type=text][readonly=true], input[type=email][readonly=true], input[type=password][readonly=true], input[type=number][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";
|
|
font-weight: 400;
|
|
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: 24px 32px 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 .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 .setting_holder.half-half {
|
|
flex-direction: row;
|
|
}
|
|
fieldset .setting_holder.half-half .setting_item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 48%;
|
|
margin: 0;
|
|
}
|
|
fieldset .setting_holder.half-half .setting_item:first-child {
|
|
margin-right: 16px;
|
|
}
|
|
fieldset .setting_holder.half-half .setting_item input,
|
|
fieldset .setting_holder.half-half .setting_item select,
|
|
fieldset .setting_holder.half-half .setting_item textarea {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
fieldset ul {
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
padding-inline-start: 25px;
|
|
}
|
|
|
|
.gdpr_authority_info_data .spaceLeft {
|
|
display: flex;
|
|
}
|
|
.gdpr_authority_info_data .spaceLeft .bold {
|
|
padding-left: 3px;
|
|
}
|
|
.gdpr_authority_info_data .authority_name {
|
|
font-weight: 600;
|
|
}
|
|
|
|
#gdpr_nastavitve .bold {
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
select, option {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
|
|
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 option {
|
|
color: #333333;
|
|
}
|
|
select.dropdown option:disabled {
|
|
color: #A0A0A0;
|
|
}
|
|
select.dropdown.large {
|
|
width: 229px;
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
select.dropdown.large option {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
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;
|
|
}
|
|
select.dropdown.small {
|
|
width: 229px;
|
|
height: 26px;
|
|
font-size: 14px;
|
|
padding: 3px 7px;
|
|
}
|
|
select.dropdown.small option {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
select.dropdown.w200 {
|
|
width: 200px;
|
|
}
|
|
select.dropdown.w400 {
|
|
width: 400px;
|
|
}
|
|
select.dropdown.w130 {
|
|
width: 130px;
|
|
}
|
|
select.dropdown.inline {
|
|
margin-left: 16px;
|
|
margin-top: 0;
|
|
}
|
|
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.wauto {
|
|
width: auto;
|
|
}
|
|
textarea.w800 {
|
|
width: 800px;
|
|
}
|
|
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;
|
|
}
|
|
|
|
.box-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 16px 0px;
|
|
}
|
|
.box-container .num_box {
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #FFFF;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
.box-container .num_box .box_flex {
|
|
margin: 16px 16px 12px 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.box-container .num_box .box_flex .naslov_gdpr {
|
|
font-size: 16px !important;
|
|
font-weight: 600;
|
|
}
|
|
.box-container .num_box .box_flex input {
|
|
position: unset;
|
|
height: 18px;
|
|
width: 18px;
|
|
margin-right: 8px;
|
|
}
|
|
.box-container .num_box .box_text {
|
|
padding: 5px 16px 16px 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
color: #808080;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.box-container .num_box .box_text .num_of_surveys {
|
|
font-size: 32px;
|
|
color: #333;
|
|
font-weight: 400;
|
|
}
|
|
.box-container .checked {
|
|
border: #1E88E5 solid 1px;
|
|
}
|
|
.box-container .num_box2 {
|
|
margin: 0px 32px;
|
|
}
|
|
.box-container #num_box1 {
|
|
background-color: rgba(20, 255, 0, 0.05);
|
|
}
|
|
.box-container #num_box2 {
|
|
background-color: rgba(255, 0, 0, 0.05);
|
|
}
|
|
.box-container #num_box3 {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
table.gdpr_surveys td {
|
|
font-size: 14px;
|
|
}
|
|
|
|
table.gdpr_surveys tr.green_row {
|
|
background-color: #F3FFF2 !important;
|
|
}
|
|
|
|
table.gdpr_surveys tr.red_row {
|
|
background-color: #FFEFEF !important;
|
|
}
|
|
|
|
table.gdpr_surveys tr.grey_row {
|
|
background-color: #ffffff !important;
|
|
}
|
|
|
|
table {
|
|
margin: 8px 0;
|
|
padding: 8px 0;
|
|
border-collapse: collapse;
|
|
text-align: left;
|
|
}
|
|
table td,
|
|
table th {
|
|
padding: 8px 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.left,
|
|
table th.left {
|
|
text-align: left;
|
|
}
|
|
table td.wrap,
|
|
table th.wrap {
|
|
white-space: normal;
|
|
}
|
|
table td.nowrap,
|
|
table th.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
table td.lead_column,
|
|
table th.lead_column {
|
|
border-right: 3px solid #E5E5E5;
|
|
}
|
|
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.fullwidth {
|
|
width: 100%;
|
|
}
|
|
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-horizontal-scroll-wrapper-outer {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
.table-horizontal-scroll-wrapper-outer .table-horizontal-scroll-wrapper-inner {
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
.table-horizontal-scroll-wrapper-outer .table-horizontal-scroll-wrapper-inner table {
|
|
width: 100%;
|
|
table-layout: auto !important;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#anketa_edit .page_num_fieldset {
|
|
border: unset;
|
|
border-top: 1px dashed #E5E5E5;
|
|
padding: 0px;
|
|
}
|
|
|
|
#anketa_edit .page_num_fieldset {
|
|
padding-top: 0px;
|
|
padding-bottom: 0px;
|
|
margin: 0px;
|
|
}
|
|
#anketa_edit .page_num {
|
|
text-align: center;
|
|
color: #333333;
|
|
position: relative;
|
|
padding: 4px 16px;
|
|
}
|
|
#anketa_edit .table_header {
|
|
width: 100%;
|
|
margin: 16px 0px 0px 0px;
|
|
background-color: #F8F8F8;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
#anketa_edit .table_header tr {
|
|
width: 100%;
|
|
}
|
|
#anketa_edit .table_header tr td:first-of-type {
|
|
width: 46%;
|
|
padding-left: 16px;
|
|
}
|
|
#anketa_edit .table_header tr td:last-of-type {
|
|
width: 54%;
|
|
padding-left: 16px;
|
|
}
|
|
#anketa_edit .avt_vnosi_table {
|
|
margin: 0px;
|
|
}
|
|
#anketa_edit .avt_vnosi_table td:first-of-type {
|
|
width: 46%;
|
|
}
|
|
#anketa_edit .avt_vnosi_table td:last-of-type {
|
|
width: 54%;
|
|
}
|
|
|
|
/*
|
|
Placljive vsebine
|
|
*/
|
|
header #top_line #enka_nav .anketa_header_upgrade_package {
|
|
margin-left: 16px;
|
|
}
|
|
header #top_line #enka_nav .anketa_header_upgrade_package button {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
height: 28px;
|
|
}
|
|
|
|
.toolbox .toolbox_item.user_access_locked {
|
|
background-color: #FFF0C5 !important;
|
|
}
|
|
.toolbox .toolbox_item.user_access_locked:hover {
|
|
background-color: #FFC700 !important;
|
|
}
|
|
.toolbox .toolbox_border.user_access_locked {
|
|
border-color: #FFC700 !important;
|
|
}
|
|
|
|
#toolbox_add_advanced .segment_option.user_access_locked {
|
|
background-color: #FFF0C5;
|
|
}
|
|
#toolbox_add_advanced .segment_option.user_access_locked:hover {
|
|
background-color: #FFC700;
|
|
}
|
|
|
|
.faicon.user_access_locked {
|
|
color: #FFC700 !important;
|
|
}
|
|
.faicon.user_access_locked:hover {
|
|
color: #e6b300;
|
|
}
|
|
.faicon.user_access_locked:before, .faicon.user_access_locked:after {
|
|
color: #FFC700 !important;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
#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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#popup_user_access h2 span.faicon,
|
|
#popup_user_access h2 span.fa-brands,
|
|
#popup_user_access .divPopUp_top span.faicon,
|
|
#popup_user_access .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#popup_user_access h2 span.faicon:before,
|
|
#popup_user_access h2 span.fa-brands:before,
|
|
#popup_user_access .divPopUp_top span.faicon:before,
|
|
#popup_user_access .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access p {
|
|
line-height: 20px;
|
|
}
|
|
#popup_user_access .popup_note,
|
|
#popup_user_access .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#popup_user_access .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#popup_user_access .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#popup_user_access .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#popup_user_access .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#popup_user_access .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#popup_user_access .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#popup_user_access .popup_main .popup_left .list .list-item.active, #popup_user_access .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#popup_user_access .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#popup_user_access .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#popup_user_access .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#popup_user_access .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#popup_user_access .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#popup_user_access .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#popup_user_access .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#popup_user_access .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#popup_user_access .popup_main .setting_line label,
|
|
#popup_user_access .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#popup_user_access .popup_main .settings_block label,
|
|
#popup_user_access .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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;
|
|
}
|
|
|
|
.user_access_warning p {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.narocila_filters {
|
|
margin-bottom: 16px;
|
|
}
|
|
.narocila_filters label {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
#folderSwitch.user_access_locked {
|
|
justify-content: center !important;
|
|
background-color: #FFF0C5 !important;
|
|
border: 1px #FFC700 solid !important;
|
|
}
|
|
#folderSwitch.user_access_locked:hover {
|
|
background-color: #FFC700 !important;
|
|
}
|
|
|
|
#hover_export .user_access_locked {
|
|
color: #FFC700 !important;
|
|
}
|
|
#hover_export .user_access_locked .faicon:before {
|
|
color: #FFC700 !important;
|
|
}
|
|
|
|
#analiza_right_options.user_access_locked #div_analiza_filtri_right span {
|
|
color: #FFC700 !important;
|
|
}
|
|
|
|
.cke_1.cke_chrome {
|
|
border-bottom: 1px #E5E5E5 solid !important;
|
|
border-radius: 2px 2px 0 0;
|
|
}
|
|
|
|
#cke_1_top {
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
|
|
.cke_dialog {
|
|
border: 1px #E5E5E5 solid !important;
|
|
}
|
|
|
|
div.button_holder.editor_button_holder {
|
|
margin: 0;
|
|
padding: 8px 16px;
|
|
border-bottom: 1px #cccccc solid;
|
|
border-left: 1px #cccccc solid;
|
|
border-right: 1px #cccccc solid;
|
|
border-radius: 0 0 2px 2px;
|
|
}
|
|
|
|
.cke_dialog table tr td,
|
|
.cke_dialog table tr th {
|
|
border-bottom: 0 !important;
|
|
}
|
|
|
|
.cke_toolbox span:nth-child(11) .cke_button_icon,
|
|
.cke_toolbox span:nth-child(12) .cke_button_icon {
|
|
display: none;
|
|
}
|
|
.cke_toolbox span:nth-child(11) .cke_button_label,
|
|
.cke_toolbox span:nth-child(12) .cke_button_label {
|
|
display: inline;
|
|
padding-left: 0;
|
|
}
|
|
.cke_toolbox .cke_button__specialchar,
|
|
.cke_toolbox .cke_button__bgcolor,
|
|
.cke_toolbox span:nth-child(7),
|
|
.cke_toolbox span:nth-child(8),
|
|
.cke_toolbox span:nth-child(10),
|
|
.cke_toolbox span:nth-child(12) {
|
|
display: none;
|
|
}
|
|
.cke_toolbox .cke_button__textcolor:after,
|
|
.cke_toolbox .cke_button__image_icon:after {
|
|
background-color: #bfbfbf;
|
|
border-color: #bfbfbf;
|
|
content: "";
|
|
position: absolute;
|
|
height: 18px;
|
|
width: 0;
|
|
border-right: 1px solid #bcbcbc;
|
|
margin-top: 4px;
|
|
top: 0;
|
|
right: -3px;
|
|
}
|
|
.cke_toolbox .cke_button__more:after,
|
|
.cke_toolbox .cke_button__less:after {
|
|
display: none;
|
|
}
|
|
|
|
.cke_toolbox.advanced span:nth-child(11) {
|
|
display: none;
|
|
}
|
|
.cke_toolbox.advanced .cke_button__specialchar,
|
|
.cke_toolbox.advanced .cke_button__bgcolor,
|
|
.cke_toolbox.advanced span:nth-child(7),
|
|
.cke_toolbox.advanced span:nth-child(8),
|
|
.cke_toolbox.advanced span:nth-child(10),
|
|
.cke_toolbox.advanced span:nth-child(12) {
|
|
display: block;
|
|
}
|
|
.cke_toolbox.advanced .cke_button__textcolor:after,
|
|
.cke_toolbox.advanced .cke_button__image_icon:after {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
Specific pages scss
|
|
*/
|
|
/*
|
|
Gumbi na vrhu pri mojih anketah
|
|
*/
|
|
#survey_list .first_line {
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
#survey_list .first_line .button_quick_create {
|
|
margin-left: 32px;
|
|
}
|
|
#survey_list .first_line .button_quick_create a {
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
#survey_list .first_line .button_quick_create .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/*
|
|
Filtri na vrhu pri mojih anketah
|
|
*/
|
|
#survey_list .second_line {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
#survey_list .second_line #searchMySurveys {
|
|
width: 33%;
|
|
}
|
|
#survey_list .second_line #searchMySurveys form {
|
|
display: flex;
|
|
}
|
|
#survey_list .second_line #searchMySurveys form input[type=text] {
|
|
box-sizing: border-box;
|
|
padding: 12px 14px;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-right: none;
|
|
border-radius: 2px 0 0 2px;
|
|
}
|
|
#survey_list .second_line #searchMySurveys form button {
|
|
min-width: 100px;
|
|
}
|
|
#survey_list .second_line #searchSettings,
|
|
#survey_list .second_line #searchLibrarySettings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 750px;
|
|
width: 100%;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top {
|
|
display: flex;
|
|
padding: 20px 32px;
|
|
background-color: #F8F8F8;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top > div,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top > div {
|
|
padding-right: 8px;
|
|
margin-right: 8px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top > div.search_text,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top > div.search_text {
|
|
width: 100%;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top > div.search_text input[type=text],
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top > div.search_text input[type=text] {
|
|
width: 100%;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 0 8px;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top > div.search_type select,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top > div.search_type select {
|
|
cursor: pointer;
|
|
width: 160px;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 0 8px;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_top > div.search_button,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_top > div.search_button {
|
|
padding-right: 0px;
|
|
margin-right: 0px;
|
|
border: none;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced_buttons,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced_buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 8px 32px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced_buttons button,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced_buttons button {
|
|
padding: 5px 16px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced_buttons button.active,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced_buttons button.active {
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced_buttons button .faicon::before,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced_buttons button .faicon::before {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
max-height: 250px;
|
|
box-sizing: border-box;
|
|
padding: 8px 32px 32px 32px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 218px;
|
|
box-sizing: border-box;
|
|
padding-right: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder:nth-child(3),
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder:nth-child(3) {
|
|
padding-right: 0px;
|
|
margin-right: 0px;
|
|
border: none;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder:nth-child(4),
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder:nth-child(4) {
|
|
padding-right: 0px;
|
|
margin-right: 0px;
|
|
margin-top: 16px;
|
|
border: none;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder:nth-child(4) .setting_line input[type=text],
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder:nth-child(4) .setting_line input[type=text] {
|
|
max-width: 220px;
|
|
margin: 0;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder label,
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder span,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder label,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder span {
|
|
font-size: 14px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder .setting_title,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder .setting_title {
|
|
font-weight: 600;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder .setting_line,
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder .setting_line {
|
|
padding-top: 8px;
|
|
}
|
|
#survey_list .second_line #searchSettings .search_settings_advanced .setting_holder .setting_line input[type=text],
|
|
#survey_list .second_line #searchLibrarySettings .search_settings_advanced .setting_holder .setting_line input[type=text] {
|
|
box-sizing: border-box;
|
|
padding: 12px 8px;
|
|
margin: 0 8px;
|
|
max-width: 120px;
|
|
font-size: 14px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line .filters {
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: center;
|
|
width: 33%;
|
|
}
|
|
#survey_list .second_line .filters #filterButton,
|
|
#survey_list .second_line .filters #sortButton,
|
|
#survey_list .second_line .filters #folderSwitch {
|
|
cursor: pointer;
|
|
position: relative;
|
|
height: 40px;
|
|
width: 102px;
|
|
box-sizing: border-box;
|
|
margin-left: 16px;
|
|
padding: 10px 8px;
|
|
border: 1px #C4C4C4 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders {
|
|
position: relative;
|
|
display: block;
|
|
width: 41px;
|
|
height: 16px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.on,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.on,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.on {
|
|
background-image: url("../../public/img/icons/toggle_active.svg");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.off,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.off,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.off {
|
|
background-image: url("../../public/img/icons/toggle_inactive.svg");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#filterButton:after, #survey_list .second_line .filters #filterButton#sortButton:after,
|
|
#survey_list .second_line .filters #sortButton#filterButton:after,
|
|
#survey_list .second_line .filters #sortButton#sortButton:after,
|
|
#survey_list .second_line .filters #folderSwitch#filterButton:after,
|
|
#survey_list .second_line .filters #folderSwitch#sortButton:after {
|
|
position: absolute;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
right: 8px;
|
|
top: 13px;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton:hover,
|
|
#survey_list .second_line .filters #sortButton:hover,
|
|
#survey_list .second_line .filters #folderSwitch:hover {
|
|
background-color: #F2F2F2;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings,
|
|
#survey_list .second_line .filters #filterButton #sortSettings,
|
|
#survey_list .second_line .filters #sortButton #filterSettings,
|
|
#survey_list .second_line .filters #sortButton #sortSettings {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: 9999;
|
|
width: 200px;
|
|
top: 40px;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings a,
|
|
#survey_list .second_line .filters #filterButton #sortSettings a,
|
|
#survey_list .second_line .filters #sortButton #filterSettings a,
|
|
#survey_list .second_line .filters #sortButton #sortSettings a {
|
|
text-decoration: none;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul,
|
|
#survey_list .second_line .filters #filterButton #sortSettings ul,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul,
|
|
#survey_list .second_line .filters #sortButton #sortSettings ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li,
|
|
#survey_list .second_line .filters #filterButton #sortSettings ul li,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li,
|
|
#survey_list .second_line .filters #sortButton #sortSettings ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li:last-of-type,
|
|
#survey_list .second_line .filters #filterButton #sortSettings ul li:last-of-type,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li:last-of-type,
|
|
#survey_list .second_line .filters #sortButton #sortSettings ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li span,
|
|
#survey_list .second_line .filters #filterButton #sortSettings ul li span,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li span,
|
|
#survey_list .second_line .filters #sortButton #sortSettings ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li span:hover,
|
|
#survey_list .second_line .filters #filterButton #sortSettings ul li span:hover,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li span:hover,
|
|
#survey_list .second_line .filters #sortButton #sortSettings ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
#survey_list .second_line .filters #filterButton:hover #filterSettings,
|
|
#survey_list .second_line .filters #filterButton:hover #sortSettings,
|
|
#survey_list .second_line .filters #sortButton:hover #filterSettings,
|
|
#survey_list .second_line .filters #sortButton:hover #sortSettings {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings,
|
|
#survey_list .second_line .filters #sortButton #filterSettings {
|
|
width: 150px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li .filter_title,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li .filter_title {
|
|
font-weight: 600;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #filterSettings ul li .filter_line,
|
|
#survey_list .second_line .filters #sortButton #filterSettings ul li .filter_line {
|
|
padding-top: 8px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #sortSettings,
|
|
#survey_list .second_line .filters #sortButton #sortSettings {
|
|
width: 150px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #sortSettings li,
|
|
#survey_list .second_line .filters #sortButton #sortSettings li {
|
|
margin-bottom: 12px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #sortSettings li a,
|
|
#survey_list .second_line .filters #sortButton #sortSettings li a {
|
|
color: #333333;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #sortSettings li.active a, #survey_list .second_line .filters #filterButton #sortSettings li:hover a,
|
|
#survey_list .second_line .filters #sortButton #sortSettings li.active a,
|
|
#survey_list .second_line .filters #sortButton #sortSettings li:hover a {
|
|
color: #1E88E5;
|
|
}
|
|
#survey_list .second_line .filters #filterButton #sortSettings li .faicon,
|
|
#survey_list .second_line .filters #sortButton #sortSettings li .faicon {
|
|
margin-left: 8px;
|
|
}
|
|
#survey_list .second_line.advanced_search {
|
|
justify-content: center;
|
|
}
|
|
#survey_list .pagination_bottom_holder {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 32px;
|
|
}
|
|
#survey_list .pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: auto;
|
|
padding: 4px;
|
|
background: #F8F8F8;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .pagination.top {
|
|
max-width: 33%;
|
|
}
|
|
#survey_list .pagination a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
#survey_list .pagination .page_number {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 4px;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#survey_list .pagination .page_number:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
#survey_list .pagination .page_number.currentPage {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
#survey_list .pagination .arrow {
|
|
margin: 0 4px;
|
|
transition: 0.2s;
|
|
}
|
|
#survey_list .pagination .arrow.disabledPage {
|
|
color: #777777;
|
|
}
|
|
|
|
body.eng #survey_list .filters #folderSwitch {
|
|
width: 120px;
|
|
}
|
|
|
|
/*
|
|
Seznam anket pri mojih anketah
|
|
*/
|
|
#survey_list .div_sl_new table#surveyList_new {
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td {
|
|
padding: 12px 16px;
|
|
vertical-align: middle;
|
|
text-align: left;
|
|
border-bottom: 1px #D3D3D3 solid;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.col2, #survey_list .div_sl_new table#surveyList_new tr td.col6 {
|
|
text-align: center;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .top_line {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
color: #333333;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .top_line a {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-decoration: none;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .bottom_line {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
color: #777777;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .bottom_line span {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
color: #777777;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .status_box {
|
|
box-sizing: border-box;
|
|
width: 88px;
|
|
height: 24px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
color: #333333;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .status_box.green {
|
|
background-color: #E3F6DE;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .status_box.gray {
|
|
background-color: #E5E5E5;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td .status_box.blue {
|
|
background-color: #EAF9FE;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link {
|
|
transition: 0.2s;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link a,
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link span {
|
|
cursor: pointer;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .dots {
|
|
color: #333333;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder {
|
|
position: relative;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
right: -20px;
|
|
top: 5px;
|
|
width: 180px;
|
|
border-radius: 2px;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box a {
|
|
text-decoration: none;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box.displayNone {
|
|
display: none;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box .line {
|
|
border-top: 1px #D3D3D3 solid;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr td.other_link .survey_other_box_holder .survey_other_box .faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr.sl_header_new td {
|
|
height: 62px;
|
|
padding: 0 16px;
|
|
vertical-align: middle;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
background-color: #F8F8F8;
|
|
border-top: 1px #D3D3D3 solid;
|
|
border-bottom: 1px #D3D3D3 solid;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr.sl_header_new td div {
|
|
cursor: pointer;
|
|
}
|
|
#survey_list .div_sl_new table#surveyList_new tr.sl_header_new td .faicon:after {
|
|
font-size: 14px;
|
|
}
|
|
#survey_list .div_sl_new .search_title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/*
|
|
Seznam anket pri mojih anketah z vklopljenimi mapami
|
|
*/
|
|
#survey_list .div_sl_new.folders table#surveyList_new tr.sl_header_new td {
|
|
background-color: #FFFFFF;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_add_first a {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_add_first a .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders > .folder_holder .folder_holder {
|
|
margin-left: 36px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder {
|
|
margin-top: 16px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
height: 40px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 4px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_arrow_icon {
|
|
cursor: pointer;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_arrow_icon::before {
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #333333;
|
|
margin-right: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_icon::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
margin-right: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title.open {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_arrow_icon::before {
|
|
content: "";
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_icon::before {
|
|
font-weight: 600;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_title_text {
|
|
margin-right: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_title_text a {
|
|
cursor: text;
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_title_text input[type=text] {
|
|
font-size: 16px;
|
|
padding: 2px 3px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_title_edit {
|
|
margin: 0;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .map_holder_control {
|
|
display: none;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .map_holder_control .faicon::before {
|
|
font-size: 16px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_clickable {
|
|
cursor: pointer;
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title:hover .map_holder_control {
|
|
display: flex;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title:hover .map_holder_control a {
|
|
margin-left: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title span.folder_blue {
|
|
cursor: move;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_content.closed {
|
|
display: none;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_content.subfolder {
|
|
margin-bottom: 5px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder table#surveyList_new {
|
|
margin-bottom: 20px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder table#surveyList_new tr.anketa_list td.col3 {
|
|
cursor: move;
|
|
}
|
|
#survey_list .div_sl_new.folders .folderhover {
|
|
background-color: #E5E5E5 !important;
|
|
border: 1px solid #E5E5E5 !important;
|
|
border-radius: 5px 5px 5px 5px;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper {
|
|
cursor: move;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper .map_holder_control {
|
|
display: none;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper td {
|
|
display: none;
|
|
border: 0;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper td.col3 {
|
|
display: inline-block;
|
|
border: 0 !important;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper span.minus {
|
|
display: none !important;
|
|
}
|
|
#survey_list .div_sl_new.folders .mySurvey_draggable_helper span.map_holder_control {
|
|
display: none !important;
|
|
}
|
|
|
|
div.izvoz_nad_tabelo {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
div.export_indent {
|
|
margin: 4px 0 16px 16px;
|
|
}
|
|
|
|
li.no_bullet {
|
|
list-style-type: none;
|
|
}
|
|
li.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
table.variableView {
|
|
width: 100%;
|
|
}
|
|
|
|
.fullwidth #gdpr_nastavitve {
|
|
padding: 0 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
table.gdpr_surveys {
|
|
table-layout: auto;
|
|
width: 100%;
|
|
}
|
|
table.gdpr_surveys th {
|
|
background-color: #F8F8F8;
|
|
}
|
|
table.gdpr_surveys tr {
|
|
background-color: #FFEFEF;
|
|
}
|
|
table.gdpr_surveys th,
|
|
table.gdpr_surveys td {
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
table.gdpr_surveys tr.red_row td {
|
|
background-color: #FFEFEF;
|
|
}
|
|
table.gdpr_surveys tr.green_row td {
|
|
background-color: #a8eea8;
|
|
}
|
|
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;
|
|
}
|
|
|
|
.head_msg {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 24px;
|
|
}
|
|
.head_msg h2 {
|
|
margin-bottom: 0px;
|
|
margin-left: 8px;
|
|
padding-bottom: 0px;
|
|
}
|
|
|
|
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 .postget_wrap {
|
|
max-width: 320px;
|
|
overflow-wrap: break-word;
|
|
white-space: normal;
|
|
font-family: "Courier";
|
|
font-size: 12px;
|
|
}
|
|
div .no_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;
|
|
}
|
|
|
|
div.osnovne_nastavitve {
|
|
width: fit-content;
|
|
}
|
|
div.osnovne_nastavitve div.osnovne_nastavitve_single {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.osnovne_nastavitve div.osnovne_nastavitve_single:last-of-type {
|
|
margin-bottom: 0px;
|
|
}
|
|
div.osnovne_nastavitve div.osnovne_nastavitve_single label {
|
|
margin-right: 8px;
|
|
cursor: default;
|
|
}
|
|
div.osnovne_nastavitve div.osnovne_nastavitve_single input,
|
|
div.osnovne_nastavitve div.osnovne_nastavitve_single select {
|
|
width: 206px;
|
|
height: 28px;
|
|
margin: 0 !important;
|
|
font-size: 16px;
|
|
}
|
|
|
|
table#timinganketa_table td input {
|
|
width: 100px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
div.subpage_uporabniki .data_table_top_holder {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
box-sizing: border-box;
|
|
margin: 0 14px 16px 14px;
|
|
padding: 6px 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
font-size: 14px !important;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .osnova {
|
|
box-sizing: border-box;
|
|
padding-right: 8px;
|
|
margin-right: 8px;
|
|
border-right: 1px solid #C4C4C4;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .osnova.no_border {
|
|
border: none;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .osnova select,
|
|
div.subpage_uporabniki .data_table_top_holder .osnova input {
|
|
padding: 3px 5px;
|
|
margin: 0 0 0 8px;
|
|
width: 123px;
|
|
vertical-align: middle;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .dataSettingsBasic {
|
|
display: flex;
|
|
margin-right: 8px;
|
|
padding-right: 8px;
|
|
border: none;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .dataSettingsBasic button.white-blue {
|
|
height: 28px;
|
|
width: 140px;
|
|
min-width: auto;
|
|
padding: 0;
|
|
line-height: 12px;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
border-radius: 2px;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .dataSettingsBasic button.white-blue.border_blue {
|
|
border-color: #1E88E5;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder .dataSettingsBasic button.white-blue .faicon:before {
|
|
margin-right: 8px;
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_uporabniki .data_table_top_holder #end {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
div.subpage_uporabniki div.users_list_box {
|
|
padding: 0 12px;
|
|
}
|
|
div.subpage_uporabniki div.add_user {
|
|
margin-bottom: 32px;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: fit-content;
|
|
align-self: center;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal div#dodajanje_left {
|
|
padding-right: 32px;
|
|
margin-right: 32px;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal div.add_user_fields_wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: fit-content;
|
|
margin-top: 8px;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal div.button_holder {
|
|
margin: 32px 0 0 0;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder.horizontal .setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder select.dropdown {
|
|
width: 500px;
|
|
}
|
|
div.subpage_uporabniki div.add_user div#dodajanje_horizontal .setting_holder p.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
table#unconfirmed_mail_user_list {
|
|
border-left: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
|
|
div#user_info_segment_narocila {
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 32px 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div#user_info_segment_narocila .user_info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#user_info_segment_narocila .user_info.text {
|
|
margin-right: 50px;
|
|
}
|
|
|
|
div.page_diagnostics .data_table_top_holder {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
box-sizing: border-box;
|
|
margin-bottom: 16px;
|
|
padding: 6px 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder.graphs {
|
|
margin-bottom: 32px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .osnova {
|
|
box-sizing: border-box;
|
|
padding-right: 8px;
|
|
margin-right: 8px;
|
|
border-right: 1px solid #C4C4C4;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .osnova.no_border {
|
|
border: none;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .osnova select,
|
|
div.page_diagnostics .data_table_top_holder .osnova input {
|
|
padding: 3px 5px;
|
|
margin: 0 0 0 8px;
|
|
width: 123px;
|
|
vertical-align: middle;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .dataSettingsBasic {
|
|
display: flex;
|
|
margin-right: 8px;
|
|
padding-right: 8px;
|
|
border: none;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .dataSettingsBasic button.white-blue {
|
|
height: 28px;
|
|
width: 140px;
|
|
min-width: auto;
|
|
padding: 0;
|
|
line-height: 12px;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
border-radius: 2px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .dataSettingsBasic button.white-blue.border_blue {
|
|
border-color: #1E88E5;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder .dataSettingsBasic button.white-blue .faicon:before {
|
|
margin-right: 8px;
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #end {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #end .dataSettingsBasic {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes {
|
|
left: 211px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date {
|
|
left: 902px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
z-index: 998;
|
|
position: absolute;
|
|
top: 41px;
|
|
border-radius: 2px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes a,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date a {
|
|
text-decoration: none;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes ul,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes ul li,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes ul li:last-of-type,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes ul li span,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes ul li span:hover,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 14px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder #jezikpaket,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder #jezikpaket {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 64px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder select,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder option,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder select,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder option {
|
|
padding: 3px 5px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder .setting_title,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder .setting_title {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder .setting_item,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder .setting_item {
|
|
margin-top: 12px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder .setting_item label,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder .setting_item label {
|
|
font-size: 14px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder .date_holder input.text,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder .date_holder input.text {
|
|
width: 130px;
|
|
margin-right: 8px;
|
|
height: 28px;
|
|
padding: 5px 8px;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_holder .date_holder input.text.disabled,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .setting_holder .date_holder input.text.disabled {
|
|
border-color: #C4C4C4;
|
|
background-color: #E5E5E5;
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .button_holder,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .button_holder {
|
|
padding: 8px 0 0 0;
|
|
margin: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .button_holder button,
|
|
div.page_diagnostics .data_table_top_holder #dataSettingsCheckboxes_Date .dataSettingsCheckboxes_holder .button_holder button {
|
|
min-width: 130px;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table {
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table th {
|
|
height: 55px;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table td {
|
|
height: 40px;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table td.graph_cell div.graph_cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div.page_diagnostics table#aktivnost_ankete_table td.graph_cell div.graph_cell .graph_full {
|
|
background-color: #1E88E5;
|
|
height: 24px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
div.page_diagnostics table.aktivnost_paradata_table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
div.page_diagnostics table.aktivnost_paradata_table td.graph_cell div.graph_cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div.page_diagnostics table.aktivnost_paradata_table td.graph_cell div.graph_cell .graph_full {
|
|
background-color: #1E88E5;
|
|
height: 16px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
table.parapodatki_table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
font-size: 14px;
|
|
}
|
|
table.parapodatki_table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
table.parapodatki_table td.graph_cell div.graph_cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
table.parapodatki_table td.graph_cell div.graph_cell .graph_full {
|
|
background-color: #1E88E5;
|
|
height: 16px;
|
|
margin-right: 8px;
|
|
}
|
|
table.parapodatki_table td.graph_cell div.graph_cell span {
|
|
font-size: inherit;
|
|
}
|
|
|
|
div.page_diagnostics .time_span_container {
|
|
position: relative;
|
|
height: 160px;
|
|
width: 100%;
|
|
margin-bottom: 32px;
|
|
margin-top: 4px;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
div.page_diagnostics .time_span_container:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_diagnostics .time_span_header {
|
|
clear: both;
|
|
}
|
|
div.page_diagnostics .time_span {
|
|
background-color: #E5E5E5;
|
|
width: 1px;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
div.page_diagnostics .time_span.year_2023 {
|
|
background-color: #92a9cf;
|
|
}
|
|
div.page_diagnostics .time_span.year_2022 {
|
|
background-color: #f79646;
|
|
}
|
|
div.page_diagnostics .time_span.year_2021 {
|
|
background-color: #4bacc6;
|
|
}
|
|
div.page_diagnostics .time_span.year_2020 {
|
|
background-color: #8064a2;
|
|
}
|
|
div.page_diagnostics .time_span.year_2019 {
|
|
background-color: #4f81bd;
|
|
}
|
|
div.page_diagnostics .time_span.year_2018 {
|
|
background-color: #9bbb59;
|
|
}
|
|
div.page_diagnostics .time_span.year_2017 {
|
|
background-color: #c0504d;
|
|
}
|
|
div.page_diagnostics .time_span.year_2016 {
|
|
background-color: #92a9cf;
|
|
}
|
|
div.page_diagnostics .time_span.year_2015 {
|
|
background-color: #f79646;
|
|
}
|
|
div.page_diagnostics .time_span.year_2014 {
|
|
background-color: #4bacc6;
|
|
}
|
|
div.page_diagnostics .time_span.year_2013 {
|
|
background-color: #8064a2;
|
|
}
|
|
div.page_diagnostics .time_span.year_2012 {
|
|
background-color: #9bbb59;
|
|
}
|
|
div.page_diagnostics .time_span.year_2011 {
|
|
background-color: #c0504d;
|
|
}
|
|
div.page_diagnostics .time_span.year_2010 {
|
|
background-color: #4f81bd;
|
|
}
|
|
div.page_diagnostics .time_span.day_1 {
|
|
background-color: #4f81bd;
|
|
}
|
|
div.page_diagnostics .time_span.day_2 {
|
|
background-color: #c0504d;
|
|
}
|
|
div.page_diagnostics .time_span.day_3 {
|
|
background-color: #9bbb59;
|
|
}
|
|
div.page_diagnostics .time_span.day_4 {
|
|
background-color: #8064a2;
|
|
}
|
|
div.page_diagnostics .time_span.day_5 {
|
|
background-color: #4bacc6;
|
|
}
|
|
div.page_diagnostics .time_span.day_6 {
|
|
background-color: #f79646;
|
|
}
|
|
div.page_diagnostics .time_span.day_7 {
|
|
background-color: #92a9cf;
|
|
}
|
|
div.page_diagnostics .time_span.month_1 {
|
|
background-color: #4f81bd;
|
|
}
|
|
div.page_diagnostics .time_span.month_2 {
|
|
background-color: #c0504d;
|
|
}
|
|
div.page_diagnostics .time_span.month_3 {
|
|
background-color: #9bbb59;
|
|
}
|
|
div.page_diagnostics .time_span.month_4 {
|
|
background-color: #8064a2;
|
|
}
|
|
div.page_diagnostics .time_span.month_5 {
|
|
background-color: #4bacc6;
|
|
}
|
|
div.page_diagnostics .time_span.month_6 {
|
|
background-color: #f79646;
|
|
}
|
|
div.page_diagnostics .time_span.month_7 {
|
|
background-color: #92a9cf;
|
|
}
|
|
div.page_diagnostics .time_span.month_8 {
|
|
background-color: #4f81bd;
|
|
}
|
|
div.page_diagnostics .time_span.month_9 {
|
|
background-color: #c0504d;
|
|
}
|
|
div.page_diagnostics .time_span.month_10 {
|
|
background-color: #9bbb59;
|
|
}
|
|
div.page_diagnostics .time_span.month_11 {
|
|
background-color: #8064a2;
|
|
}
|
|
div.page_diagnostics .time_span.month_12 {
|
|
background-color: #4bacc6;
|
|
}
|
|
|
|
div.page_obvestila div.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
div.page_obvestila div.title div.title_icon {
|
|
height: 30px;
|
|
width: 30px;
|
|
border-radius: 2px;
|
|
background-color: #EAF9FE;
|
|
color: #1E88E5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 8px;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_obvestila div.title h2 {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
div.page_obvestila div.title h2:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-right: -100%;
|
|
margin-left: 8px;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 694px;
|
|
box-sizing: border-box;
|
|
width: 50%;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list {
|
|
overflow-y: auto;
|
|
border: solid 1px #E5E5E5;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul {
|
|
padding-left: 0;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li {
|
|
box-sizing: border-box;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 16px;
|
|
min-height: 78px;
|
|
background-color: #FFFFFF;
|
|
border-bottom: solid 1px #E5E5E5;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li:last-of-type,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li:last-of-type {
|
|
border-bottom: none;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 8px;
|
|
width: 100%;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.subject,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.subject {
|
|
font-weight: 600;
|
|
margin-right: 8px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.date,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.date {
|
|
font-size: 12px;
|
|
color: #808080;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.content,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.content {
|
|
font-size: 14px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.resolve,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.resolve {
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
padding: 5px 16px;
|
|
width: fit-content;
|
|
font-size: 14px;
|
|
margin-top: 12px;
|
|
cursor: pointer;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.resolve span.faicon,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.resolve span.faicon {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
margin-right: 8px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li.active,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li.active {
|
|
background-color: #F4F9FE;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li {
|
|
cursor: pointer;
|
|
padding-left: 24px !important;
|
|
padding-right: 24px !important;
|
|
position: relative;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li span.faicon {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 7px;
|
|
color: #1E88E5;
|
|
font-size: 8px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li span.faicon:not(.unread) {
|
|
display: none;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 694px;
|
|
box-sizing: border-box;
|
|
width: 50%;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form .setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form .setting_holder .setting_item label {
|
|
margin-right: 8px;
|
|
cursor: pointer;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form .setting_holder .setting_item input.text {
|
|
width: 250px;
|
|
height: 28px;
|
|
padding: 3px 5px;
|
|
margin-top: 0;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form input.text {
|
|
width: 100%;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form div.label {
|
|
margin-top: 4px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form textarea {
|
|
width: 100%;
|
|
padding: 3px 5px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form div.auto_checkbox {
|
|
margin-top: 16px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form div.button_holder {
|
|
margin-top: 32px;
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right .send_form div.button_holder.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right #message {
|
|
padding: 14px 16px;
|
|
width: 100%;
|
|
height: 670px;
|
|
border: 1px #E5E5E5 solid;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right #message div.subject,
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right #message div.date {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
}
|
|
div.page_obvestila #notifications .notifications_content .notifications_content_right #message div.content {
|
|
font-size: 16px;
|
|
margin-top: 16px;
|
|
overflow-wrap: normal;
|
|
}
|
|
div.page_obvestila #new_notification_alert {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 15px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
padding: 5px 8px;
|
|
width: 300px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
color: white;
|
|
background-color: #FF0000;
|
|
}
|
|
div.page_obvestila #unread_notifications {
|
|
display: none;
|
|
height: auto;
|
|
width: 500px;
|
|
margin: 0 auto;
|
|
}
|
|
div.page_obvestila #unread_notifications > ul {
|
|
padding-left: 0;
|
|
margin-bottom: 50px;
|
|
line-height: 18px;
|
|
}
|
|
div.page_obvestila #unread_notifications > ul > li {
|
|
list-style-type: none;
|
|
margin: 5px 0;
|
|
padding: 5px 8px;
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
div.page_obvestila #unread_notifications a {
|
|
color: #1E88E5;
|
|
}
|
|
div.page_obvestila #unread_notifications .gdpr_popup_radio {
|
|
padding-top: 6px;
|
|
}
|
|
div.page_obvestila #unread_notifications .gdpr_popup_radio input {
|
|
vertical-align: top;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#anketa_knjiznica #libraryInner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 750px;
|
|
width: 100%;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top {
|
|
display: flex;
|
|
padding: 20px 32px;
|
|
background-color: #F8F8F8;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top > div {
|
|
padding-right: 8px;
|
|
margin-right: 8px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top > div.search_text {
|
|
width: 100%;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top > div.search_text input[type=text] {
|
|
width: 100%;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 0 8px;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top > div.search_type select {
|
|
cursor: pointer;
|
|
width: 160px;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 0 8px;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_top > div.search_button {
|
|
padding-right: 0px;
|
|
margin-right: 0px;
|
|
border: none;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_advanced_buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 8px 32px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_advanced_buttons button {
|
|
padding: 5px 16px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_advanced_buttons button.active {
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#anketa_knjiznica #libraryInner .advanced_search #searchLibrarySettings .search_settings_advanced_buttons button .faicon::before {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
#anketa_knjiznica #libraryInner .library_title {
|
|
margin-bottom: 16px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li {
|
|
list-style-type: none;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .faicon.move_updown {
|
|
cursor: pointer;
|
|
padding: 0 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .faicon.move_updown:before {
|
|
color: #1E88E5;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box {
|
|
align-items: center;
|
|
display: flex;
|
|
height: 41px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
margin-bottom: 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 4px;
|
|
transition: 0.2s;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.folderhover {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box input[type=text] {
|
|
font-size: 16px;
|
|
padding: 2px 3px;
|
|
margin: 0;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .faicon.new_folder,
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .faicon.delete_folder {
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
margin-left: 8px;
|
|
transition: 0.2s;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .faicon.new_folder:before,
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .faicon.delete_folder:before {
|
|
color: #1E88E5;
|
|
font-size: 15px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder_arrow_icon {
|
|
cursor: pointer;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder_arrow_icon::before {
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #333333;
|
|
margin-right: 8px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder::before {
|
|
content: "";
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
margin-right: 8px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder_clickable {
|
|
cursor: pointer;
|
|
flex-grow: 1;
|
|
height: 41px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box:hover .faicon.new_folder,
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box:hover .faicon.delete_folder {
|
|
opacity: 1;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open {
|
|
background-color: #F8F8F8;
|
|
/*.faicon.new_folder,
|
|
.faicon.delete_folder{
|
|
display: inline-block;
|
|
}*/
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder_arrow_icon::before {
|
|
content: "";
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder::before {
|
|
font-weight: 600;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 41px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
margin-bottom: 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 4px;
|
|
transition: 0.2s;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container .folder_left {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
height: 41px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container .folder_left .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container .folder_left .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container .folder_right {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li .folder_container .folder_right button {
|
|
margin-left: 8px;
|
|
}
|
|
#anketa_knjiznica #libraryInner ul li ul {
|
|
padding-left: 36px;
|
|
}
|
|
|
|
/*
|
|
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: #EEF7FF;
|
|
color: #1E88E5;
|
|
border-color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_left_item .item.active:hover {
|
|
background-color: #d5ebff;
|
|
}
|
|
#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;
|
|
width: auto;
|
|
}
|
|
#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: #ebebeb;
|
|
}
|
|
#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: #EEF7FF;
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type.active:hover {
|
|
background-color: #d5ebff;
|
|
}
|
|
#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: 218px;
|
|
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: 16px 12px 16px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template .template_content {
|
|
overflow: hidden;
|
|
padding: 16px 12px;
|
|
height: 80px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template .template_preview {
|
|
bottom: 0;
|
|
padding: 0 12px 16px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected {
|
|
border-color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected .template_title {
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected:hover {
|
|
background-color: #fafafa;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template.selected:hover .template_title {
|
|
background-color: #1980da;
|
|
}
|
|
#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;
|
|
}
|
|
|
|
div#no_survey {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
div#no_survey div.no_survey_title {
|
|
font-size: 32px;
|
|
font-weight: 300;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
width: 800px;
|
|
margin-bottom: 25px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div#no_survey div.no_survey_title img {
|
|
margin-right: 8px;
|
|
align-self: flex-start;
|
|
}
|
|
div#no_survey div.no_survey_box {
|
|
width: 800px;
|
|
padding: 16px;
|
|
border: 1px solid #E5E5E5;
|
|
margin-bottom: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
div#no_survey div.no_survey_box div.feature {
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div#no_survey div.no_survey_box div.feature div.icon {
|
|
border-radius: 2px;
|
|
background-color: #EAF9FE;
|
|
color: #1E88E5;
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
div#no_survey div.no_survey_box div.feature div.name {
|
|
margin-left: 8px;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
}
|
|
div#no_survey div.no_survey_box div.button_holder {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
div#no_survey #no_survey_video {
|
|
margin-bottom: 16px;
|
|
}
|
|
div#no_survey #no_survey_features {
|
|
width: 800px;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#no_survey #no_survey_features #intro {
|
|
font-size: 21px;
|
|
}
|
|
div#no_survey #no_survey_features h2 {
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
margin: 16px 0;
|
|
}
|
|
div#no_survey #no_survey_features .features {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
div#no_survey #no_survey_features .features li {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
div#no_survey #no_survey_features .features li:last-of-type {
|
|
margin: 0;
|
|
}
|
|
|
|
div.page_ustvari_anketo {
|
|
margin: 0 auto !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.dashboard_top_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_info {
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_info span {
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting {
|
|
margin-left: 16px;
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting select.dropdown {
|
|
width: auto;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting .filter_time_profile {
|
|
cursor: pointer;
|
|
padding: 4px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting .filter_time_profile .faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting .filter_time_profile:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
|
|
.dashboard_boxes {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
box-sizing: border-box;
|
|
margin-top: 32px;
|
|
}
|
|
.dashboard_boxes .dashboard_box {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 430px;
|
|
max-width: 100%;
|
|
padding: 32px 16px;
|
|
margin: 0 32px 32px 0;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
.dashboard_boxes .dashboard_box:nth-child(3), .dashboard_boxes .dashboard_box:nth-child(6) {
|
|
margin-right: 0;
|
|
}
|
|
.dashboard_boxes .dashboard_box .box_title {
|
|
position: absolute;
|
|
top: -10px;
|
|
left: 16px;
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
line-height: 18px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
.dashboard_boxes .dashboard_box .box_top_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
.dashboard_boxes .dashboard_box .box_top_settings span,
|
|
.dashboard_boxes .dashboard_box .box_top_settings label {
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_boxes .dashboard_box .box_top_settings select.dropdown {
|
|
width: auto;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
.dashboard_boxes .dashboard_box table {
|
|
width: 100%;
|
|
margin: 0 0 16px 0;
|
|
}
|
|
.dashboard_boxes .dashboard_box table:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr {
|
|
height: auto;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr.row1 td {
|
|
padding: 8px 16px 8px 8px;
|
|
font-weight: 600;
|
|
background-color: #F8F8F8;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr.row_sum td {
|
|
font-weight: 600;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr td {
|
|
padding: 4px 16px 4px 8px;
|
|
font-size: 14px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr td strong {
|
|
font-weight: 600;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr td span {
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr td .graph_db {
|
|
float: left;
|
|
height: 16px;
|
|
margin-top: 1px;
|
|
background-color: #1E88E5;
|
|
}
|
|
.dashboard_boxes .dashboard_box table tr td .graph_text {
|
|
margin-left: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_info table tr td {
|
|
padding: 0 0 8px 0;
|
|
border: 0;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_info table tr td:first-child {
|
|
width: 100px;
|
|
font-weight: 600;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_info table tr td:nth-child(2) {
|
|
max-width: 290px;
|
|
overflow: hidden;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_info table tr td:nth-child(3) {
|
|
font-weight: 600;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_status table tr td:first-child {
|
|
padding-left: 16px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_status table tr td:nth-child(2), .dashboard_boxes .dashboard_box#div_statistic_status table tr td:nth-child(3) {
|
|
text-align: right;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_status table tr.row1 td:first-child {
|
|
padding-left: 8px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_answer_state table tr td:nth-child(2), .dashboard_boxes .dashboard_box#div_statistic_answer_state table tr td:nth-child(3) {
|
|
width: 80px;
|
|
text-align: right;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals table tr td:first-child {
|
|
width: 140px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals table tr td:nth-child(2) {
|
|
max-width: 290px;
|
|
overflow: hidden;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 16px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail span {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail span.dashboard_title {
|
|
font-weight: 600;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail span a {
|
|
text-decoration: none;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail table {
|
|
margin-bottom: 16px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_referals #referal_detail table tr td:first-child {
|
|
width: 90px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_visit .box_top_settings > div select.dropdown {
|
|
width: 130px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_visit .box_top_settings:nth-child(3) {
|
|
justify-content: space-between;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_visit table tr td:first-child {
|
|
width: 140px;
|
|
}
|
|
.dashboard_boxes .dashboard_box#div_statistic_pages_state table tr td:first-child {
|
|
width: 140px;
|
|
}
|
|
|
|
.survey_referals_tbl {
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
margin-top: 8px;
|
|
}
|
|
.survey_referals_tbl td {
|
|
padding: 3px 0px;
|
|
}
|
|
.survey_referals_tbl th {
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
font-weight: normal;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#div_statistic_float_div {
|
|
position: fixed;
|
|
width: 620px;
|
|
max-height: 600px;
|
|
z-index: 90;
|
|
padding: 10px;
|
|
border: 1px solid #FF0000;
|
|
background-color: white;
|
|
margin: auto auto;
|
|
}
|
|
#div_statistic_float_div .list {
|
|
margin-left: 20px;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.dashboard_status_span {
|
|
display: inline-block;
|
|
width: 200px;
|
|
padding: 2px 0px;
|
|
}
|
|
|
|
#div_statistic_status span {
|
|
display: inline-block;
|
|
padding: 2px 0px;
|
|
}
|
|
|
|
.opt_bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes {
|
|
background-color: #F4F9FE;
|
|
width: 100%;
|
|
height: 136px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 206px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
max-width: 1360px;
|
|
width: 1360px;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
margin: 16px 0px;
|
|
padding: 0px 16px;
|
|
box-sizing: border-box;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section:last-of-type {
|
|
border: none;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section .setting_holder {
|
|
white-space: nowrap;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section .setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section .setting_holder .setting_item label {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section span.setting_title {
|
|
font-size: 14px !important;
|
|
font-weight: 600;
|
|
}
|
|
div.page_nonresponse_graph div#surveyNonresponse div#dataSettingsCheckboxes div.wrap1360 .section div.subsection {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div.page_nonresponse_graph h2 {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_nonresponse_graph h2:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-right: -100%;
|
|
margin-left: 8px;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
div.page_nonresponse_graph table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
font-size: 14px;
|
|
}
|
|
div.page_nonresponse_graph table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
div.page_nonresponse_graph table td.graph_cell div.graph_full {
|
|
background-color: #1E88E5;
|
|
height: 24px;
|
|
text-align: right;
|
|
}
|
|
div.page_nonresponse_graph table td.para_page_break {
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno {
|
|
margin: 0 32px;
|
|
border: 1px solid #E5E5E5;
|
|
text-align: right;
|
|
width: calc(100% - 64px);
|
|
}
|
|
div.page_nonresponse_graph table.podrobno th {
|
|
background-color: #F2F2F2;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno th.small {
|
|
font-size: 10px;
|
|
white-space: normal;
|
|
padding: 8px;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno td.dashed, div.page_nonresponse_graph table.podrobno th.dashed {
|
|
border-top: 1px dashed #E5E5E5;
|
|
border-left: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno td:not(.dashed), div.page_nonresponse_graph table.podrobno th:not(.dashed) {
|
|
border-left: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: none;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno td div.short, div.page_nonresponse_graph table.podrobno th div.short {
|
|
width: 160px;
|
|
white-space: normal;
|
|
text-overflow: wrap;
|
|
}
|
|
div.page_nonresponse_graph table.podrobno tr.multiVariablesHeader,
|
|
div.page_nonresponse_graph table.podrobno tr.multiGroupHeader {
|
|
background-color: #F8F8F8;
|
|
}
|
|
div.page_nonresponse_graph div#bottom_data_legend_missing {
|
|
background-color: #F8F8F8;
|
|
width: fit-content;
|
|
margin-left: 32px;
|
|
margin-top: 24px;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 8px 16px;
|
|
}
|
|
div.page_nonresponse_graph div#bottom_data_legend_missing div.legend_title {
|
|
color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.drop_setting_margin {
|
|
margin-top: 136px;
|
|
}
|
|
|
|
div.drop_setting_transition {
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
|
|
.page_status_advanced .status_advanced {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.page_status_advanced .status_advanced a {
|
|
width: 25%;
|
|
min-width: 290px;
|
|
text-decoration: none;
|
|
}
|
|
.page_status_advanced .status_advanced .status_advanced_box {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
margin: 0 16px 16px 0;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
color: #333333;
|
|
background-color: #fff;
|
|
border: 1px solid #E5E5E5;
|
|
transition: 0.2s;
|
|
}
|
|
.page_status_advanced .status_advanced .status_advanced_box:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
|
|
/*
|
|
Status - ip lokacija
|
|
*/
|
|
.page_geoip_location .geoip_holder {
|
|
display: flex;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_table_holder {
|
|
width: 100%;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_table_holder .geoip_table {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_map_holder {
|
|
margin: 0 0 0 32px;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_map_holder .geoip_navigation {
|
|
display: flex;
|
|
margin-bottom: 16px;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_map_holder .geoip_navigation a {
|
|
margin-right: 16px;
|
|
color: #808080;
|
|
}
|
|
.page_geoip_location .geoip_holder .geoip_map_holder .geoip_navigation a:hover, .page_geoip_location .geoip_holder .geoip_map_holder .geoip_navigation a.active {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
/*
|
|
Branching ikone, radio, checkboxi...
|
|
*/
|
|
#branching {
|
|
/* font awesom za admin */
|
|
/* select, checked */
|
|
}
|
|
#branching input[type=checkbox].enka-admin-custom,
|
|
#branching input[type=radio].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
#branching input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
#branching input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
color: #D3D3D3;
|
|
font-weight: 400;
|
|
}
|
|
#branching input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
#branching input[type=radio].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before {
|
|
display: inline-block;
|
|
padding-top: 4px;
|
|
padding-left: 4px;
|
|
font-weight: 400;
|
|
}
|
|
#branching input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#branching input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
#branching input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
color: #D3D3D3;
|
|
letter-spacing: 8px;
|
|
}
|
|
#branching input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
color: #D3D3D3;
|
|
}
|
|
#branching span.faicon.delete_circle::before {
|
|
font-size: 14px;
|
|
}
|
|
#branching span.faicon.add::before {
|
|
font-size: 14px;
|
|
}
|
|
#branching span.faicon.plus::before,
|
|
#branching span.faicon.minus::before {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
}
|
|
#branching span.faicon.inline::before {
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
/*
|
|
Osnova za branching
|
|
*/
|
|
#placeholder {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0 0 0 0;
|
|
}
|
|
|
|
#branching {
|
|
min-height: 400px;
|
|
width: calc(100% - 725px);
|
|
margin: 0 0 0 304px;
|
|
background-color: white;
|
|
/* Okno za drop vprasanja, ko je anketa prazna */
|
|
}
|
|
@media only screen and (max-width: 1200px) {
|
|
#branching {
|
|
width: calc(100% - 525px);
|
|
margin: 0 0 0 104px;
|
|
}
|
|
}
|
|
#branching ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#branching ul li {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
#branching ul li.drop {
|
|
height: 32px;
|
|
}
|
|
#branching ul li.drop:hover .pb_new {
|
|
display: flex;
|
|
}
|
|
#branching ul li.drop:hover .pb_new .pb_page_hover {
|
|
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 .not-permanent .pb_page {
|
|
display: none;
|
|
}
|
|
#branching ul li.nodrop:hover .not-permanent .pb_page_hover {
|
|
display: flex;
|
|
}
|
|
#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 {
|
|
height: 16px;
|
|
}
|
|
#branching ul li .pb_on.pb_new,
|
|
#branching ul li .pb_new.pb_new {
|
|
display: none;
|
|
height: 32px;
|
|
}
|
|
#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 {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
padding-right: 16px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 16px;
|
|
color: #A9A9A9;
|
|
}
|
|
#branching ul li .pb_on .pb_page_hover,
|
|
#branching ul li .pb_new .pb_page_hover {
|
|
display: none;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
padding-right: 16px;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
}
|
|
#branching ul li .pb_on .pb_page_hover .faicon,
|
|
#branching ul li .pb_new .pb_page_hover .faicon {
|
|
margin-right: 8px;
|
|
line-height: 12px;
|
|
}
|
|
#branching ul li .pb_on .pb_page_hover .faicon::before,
|
|
#branching ul li .pb_new .pb_page_hover .faicon::before {
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
}
|
|
#branching ul li .pb_on .pb_line,
|
|
#branching ul li .pb_new .pb_line {
|
|
width: 100%;
|
|
height: 1px;
|
|
border-bottom: 1px #D3D3D3 solid;
|
|
}
|
|
#branching div.spr.uni-draggable-dragging,
|
|
#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;
|
|
margin-top: -2px;
|
|
}
|
|
#branching .empty_vrivanje {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: auto !important;
|
|
box-sizing: border-box;
|
|
margin: 32px 0 24px 0;
|
|
padding: 60px 0;
|
|
text-align: center;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_title {
|
|
margin: 0 auto 32px auto;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_buttons button {
|
|
margin: 0 8px;
|
|
font-weight: 400;
|
|
}
|
|
#branching .empty_vrivanje.branchinghover {
|
|
background: 0 !important;
|
|
background-color: #E5E5E5;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 43px 0 0 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner button {
|
|
margin-left: 8px;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner > span {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner.changes {
|
|
font-size: 14px;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner.changes .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner.changes .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
.blockSwitch {
|
|
position: relative;
|
|
margin: 10px auto 0;
|
|
text-align: center;
|
|
}
|
|
.blockSwitch p {
|
|
display: inline;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/*
|
|
Levi toolbox v urejanju ankete (dodajanje vprasanj...)
|
|
*/
|
|
.toolbox_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 220px;
|
|
background-color: #F2F2F2;
|
|
border-top: 1px #E5E5E5 solid;
|
|
border-right: 1px #E5E5E5 solid;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_holder.open {
|
|
width: 240px;
|
|
}
|
|
.toolbox_holder.closed {
|
|
width: 40px;
|
|
}
|
|
.toolbox_holder.closed .toolbox_item {
|
|
height: 40px;
|
|
padding: 0 !important;
|
|
}
|
|
.toolbox_holder.closed .toolbox_item .item_text {
|
|
display: none !important;
|
|
}
|
|
.toolbox_holder.closed .toolbox_expand {
|
|
left: 55px !important;
|
|
}
|
|
.toolbox_holder.closed #locked_toolbar {
|
|
width: 40px;
|
|
}
|
|
@media only screen and (max-width: 1200px) {
|
|
.toolbox_holder {
|
|
width: 40px !important;
|
|
}
|
|
.toolbox_holder .toolbox_item {
|
|
height: 40px;
|
|
padding: 0 !important;
|
|
}
|
|
.toolbox_holder .toolbox_item .item_text {
|
|
display: none !important;
|
|
}
|
|
.toolbox_holder .toolbox_expand {
|
|
left: 55px !important;
|
|
}
|
|
.toolbox_holder #locked_toolbar {
|
|
width: 40px !important;
|
|
}
|
|
}
|
|
|
|
#fullscreen .toolbox_expand {
|
|
display: block;
|
|
position: fixed;
|
|
top: calc(50% - 245px);
|
|
left: calc(50% - 136px);
|
|
}
|
|
#fullscreen .toolbox_expand .button_holder {
|
|
justify-content: flex-start;
|
|
margin: 0 16px 16px 16px;
|
|
padding-top: 16px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
|
|
.toolbox {
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.toolbox .toolbox_border {
|
|
margin: 0 12px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox .toolbox_border.open_lib, .toolbox .toolbox_border.new_if, .toolbox .toolbox_border.new_block {
|
|
border-top: 1px #CCE4F9 solid;
|
|
}
|
|
.toolbox .toolbox_item {
|
|
display: flex;
|
|
padding: 0 12px 0 0;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox .toolbox_item.open_lib, .toolbox .toolbox_item.new_if, .toolbox .toolbox_item.new_block {
|
|
background-color: #EEF7FF;
|
|
}
|
|
.toolbox .toolbox_item.open_lib:hover, .toolbox .toolbox_item.new_if:hover, .toolbox .toolbox_item.new_block:hover {
|
|
background-color: #CCE4F9;
|
|
}
|
|
.toolbox .toolbox_item .item_icon {
|
|
width: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
}
|
|
.toolbox .toolbox_item .item_icon:before {
|
|
font-size: 16px;
|
|
}
|
|
.toolbox .toolbox_item .item_icon.matrix_32 {
|
|
margin-top: 7px;
|
|
line-height: 9px;
|
|
}
|
|
.toolbox .toolbox_item .item_icon.matrix_32:before {
|
|
font-size: 11px !important;
|
|
}
|
|
.toolbox .toolbox_item .item_icon.abc_32, .toolbox .toolbox_item .item_icon.number_32 {
|
|
margin-top: -1px;
|
|
line-height: 40px;
|
|
}
|
|
.toolbox .toolbox_item .item_icon.abc_32:before, .toolbox .toolbox_item .item_icon.number_32:before {
|
|
font-size: 14px !important;
|
|
}
|
|
.toolbox .toolbox_item .item_text {
|
|
font-size: 14px;
|
|
line-height: 40px;
|
|
text-indent: 3px;
|
|
}
|
|
.toolbox .toolbox_item:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
.toolbox .toolbox_item.new_adv {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
.toolbox .toolbox_item.new_adv:hover {
|
|
background-color: #0059ab;
|
|
}
|
|
.toolbox .toolbox_item.new_block {
|
|
border-bottom: none;
|
|
}
|
|
.toolbox #locked_toolbar {
|
|
cursor: default;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 240px;
|
|
height: 450px;
|
|
background: rgba(30, 136, 229, 0.85);
|
|
}
|
|
.toolbox#toolbox_basic.forma {
|
|
height: 266px;
|
|
top: 235px;
|
|
}
|
|
.toolbox#toolbox_basic.forma #locked_toolbar {
|
|
height: 199px;
|
|
padding-top: 85px;
|
|
}
|
|
.toolbox#toolbox_advanced_settings .toolbox_item {
|
|
background-color: #D3D3D3 !important;
|
|
}
|
|
.toolbox#toolbox_advanced_settings .toolbox_item:hover {
|
|
background-color: #C4C4C4 !important;
|
|
}
|
|
|
|
.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_expand .toolbox_expand_title {
|
|
margin: 16px 16px 0 16px;
|
|
padding-bottom: 10px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_expand .toolbox_expand_title .subtitle {
|
|
display: block;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
.toolbox_expand .toolbox_expand_segments_holder {
|
|
max-height: 400px;
|
|
overflow-y: scroll;
|
|
padding-bottom: 16px;
|
|
}
|
|
.toolbox_expand .toolbox_expand_segment {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_expand .toolbox_expand_segment .segment_title {
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.toolbox_expand .toolbox_expand_segment .segment_option {
|
|
cursor: pointer;
|
|
padding: 5px 16px 5px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox_expand .toolbox_expand_segment .segment_option:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder {
|
|
width: 300px;
|
|
padding-bottom: 8px;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_title {
|
|
margin-bottom: 8px;
|
|
text-transform: uppercase;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_title .faicon {
|
|
margin-right: 4px;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_title .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment {
|
|
margin-top: 0;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option {
|
|
padding: 8px 16px 8px 16px;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:not(.help),
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover:not(.help) {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:not(.help) .faicon,
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover:not(.help) .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:not(.help) .faicon:before,
|
|
.toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover:not(.help) .faicon:before {
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.toolbox_preview {
|
|
display: none;
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
z-index: 9999;
|
|
top: 220px;
|
|
box-sizing: border-box;
|
|
width: 470px;
|
|
max-height: 520px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.toolbox_preview .tip_preview_sub {
|
|
display: none;
|
|
padding: 16px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub > span {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample {
|
|
overflow: hidden;
|
|
margin-top: 10px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_text {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option div {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
margin-bottom: 3px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 div {
|
|
display: block;
|
|
float: left;
|
|
width: 70px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
margin-bottom: 3px;
|
|
width: 60px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
.toolbox_preview .tip_preview_sub input[type=radio],
|
|
.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_preview .tip_preview_sub#tip_preview_sub_17 .ranking_preview_holder {
|
|
display: flex;
|
|
margin-top: 16px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_17 .ranking_preview_holder .ranking_preview_left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 32px;
|
|
padding-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_17 .ranking_preview_holder .ranking_preview_left .razvrscanje_preview {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
margin-bottom: 10px;
|
|
height: 34px;
|
|
width: 140px;
|
|
font-size: 14px;
|
|
background: #F4F9FE;
|
|
border: 1px solid #D8EDFF;
|
|
border-radius: 2px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_17 .ranking_preview_holder .ranking_preview_right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_17 .ranking_preview_holder .ranking_preview_right .razvrscanje_preview_frame {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
margin-bottom: 10px;
|
|
height: 34px;
|
|
width: 140px;
|
|
font-size: 14px;
|
|
text-indent: -24px;
|
|
background: #F8F8F8;
|
|
border: 1px dashed #D8EDFF;
|
|
border-radius: 2px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_18 .tip_sample {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
width: 250px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_18 .tip_sample .tip_sample_option {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_18 .tip_sample .tip_sample_option input {
|
|
width: 180px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_18 .tip_sample .tip_sample_option.sum {
|
|
padding-top: 4px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_19 .tip_sample .tip_sample_text, .toolbox_preview .tip_preview_sub#tip_preview_sub_20 .tip_sample .tip_sample_text {
|
|
margin-bottom: 16px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_19 .tip_sample .tip_sample_option, .toolbox_preview .tip_preview_sub#tip_preview_sub_20 .tip_sample .tip_sample_option {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_19 .tip_sample .tip_sample_option div, .toolbox_preview .tip_preview_sub#tip_preview_sub_20 .tip_sample .tip_sample_option div {
|
|
width: 70px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_19 .tip_sample .tip_sample_option span, .toolbox_preview .tip_preview_sub#tip_preview_sub_20 .tip_sample .tip_sample_option span {
|
|
width: 90px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_19 .tip_sample .tip_sample_option span input, .toolbox_preview .tip_preview_sub#tip_preview_sub_20 .tip_sample .tip_sample_option span input {
|
|
width: 75px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_2 .tip_sample_option.bottom {
|
|
margin-top: 16px;
|
|
padding-top: 16px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample .tip_sample_option {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample .tip_sample_option .textarea {
|
|
box-sizing: border-box;
|
|
width: 200px;
|
|
height: 50px;
|
|
margin-right: 8px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample .tip_sample_option .button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 116px;
|
|
height: 28px;
|
|
box-sizing: border-box;
|
|
font-size: 14px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample span {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub#tip_preview_sub_21_6 .tip_sample input {
|
|
width: 200px;
|
|
margin-top: 4px;
|
|
}
|
|
.toolbox_preview .tip_preview_sub p.user_access_warning_text {
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.toolbox_item.clone-dragging,
|
|
.segment_option.clone-dragging {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
padding: 0 16px 0 0;
|
|
font-size: 14px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
}
|
|
.toolbox_item.clone-dragging.segment_option.clone-dragging,
|
|
.segment_option.clone-dragging.segment_option.clone-dragging {
|
|
padding: 8px 16px;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon,
|
|
.segment_option.clone-dragging .item_icon {
|
|
width: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon:before,
|
|
.segment_option.clone-dragging .item_icon:before {
|
|
font-size: 16px;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon.matrix_32,
|
|
.segment_option.clone-dragging .item_icon.matrix_32 {
|
|
margin-top: 7px;
|
|
line-height: 9px;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon.matrix_32:before,
|
|
.segment_option.clone-dragging .item_icon.matrix_32:before {
|
|
font-size: 11px !important;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon.abc_32, .toolbox_item.clone-dragging .item_icon.number_32,
|
|
.segment_option.clone-dragging .item_icon.abc_32,
|
|
.segment_option.clone-dragging .item_icon.number_32 {
|
|
margin-top: -1px;
|
|
line-height: 40px;
|
|
}
|
|
.toolbox_item.clone-dragging .item_icon.abc_32:before, .toolbox_item.clone-dragging .item_icon.number_32:before,
|
|
.segment_option.clone-dragging .item_icon.abc_32:before,
|
|
.segment_option.clone-dragging .item_icon.number_32:before {
|
|
font-size: 14px !important;
|
|
}
|
|
.toolbox_item.clone-dragging .item_text,
|
|
.segment_option.clone-dragging .item_text {
|
|
font-size: 14px;
|
|
line-height: 40px;
|
|
text-indent: 3px;
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: none;
|
|
}
|
|
|
|
.mobile_add_question_popup {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
Glasovanje - urejanje
|
|
*/
|
|
#anketa_edit.glasovanje {
|
|
position: relative;
|
|
display: flex;
|
|
/* Leve nastavitve */
|
|
/* Srednji del */
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 304px;
|
|
margin: 0 64px 0 32px;
|
|
padding-bottom: 16px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings .header {
|
|
padding: 12px 16px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset {
|
|
padding: 0 16px 0;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_title {
|
|
margin-top: 16px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row {
|
|
display: flex;
|
|
margin: 8px 0 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row label {
|
|
font-size: 14px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row.half-half {
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 16px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row.half-half .setting_title {
|
|
width: 50%;
|
|
margin-top: 0;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row.half-half input {
|
|
margin-top: 0;
|
|
width: 112px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings fieldset .setting_row.half-half select {
|
|
margin-top: 0;
|
|
width: 135px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings .expand_holder {
|
|
margin: 16px 16px 0 16px;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings .expand_holder a {
|
|
font-size: 14px;
|
|
text-decoration: none;
|
|
}
|
|
#anketa_edit.glasovanje .glas_settings_holder #glas_settings .expand_holder a .faicon::before {
|
|
margin-left: 8px;
|
|
font-size: 12px;
|
|
}
|
|
#anketa_edit.glasovanje #placeholder #branching {
|
|
min-height: 400px;
|
|
width: calc(100% - 421px);
|
|
margin: 60px 0 0 0;
|
|
}
|
|
#anketa_edit.glasovanje #placeholder #vprasanje_float_editing {
|
|
margin-top: 60px !important;
|
|
}
|
|
|
|
/* Desne nastavitve */
|
|
#quick_settings_holder {
|
|
position: absolute;
|
|
right: 32px;
|
|
height: auto;
|
|
}
|
|
#quick_settings_holder #quick_settings {
|
|
width: 325px;
|
|
box-sizing: border-box;
|
|
padding: 12px 16px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#quick_settings_holder #quick_settings span,
|
|
#quick_settings_holder #quick_settings label {
|
|
font-size: 14px;
|
|
}
|
|
#quick_settings_holder #quick_settings .header {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings {
|
|
/*margin: 0 8px 10px 8px;
|
|
padding: 0 0 5px 10px;
|
|
background-color: inherit;
|
|
|
|
padding: 1px 0 10px 10px;
|
|
textarea#alert_finish_other_emails {
|
|
&:focus {
|
|
padding: 2px;
|
|
border: 0;
|
|
background-color: $yellow;
|
|
}
|
|
}*/
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row .alert_authors .setting_item > span,
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row #label_alert_finish_respondent > a,
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row #label_alert_finish_respondent > p {
|
|
display: none;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row #alert_holder_finish_other_emails {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 8px;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row #alert_holder_finish_other_emails textarea {
|
|
width: 100% !important;
|
|
margin: 0 0 0 16px;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row.bottom a {
|
|
font-size: 14px;
|
|
}
|
|
#quick_settings_holder #quick_settings #form_settings_obvescanje.form_bottom_settings .setting_row.bottom .faicon:before {
|
|
margin-left: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/*
|
|
Forma - urejanje
|
|
*/
|
|
#anketa_edit.forma {
|
|
position: relative;
|
|
display: flex;
|
|
/* Srednji del */
|
|
}
|
|
#anketa_edit.forma #placeholder #branching {
|
|
margin-top: 28px;
|
|
}
|
|
#anketa_edit.forma #placeholder #vprasanje_float_editing {
|
|
margin-top: 60px !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 : 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;
|
|
}
|
|
|
|
.save_button {
|
|
float: right;
|
|
margin: 10px 0px;
|
|
padding-right: 10px;
|
|
z-index: 50;
|
|
}
|
|
|
|
div.spr div.edit_mode,
|
|
li.spr div.edit_mode {
|
|
display: none;
|
|
}
|
|
div.spr div.preview_mode,
|
|
li.spr div.preview_mode {
|
|
display: block;
|
|
}
|
|
div.spr thead.edit_mode,
|
|
li.spr thead.edit_mode {
|
|
display: none;
|
|
}
|
|
div.spr .editingOnly,
|
|
li.spr .editingOnly {
|
|
visibility: hidden;
|
|
}
|
|
div.spr span.inline_other,
|
|
li.spr span.inline_other {
|
|
display: none;
|
|
}
|
|
div.spr #variabla_new span.inline_other,
|
|
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;
|
|
}
|
|
|
|
.kviz-editing-correct::before {
|
|
color: #33cc33 !important;
|
|
}
|
|
|
|
/*
|
|
Skrcen nacin pri urejanju vprasalnika
|
|
*/
|
|
#branching.collapsed {
|
|
/*min-height: 317px;
|
|
margin-top: 10px;
|
|
|
|
div.spr,
|
|
li.spr {
|
|
line-height: 28px;
|
|
&:hover {
|
|
background-color: $blue;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.spr_edit {
|
|
padding-top: 0px;
|
|
margin-top: 0px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
div.spr.spr_editing,
|
|
li.spr.spr_editing {
|
|
line-height: inherit;
|
|
&:hover {
|
|
background: none;
|
|
cursor: auto;
|
|
}
|
|
|
|
div.spr_edit{
|
|
padding-top: 2px;
|
|
margin-top: 5px;
|
|
margin-right: 30px;
|
|
}
|
|
}
|
|
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;
|
|
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: $gray;
|
|
}
|
|
span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
&:hover {
|
|
span.pb_on {
|
|
background: url('../../../admin/survey/img_0/sprites_pb.png') no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
span.pb_new {
|
|
background: url('../../../admin/survey/img_0/sprites_pb.png') no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
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;
|
|
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: $gray;
|
|
}
|
|
span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
&:hover {
|
|
span.pb_on {
|
|
background: url('../../../admin/survey/img_0/sprites_pb.png') no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
span.pb_new {
|
|
background: url('../../../admin/survey/img_0/sprites_pb.png') no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
span.permanent {
|
|
background: url('../../../admin/survey/img_0/sprites_pb.png') no-repeat 0px 0px;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
|
|
div.if_remove {
|
|
padding-top: 0px;
|
|
margin-top: 3px;
|
|
}*/
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing):nth-child(3), #branching.collapsed ul li:not(.spr_editing):not(.if_editing):last-child {
|
|
font-weight: 600;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing).spr, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).if, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endif, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).block, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endblock, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).loop, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endloop {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 28px;
|
|
padding-left: 8px;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing).spr:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).if:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endif:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).block:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endblock:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).loop:hover, #branching.collapsed ul li:not(.spr_editing):not(.if_editing).endloop:hover {
|
|
background-color: #EEF7FF;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing).drop {
|
|
height: 16px;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing).drop .pb_new {
|
|
height: 16px;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .pm {
|
|
padding-top: 0;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .pb_on {
|
|
flex-direction: row-reverse;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .pb_on .pb_page {
|
|
justify-content: flex-end;
|
|
flex-shrink: 0;
|
|
width: auto;
|
|
margin-left: 8px;
|
|
padding-right: 0px;
|
|
font-weight: 600;
|
|
font-size: 10px;
|
|
text-align: right;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .pb_on .pb_page_hover {
|
|
order: 1;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .spr_edit {
|
|
padding: 2px 6px;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .colorvariable,
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .calculationvariable {
|
|
margin-right: 8px;
|
|
font-weight: 600;
|
|
}
|
|
#branching.collapsed ul li:not(.spr_editing):not(.if_editing) .spr_comment {
|
|
margin: 0 8px;
|
|
font-style: normal;
|
|
color: #A9A9A9;
|
|
}
|
|
|
|
/*
|
|
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: 325px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_header {
|
|
height: 45px;
|
|
padding: 0 9px;
|
|
color: #333333;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 43px;
|
|
text-transform: uppercase;
|
|
background-color: #FFFFFF;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_header .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_header .faicon:before {
|
|
font-size: 14px;
|
|
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: 41px;
|
|
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: 41px;
|
|
/*&#tab_link_0 span{
|
|
border-right: 1px $gray solid;
|
|
}
|
|
&#tab_link_7 span{
|
|
border-left: 1px $gray solid;
|
|
}
|
|
&#tab_link_0.active span,
|
|
&#tab_link_7.active span{
|
|
border: 0;
|
|
}*/
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link span {
|
|
width: 100%;
|
|
padding: 0 5px;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
}
|
|
#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 .tab {
|
|
padding: 0 12px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_edit {
|
|
max-height: calc(100vh - 250px);
|
|
overflow-y: auto;
|
|
margin: 0;
|
|
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.first {
|
|
border-top: 0;
|
|
margin-top: -16px;
|
|
}
|
|
#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 legend .faicon {
|
|
margin-right: 4px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 8px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder.space_bottom {
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder.space_bottom .vprasanje_setting_line {
|
|
margin-top: 0px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .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 .vprasanje_setting_holder .vprasanje_setting_line.half-half {
|
|
justify-content: space-between;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half label {
|
|
width: 50%;
|
|
margin: 0;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half .content {
|
|
width: 50%;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half .content input[type=text],
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half .content input[type=number],
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half .content select,
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.half-half .content textarea {
|
|
width: 100%;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.inline {
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.inline .content label:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.with-icon span {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.with-icon span:hover {
|
|
color: #0059ab;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.with-icon span:hover .faicon::before {
|
|
color: #0059ab;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.with-icon .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .vprasanje_setting_holder .vprasanje_setting_line.with-icon .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 18px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder p,
|
|
#vprasanje_float_editing .vprasanje_edit_holder span,
|
|
#vprasanje_float_editing .vprasanje_edit_holder label {
|
|
line-height: 20px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .jquery-selectbox {
|
|
background-color: white;
|
|
background: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder select {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
padding: 0 8px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder input[type=text],
|
|
#vprasanje_float_editing .vprasanje_edit_holder input[type=number] {
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
height: 30px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder textarea {
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
min-height: 30px;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/*
|
|
Box za urejanje posameznega vprasanja
|
|
*/
|
|
/*
|
|
Branching element z vprasanjem - splosna osnova
|
|
*/
|
|
li.spr,
|
|
div.spr,
|
|
.jezik_row {
|
|
color: #333333;
|
|
}
|
|
li.spr:hover .spr_edit,
|
|
li.spr:hover a.surveycomment,
|
|
div.spr:hover .spr_edit,
|
|
div.spr:hover a.surveycomment,
|
|
.jezik_row:hover .spr_edit,
|
|
.jezik_row:hover a.surveycomment {
|
|
display: block;
|
|
}
|
|
li.spr a.surveycomment,
|
|
div.spr a.surveycomment,
|
|
.jezik_row a.surveycomment {
|
|
display: none;
|
|
}
|
|
li.spr .spr_edit,
|
|
div.spr .spr_edit,
|
|
.jezik_row .spr_edit {
|
|
cursor: pointer;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 0;
|
|
right: 0;
|
|
color: #1E88E5;
|
|
padding: 10px 12px;
|
|
}
|
|
li.spr .spr_edit a,
|
|
div.spr .spr_edit a,
|
|
.jezik_row .spr_edit a {
|
|
display: inline-block;
|
|
margin-left: 16px;
|
|
line-height: 24px;
|
|
color: #1E88E5;
|
|
}
|
|
li.spr .spr_edit a:before, li.spr .spr_edit a:after,
|
|
div.spr .spr_edit a:before,
|
|
div.spr .spr_edit a:after,
|
|
.jezik_row .spr_edit a:before,
|
|
.jezik_row .spr_edit a:after {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
}
|
|
li.spr .spr_edit a:hover:before,
|
|
div.spr .spr_edit a:hover:before,
|
|
.jezik_row .spr_edit a:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
li.spr .spr_edit a .arhiv,
|
|
div.spr .spr_edit a .arhiv,
|
|
.jezik_row .spr_edit a .arhiv {
|
|
background-position: -16px -30px;
|
|
}
|
|
li.spr .spr_edit a .hide,
|
|
div.spr .spr_edit a .hide,
|
|
.jezik_row .spr_edit a .hide {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom,
|
|
div.spr .spr_edit .scale_ordnom,
|
|
.jezik_row .spr_edit .scale_ordnom {
|
|
display: inline-block;
|
|
height: 24px;
|
|
padding-right: 16px;
|
|
vertical-align: 1px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom button,
|
|
div.spr .spr_edit .scale_ordnom button,
|
|
.jezik_row .spr_edit .scale_ordnom button {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
margin: 0;
|
|
height: 24px;
|
|
width: auto;
|
|
min-width: auto;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 15px;
|
|
color: #A9A9A9;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom button:first-child,
|
|
div.spr .spr_edit .scale_ordnom button:first-child,
|
|
.jezik_row .spr_edit .scale_ordnom button:first-child {
|
|
border-radius: 2px 0px 0px 2px;
|
|
border-right: 1px #1E88E5 solid !important;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom button:nth-child(2),
|
|
div.spr .spr_edit .scale_ordnom button:nth-child(2),
|
|
.jezik_row .spr_edit .scale_ordnom button:nth-child(2) {
|
|
border-radius: 0px 2px 2px 0px;
|
|
border-left: 0 !important;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom button.active, li.spr .spr_edit .scale_ordnom button:hover,
|
|
div.spr .spr_edit .scale_ordnom button.active,
|
|
div.spr .spr_edit .scale_ordnom button:hover,
|
|
.jezik_row .spr_edit .scale_ordnom button.active,
|
|
.jezik_row .spr_edit .scale_ordnom button:hover {
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
border-color: #1E88E5;
|
|
}
|
|
li.spr .spr_edit .scale_ordnom button.active,
|
|
div.spr .spr_edit .scale_ordnom button.active,
|
|
.jezik_row .spr_edit .scale_ordnom button.active {
|
|
cursor: default;
|
|
}
|
|
li.spr .spr_edit a.faicon.addif:before,
|
|
div.spr .spr_edit a.faicon.addif:before,
|
|
.jezik_row .spr_edit a.faicon.addif:before {
|
|
font-size: 18px;
|
|
}
|
|
li.spr .spr_edit a.faicon.addif.user_access_locked,
|
|
div.spr .spr_edit a.faicon.addif.user_access_locked,
|
|
.jezik_row .spr_edit a.faicon.addif.user_access_locked {
|
|
display: none;
|
|
}
|
|
li.spr .spremenljivka_content,
|
|
div.spr .spremenljivka_content,
|
|
.jezik_row .spremenljivka_content {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
color: #333333;
|
|
background-color: white;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
li.spr .spremenljivka_content:hover,
|
|
div.spr .spremenljivka_content:hover,
|
|
.jezik_row .spremenljivka_content:hover {
|
|
background-color: white;
|
|
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
|
|
}
|
|
li.spr .spremenljivka_content:hover .content_div_normalmode .add-variable,
|
|
div.spr .spremenljivka_content:hover .content_div_normalmode .add-variable,
|
|
.jezik_row .spremenljivka_content:hover .content_div_normalmode .add-variable {
|
|
visibility: visible;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings,
|
|
div.spr .spremenljivka_content .spremenljivka_settings,
|
|
.jezik_row .spremenljivka_content .spremenljivka_settings {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 45px;
|
|
padding-left: 12px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .variable_name,
|
|
div.spr .spremenljivka_content .spremenljivka_settings .variable_name,
|
|
.jezik_row .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,
|
|
div.spr .spremenljivka_content .spremenljivka_settings .spr_settings,
|
|
.jezik_row .spremenljivka_content .spremenljivka_settings .spr_settings {
|
|
display: flex;
|
|
margin-left: 16px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings span,
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings div,
|
|
div.spr .spremenljivka_content .spremenljivka_settings .spr_settings span,
|
|
div.spr .spremenljivka_content .spremenljivka_settings .spr_settings div,
|
|
.jezik_row .spremenljivka_content .spremenljivka_settings .spr_settings span,
|
|
.jezik_row .spremenljivka_content .spremenljivka_settings .spr_settings div {
|
|
height: 24px;
|
|
line-height: 24px;
|
|
margin-right: 8px;
|
|
padding: 0 8px;
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
background: #EEF7FF;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings .lock_holder,
|
|
div.spr .spremenljivka_content .spremenljivka_settings .spr_settings .lock_holder,
|
|
.jezik_row .spremenljivka_content .spremenljivka_settings .spr_settings .lock_holder {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 6px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form,
|
|
div.spr .spremenljivka_content .content_div_normalmode,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form {
|
|
position: relative;
|
|
padding: 16px 12px 24px 12px;
|
|
overflow: hidden;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .display_editor,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor,
|
|
div.spr .spremenljivka_content .content_div_normalmode .display_editor,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .display_editor,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .display_editor {
|
|
cursor: pointer;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 18px;
|
|
transition: 0.2s;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .display_editor::before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor::before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .display_editor::before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor::before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .display_editor::before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .display_editor::before {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .display_editor.show,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor.show,
|
|
div.spr .spremenljivka_content .content_div_normalmode .display_editor.show,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .display_editor.show,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .display_editor.show,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .display_editor.show {
|
|
visibility: visible;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .naslov,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .naslov,
|
|
div.spr .spremenljivka_content .content_div_normalmode .naslov,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .naslov,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .naslov,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .naslov {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
min-width: 100px;
|
|
padding: 4px 24px 4px 16px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .naslov p,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .naslov p,
|
|
div.spr .spremenljivka_content .content_div_normalmode .naslov p,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .naslov p,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .naslov p,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .naslov p {
|
|
padding: 0;
|
|
font-size: 16px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .opomba_holder,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .opomba_holder,
|
|
div.spr .spremenljivka_content .content_div_normalmode .opomba_holder,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .opomba_holder,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .opomba_holder,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .opomba_holder {
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .info_inline,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .info_inline,
|
|
div.spr .spremenljivka_content .content_div_normalmode .info_inline,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .info_inline,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .info_inline,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .info_inline {
|
|
box-sizing: border-box;
|
|
padding: 4px 16px;
|
|
margin-top: 4px;
|
|
font-size: 11px;
|
|
color: #A9A9A9;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .info_inline p,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .info_inline p,
|
|
div.spr .spremenljivka_content .content_div_normalmode .info_inline p,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .info_inline p,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .info_inline p,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .info_inline p {
|
|
padding: 0;
|
|
font-size: 11px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla:hover span.inline,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variabla:hover span.inline,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla:hover span.inline,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variabla:hover span.inline,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .variabla:hover span.inline,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variabla:hover span.inline {
|
|
visibility: visible !important;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .inline_move,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move {
|
|
cursor: pointer;
|
|
margin: -2px 8px 0 0;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:before {
|
|
color: rgba(30, 136, 229, 0.5);
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:hover:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:hover:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:hover:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:hover:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .inline_move:hover:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .inline_move:hover:before {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .enka-checkbox-radio:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .enka-checkbox-radio:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .enka-checkbox-radio:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .enka-checkbox-radio:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .enka-checkbox-radio:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .enka-checkbox-radio:before {
|
|
margin-right: 8px;
|
|
padding: 0 !important;
|
|
letter-spacing: 0 !important;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder span.inline,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder span.inline,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder span.inline,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder span.inline,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder span.inline,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder span.inline {
|
|
visibility: hidden;
|
|
cursor: pointer;
|
|
float: left;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:before, li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:after,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:after,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:after,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:after,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:after,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:after {
|
|
color: rgba(30, 136, 229, 0.5);
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:before, li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:after,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:after,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:after,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:after,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder .faicon:hover:after,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder .faicon:hover:after {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_edit,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_edit,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_edit,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_edit,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_edit,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_edit {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_delete,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_delete,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_delete,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_delete,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_delete,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_delete {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_not,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_not,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_not,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_not,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_not,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_not {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_follow,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_follow,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_follow,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_follow,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_if_follow,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_if_follow {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_hidden,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_hidden,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_hidden,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_hidden,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.inline_hidden,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.inline_hidden {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.correct,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.correct,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.correct,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.correct,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .icons_holder span.correct,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .icons_holder span.correct {
|
|
float: right;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variable_inline,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variable_inline,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .variable_inline,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variable_inline,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .variable_inline,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .variable_inline {
|
|
display: none;
|
|
width: 40px;
|
|
box-sizing: border-box;
|
|
margin-right: 4px;
|
|
padding: 4px 6px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .image_upload,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .image_upload,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .image_upload,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload {
|
|
margin-right: 4px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .image_upload:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .variable_holder .image_upload:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .variable_holder .image_upload:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .variable_holder .image_upload:before {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode div[contenteditable],
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable],
|
|
div.spr .spremenljivka_content .content_div_normalmode div[contenteditable],
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable],
|
|
.jezik_row .spremenljivka_content .content_div_normalmode div[contenteditable],
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form div[contenteditable] {
|
|
cursor: text;
|
|
min-height: 26px;
|
|
transition: 0.1s;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true],
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true],
|
|
div.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true],
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true],
|
|
.jezik_row .spremenljivka_content .content_div_normalmode div[contenteditable=true],
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true] {
|
|
border: 1px solid transparent;
|
|
border-radius: 2px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true]:hover,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:hover,
|
|
div.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true]:hover,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:hover,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode div[contenteditable=true]:hover,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:hover {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
outline: 0;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true]:focus,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:focus,
|
|
div.spr .spremenljivka_content .content_div_normalmode div[contenteditable=true]:focus,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:focus,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode div[contenteditable=true]:focus,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form div[contenteditable=true]:focus {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
outline: 0;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable-mobile,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable-mobile,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable-mobile,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable-mobile,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable-mobile,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable-mobile {
|
|
display: none;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
visibility: hidden;
|
|
margin-left: 16px;
|
|
margin-bottom: -10px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .faicon,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .faicon,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .faicon,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .faicon:before,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon:before,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .faicon:before,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon:before,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .faicon:before,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable a,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable a,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable a,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable a,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable a,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable a {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable a:hover,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable a:hover,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable a:hover,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable a:hover,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable a:hover,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable a:hover {
|
|
color: #0059ab;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_6,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_6,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_6,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_6,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .tip_6,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_6 {
|
|
left: 52px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_16,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_16,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_16,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_16,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .tip_16,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_16 {
|
|
left: 52px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_19,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_19,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_19,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_19,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .tip_19,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_19 {
|
|
left: 52px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_20,
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_20,
|
|
div.spr .spremenljivka_content .content_div_normalmode .add-variable .tip_20,
|
|
div.spr .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_20,
|
|
.jezik_row .spremenljivka_content .content_div_normalmode .add-variable .tip_20,
|
|
.jezik_row .spremenljivka_content .spremenljivka_tekst_form .add-variable .tip_20 {
|
|
left: 52px;
|
|
}
|
|
li.spr .spremenljivka_content .comment_container_inline,
|
|
div.spr .spremenljivka_content .comment_container_inline,
|
|
.jezik_row .spremenljivka_content .comment_container_inline {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
height: 32px;
|
|
margin: 0px;
|
|
padding: 0 16px;
|
|
background-color: #F8F8F8;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content .comment_container_inline button,
|
|
div.spr .spremenljivka_content .comment_container_inline button,
|
|
.jezik_row .spremenljivka_content .comment_container_inline button {
|
|
align-items: baseline;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
li.spr_editing .spr_edit,
|
|
li.spr_editing a.surveycomment,
|
|
div.spr_editing .spr_edit,
|
|
div.spr_editing a.surveycomment {
|
|
display: block;
|
|
}
|
|
li.spr_editing span.display_editor,
|
|
div.spr_editing span.display_editor {
|
|
visibility: visible !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content,
|
|
div.spr_editing .spremenljivka_content {
|
|
background-color: white;
|
|
border: 1px solid #1E88E5;
|
|
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings,
|
|
div.spr_editing .spremenljivka_content .spremenljivka_settings {
|
|
background-color: #FFFFFF !important;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr_editing .spremenljivka_content .add-variable,
|
|
div.spr_editing .spremenljivka_content .add-variable {
|
|
display: none !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content .comment_container_inline,
|
|
div.spr_editing .spremenljivka_content .comment_container_inline {
|
|
background-color: #FFFFFF;
|
|
}
|
|
li.spr_editing .content_div_normalmode,
|
|
div.spr_editing .content_div_normalmode {
|
|
padding-bottom: 10px;
|
|
}
|
|
li.spr_editing .grid-plus-minus,
|
|
div.spr_editing .grid-plus-minus {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing .sub-table,
|
|
div.spr_editing .sub-table {
|
|
display: table-row;
|
|
}
|
|
li.spr_editing div[contenteditable][default="1"],
|
|
div.spr_editing div[contenteditable][default="1"] {
|
|
color: #333333;
|
|
}
|
|
li.spr_editing div.spremenljivka_content.orientation_ob .variable_holder,
|
|
div.spr_editing div.spremenljivka_content.orientation_ob .variable_holder {
|
|
clear: both;
|
|
}
|
|
li.spr_editing div.spremenljivka_content.orientation_ob div.variabla,
|
|
div.spr_editing div.spremenljivka_content.orientation_ob div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr_editing div.preview_mode,
|
|
div.spr_editing div.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr_editing div.edit_mode,
|
|
div.spr_editing div.edit_mode {
|
|
display: block;
|
|
}
|
|
li.spr_editing td.preview_mode,
|
|
div.spr_editing td.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr_editing thead.edit_mode,
|
|
div.spr_editing thead.edit_mode {
|
|
display: table-header-group;
|
|
}
|
|
li.spr_editing .editingOnly,
|
|
div.spr_editing .editingOnly {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing div.spremenljivka_content.orientation_pod div.variabla,
|
|
div.spr_editing div.spremenljivka_content.orientation_pod div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr_editing div.stolpci,
|
|
div.spr_editing div.stolpci {
|
|
float: none;
|
|
width: auto !important;
|
|
}
|
|
li.spr_editing div.stolpci span.inline_delete,
|
|
div.spr_editing div.stolpci span.inline_delete {
|
|
display: block;
|
|
}
|
|
li.spr_editing div.stolpci span.inline_edit,
|
|
div.spr_editing div.stolpci span.inline_edit {
|
|
display: block;
|
|
}
|
|
li.spr_editing div.spremenljivka_content div.variabla span.inline,
|
|
div.spr_editing div.spremenljivka_content div.variabla span.inline {
|
|
visibility: visible !important;
|
|
}
|
|
li.spr_editing table.grid_header_table tr td span.inline,
|
|
div.spr_editing table.grid_header_table tr td span.inline {
|
|
visibility: visible !important;
|
|
}
|
|
|
|
/*
|
|
.editor_display {
|
|
width: 98%;
|
|
background-color: #eee;
|
|
border: 1px solid #cccccc;
|
|
border-bottom: 0;
|
|
}
|
|
.editor_display_small {
|
|
padding-left: 5px;
|
|
}
|
|
.spremenljivka {
|
|
width: 100%;
|
|
}
|
|
|
|
.locked {
|
|
.add-variable {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.icons_holder{
|
|
margin-top: 3px;
|
|
}
|
|
|
|
// Neaktiven element
|
|
li.spr{
|
|
|
|
|
|
|
|
.spremenljivka_content{
|
|
|
|
|
|
|
|
|
|
// Vsebina - uvod in zakljucek
|
|
.spremenljivka_tekst_form {
|
|
position: relative;
|
|
padding: 24px 32px 32px 32px;
|
|
|
|
.naslov {
|
|
display: block;
|
|
|
|
width: auto;
|
|
min-width: 100px;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
}
|
|
form {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
padding: 3px;
|
|
}
|
|
input {
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.grid_inline,
|
|
.vrednost_inline,
|
|
.naslov,
|
|
.info_inline{
|
|
box-sizing: border-box;
|
|
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
|
|
p{
|
|
padding: 0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
&.info_inline{
|
|
font-size: 11px;
|
|
|
|
p{
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
|
|
&.naslov{
|
|
padding: 4px 16px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
.variable_holder.clr {
|
|
height: auto;
|
|
}
|
|
div.spremenljivka_content.orientation_ob {
|
|
.variable_holder {
|
|
clear: none;
|
|
}
|
|
div.variabla {
|
|
clear: none;
|
|
}
|
|
}
|
|
div.spremenljivka_content {
|
|
h3 {
|
|
p {
|
|
padding: 3px 3px 3px 3px;
|
|
margin: 0;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
li.spr.spr_editing {
|
|
|
|
}
|
|
.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 {
|
|
div.spremenljivka_content {
|
|
div.variabla {
|
|
span.inline.show {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
span.inline_move {
|
|
margin: 2px 8px 0 3px;
|
|
}
|
|
span.image_upload {
|
|
margin-top: 4px;
|
|
margin-left: 8px;
|
|
margin-right: 4px;
|
|
float: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
table.text_vrednost {
|
|
text-align: center;
|
|
font-size: 10px;
|
|
|
|
tr td{
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.variable {
|
|
color: $gray;
|
|
font-weight: 500;
|
|
}*/
|
|
/*
|
|
Vrstice v urejanju vprasanja - vrednosti pri radio, checkboxu
|
|
*/
|
|
div.spr .variable_holder,
|
|
div.spremenljivka .variable_holder,
|
|
li.spr .variable_holder,
|
|
.jezik_left .variable_holder,
|
|
.jezik_right .variable_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 8px 0 0 0;
|
|
padding: 0px;
|
|
}
|
|
div.spr .variable_holder div.variabla,
|
|
div.spremenljivka .variable_holder div.variabla,
|
|
li.spr .variable_holder div.variabla,
|
|
.jezik_left .variable_holder div.variabla,
|
|
.jezik_right .variable_holder div.variabla {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
min-height: 20px;
|
|
margin: 0 0 4px 0;
|
|
}
|
|
div.spr .variable_holder div.variabla select,
|
|
div.spremenljivka .variable_holder div.variabla select,
|
|
li.spr .variable_holder div.variabla select,
|
|
.jezik_left .variable_holder div.variabla select,
|
|
.jezik_right .variable_holder div.variabla select {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
margin-top: 4px;
|
|
margin-right: 4px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
div.spr .variable_holder div.variabla select option,
|
|
div.spremenljivka .variable_holder div.variabla select option,
|
|
li.spr .variable_holder div.variabla select option,
|
|
.jezik_left .variable_holder div.variabla select option,
|
|
.jezik_right .variable_holder div.variabla select option {
|
|
color: #333333;
|
|
}
|
|
div.spr .variable_holder div.variabla select option:disabled,
|
|
div.spremenljivka .variable_holder div.variabla select option:disabled,
|
|
li.spr .variable_holder div.variabla select option:disabled,
|
|
.jezik_left .variable_holder div.variabla select option:disabled,
|
|
.jezik_right .variable_holder div.variabla select option:disabled {
|
|
color: #A0A0A0;
|
|
}
|
|
div.spr .variable_holder div.variabla .vrednost_inline,
|
|
div.spremenljivka .variable_holder div.variabla .vrednost_inline,
|
|
li.spr .variable_holder div.variabla .vrednost_inline,
|
|
.jezik_left .variable_holder div.variabla .vrednost_inline,
|
|
.jezik_right .variable_holder div.variabla .vrednost_inline {
|
|
box-sizing: border-box;
|
|
flex-grow: 1;
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
}
|
|
div.spr .variable_holder div.variabla .vrednost_inline p,
|
|
div.spremenljivka .variable_holder div.variabla .vrednost_inline p,
|
|
li.spr .variable_holder div.variabla .vrednost_inline p,
|
|
.jezik_left .variable_holder div.variabla .vrednost_inline p,
|
|
.jezik_right .variable_holder div.variabla .vrednost_inline p {
|
|
padding: 0;
|
|
font-size: 16px;
|
|
}
|
|
div.spr .variable_holder div.variabla[other="1"] .vrednost_inline,
|
|
div.spremenljivka .variable_holder div.variabla[other="1"] .vrednost_inline,
|
|
li.spr .variable_holder div.variabla[other="1"] .vrednost_inline,
|
|
.jezik_left .variable_holder div.variabla[other="1"] .vrednost_inline,
|
|
.jezik_right .variable_holder div.variabla[other="1"] .vrednost_inline {
|
|
max-width: 200px;
|
|
}
|
|
div.spr .variable_holder div.variabla[other="1"] input[type=text],
|
|
div.spremenljivka .variable_holder div.variabla[other="1"] input[type=text],
|
|
li.spr .variable_holder div.variabla[other="1"] input[type=text],
|
|
.jezik_left .variable_holder div.variabla[other="1"] input[type=text],
|
|
.jezik_right .variable_holder div.variabla[other="1"] input[type=text] {
|
|
max-width: 200px;
|
|
height: 28px;
|
|
margin: 0 0 0 8px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
div.spr .variable_holder div.variabla[other="1"] .icons_holder,
|
|
div.spremenljivka .variable_holder div.variabla[other="1"] .icons_holder,
|
|
li.spr .variable_holder div.variabla[other="1"] .icons_holder,
|
|
.jezik_left .variable_holder div.variabla[other="1"] .icons_holder,
|
|
.jezik_right .variable_holder div.variabla[other="1"] .icons_holder {
|
|
flex-grow: 1;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .vrednost_inline,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .vrednost_inline,
|
|
li.spr .variable_holder div.variabla#variabla_new .vrednost_inline,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .vrednost_inline,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .vrednost_inline {
|
|
color: #A9A9A9;
|
|
max-width: 200px;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .inline_other,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .inline_other,
|
|
li.spr .variable_holder div.variabla#variabla_new .inline_other,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .inline_other,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .inline_other {
|
|
margin: 0 32px 0 16px;
|
|
padding-left: 16px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .inline_other .faicon,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .inline_other .faicon,
|
|
li.spr .variable_holder div.variabla#variabla_new .inline_other .faicon,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .inline_other .faicon,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .inline_other .faicon {
|
|
margin-right: 4px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .inline_other:hover,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .inline_other:hover,
|
|
li.spr .variable_holder div.variabla#variabla_new .inline_other:hover,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .inline_other:hover,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .inline_other:hover {
|
|
color: #0059ab;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .inline_other:hover .faicon:before,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .inline_other:hover .faicon:before,
|
|
li.spr .variable_holder div.variabla#variabla_new .inline_other:hover .faicon:before,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .inline_other:hover .faicon:before,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .inline_other:hover .faicon:before {
|
|
color: #0059ab;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new .inline_move,
|
|
div.spr .variable_holder div.variabla#variabla_new .icons_holder .faicon,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .inline_move,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new .icons_holder .faicon,
|
|
li.spr .variable_holder div.variabla#variabla_new .inline_move,
|
|
li.spr .variable_holder div.variabla#variabla_new .icons_holder .faicon,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .inline_move,
|
|
.jezik_left .variable_holder div.variabla#variabla_new .icons_holder .faicon,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .inline_move,
|
|
.jezik_right .variable_holder div.variabla#variabla_new .icons_holder .faicon {
|
|
visibility: hidden !important;
|
|
}
|
|
div.spr .variable_holder div.variabla#variabla_new:hover .inline_move,
|
|
div.spr .variable_holder div.variabla#variabla_new:hover .icons_holder .faicon,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new:hover .inline_move,
|
|
div.spremenljivka .variable_holder div.variabla#variabla_new:hover .icons_holder .faicon,
|
|
li.spr .variable_holder div.variabla#variabla_new:hover .inline_move,
|
|
li.spr .variable_holder div.variabla#variabla_new:hover .icons_holder .faicon,
|
|
.jezik_left .variable_holder div.variabla#variabla_new:hover .inline_move,
|
|
.jezik_left .variable_holder div.variabla#variabla_new:hover .icons_holder .faicon,
|
|
.jezik_right .variable_holder div.variabla#variabla_new:hover .inline_move,
|
|
.jezik_right .variable_holder div.variabla#variabla_new:hover .icons_holder .faicon {
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
/*
|
|
Vrstice v urejanju vprasanja - vrednosti pri textih, stevilih
|
|
*/
|
|
li.spr_tip_4 .variable_holder,
|
|
li.spr_tip_7 .variable_holder,
|
|
li.spr_tip_8 .variable_holder,
|
|
li.spr_tip_21 .variable_holder,
|
|
div.spr_tip_4 .variable_holder,
|
|
div.spr_tip_7 .variable_holder,
|
|
div.spr_tip_8 .variable_holder,
|
|
div.spr_tip_21 .variable_holder,
|
|
div.jezik_row.tip_4 .variable_holder,
|
|
div.jezik_row.tip_7 .variable_holder,
|
|
div.jezik_row.tip_8 .variable_holder,
|
|
div.jezik_row.tip_21 .variable_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0 16px;
|
|
}
|
|
li.spr_tip_4 .variable_holder div.variabla,
|
|
li.spr_tip_7 .variable_holder div.variabla,
|
|
li.spr_tip_8 .variable_holder div.variabla,
|
|
li.spr_tip_21 .variable_holder div.variabla,
|
|
div.spr_tip_4 .variable_holder div.variabla,
|
|
div.spr_tip_7 .variable_holder div.variabla,
|
|
div.spr_tip_8 .variable_holder div.variabla,
|
|
div.spr_tip_21 .variable_holder div.variabla,
|
|
div.jezik_row.tip_4 .variable_holder div.variabla,
|
|
div.jezik_row.tip_7 .variable_holder div.variabla,
|
|
div.jezik_row.tip_8 .variable_holder div.variabla,
|
|
div.jezik_row.tip_21 .variable_holder div.variabla {
|
|
margin-right: 32px;
|
|
}
|
|
li.spr_tip_4 .variable_holder div.variabla .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder div.variabla .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder div.variabla .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder div.variabla .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder div.variabla .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder div.variabla .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder div.variabla .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder div.variabla .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder div.variabla .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder div.variabla .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder div.variabla .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder div.variabla .vrednost_inline {
|
|
flex-grow: 0;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost,
|
|
li.spr_tip_7 .variable_holder .text_vrednost,
|
|
li.spr_tip_8 .variable_holder .text_vrednost,
|
|
li.spr_tip_21 .variable_holder .text_vrednost,
|
|
div.spr_tip_4 .variable_holder .text_vrednost,
|
|
div.spr_tip_7 .variable_holder .text_vrednost,
|
|
div.spr_tip_8 .variable_holder .text_vrednost,
|
|
div.spr_tip_21 .variable_holder .text_vrednost,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 8px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question:last-child,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question:last-child,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question:last-child,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question:last-child,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question:last-child {
|
|
margin-right: 0;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question .vrednost_inline {
|
|
box-sizing: border-box;
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question textarea,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question textarea,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question textarea,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question textarea,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question textarea {
|
|
height: auto;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_0 .vrednost_inline {
|
|
display: none;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text], li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple input[type=text],
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_0.multiple textarea {
|
|
width: 90% !important;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_1,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_1,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_1,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_1,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_1 {
|
|
flex-direction: row;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_1 .vrednost_inline {
|
|
margin-right: 4px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_2,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_2 {
|
|
flex-direction: column-reverse;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_2 .vrednost_inline {
|
|
margin-top: 4px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text], li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple input[type=text],
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_2.multiple textarea {
|
|
width: 90% !important;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_3,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_3 {
|
|
flex-direction: column;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_3 .vrednost_inline {
|
|
margin-bottom: 4px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text], li.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
li.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
li.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
li.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.spr_tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.spr_tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.spr_tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.spr_tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple input[type=text],
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost .grid_question.position_3.multiple textarea {
|
|
width: 90% !important;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost.orientation_3,
|
|
li.spr_tip_7 .variable_holder .text_vrednost.orientation_3,
|
|
li.spr_tip_8 .variable_holder .text_vrednost.orientation_3,
|
|
li.spr_tip_21 .variable_holder .text_vrednost.orientation_3,
|
|
div.spr_tip_4 .variable_holder .text_vrednost.orientation_3,
|
|
div.spr_tip_7 .variable_holder .text_vrednost.orientation_3,
|
|
div.spr_tip_8 .variable_holder .text_vrednost.orientation_3,
|
|
div.spr_tip_21 .variable_holder .text_vrednost.orientation_3,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost.orientation_3,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost.orientation_3,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost.orientation_3,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost.orientation_3 {
|
|
flex-direction: column;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
li.spr_tip_7 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
li.spr_tip_8 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
li.spr_tip_21 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.spr_tip_4 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.spr_tip_7 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.spr_tip_8 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.spr_tip_21 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost.orientation_3 .grid_question,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost.orientation_3 .grid_question {
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .variabla_limit,
|
|
li.spr_tip_7 .variable_holder .variabla_limit,
|
|
li.spr_tip_8 .variable_holder .variabla_limit,
|
|
li.spr_tip_21 .variable_holder .variabla_limit,
|
|
div.spr_tip_4 .variable_holder .variabla_limit,
|
|
div.spr_tip_7 .variable_holder .variabla_limit,
|
|
div.spr_tip_8 .variable_holder .variabla_limit,
|
|
div.spr_tip_21 .variable_holder .variabla_limit,
|
|
div.jezik_row.tip_4 .variable_holder .variabla_limit,
|
|
div.jezik_row.tip_7 .variable_holder .variabla_limit,
|
|
div.jezik_row.tip_8 .variable_holder .variabla_limit,
|
|
div.jezik_row.tip_21 .variable_holder .variabla_limit {
|
|
padding: 0;
|
|
margin-top: 8px;
|
|
color: red;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .text_vrednost_missing,
|
|
li.spr_tip_7 .variable_holder .text_vrednost_missing,
|
|
li.spr_tip_8 .variable_holder .text_vrednost_missing,
|
|
li.spr_tip_21 .variable_holder .text_vrednost_missing,
|
|
div.spr_tip_4 .variable_holder .text_vrednost_missing,
|
|
div.spr_tip_7 .variable_holder .text_vrednost_missing,
|
|
div.spr_tip_8 .variable_holder .text_vrednost_missing,
|
|
div.spr_tip_21 .variable_holder .text_vrednost_missing,
|
|
div.jezik_row.tip_4 .variable_holder .text_vrednost_missing,
|
|
div.jezik_row.tip_7 .variable_holder .text_vrednost_missing,
|
|
div.jezik_row.tip_8 .variable_holder .text_vrednost_missing,
|
|
div.jezik_row.tip_21 .variable_holder .text_vrednost_missing {
|
|
margin-top: 8px;
|
|
}
|
|
li.spr_tip_4 .variable_holder .icons_holder,
|
|
li.spr_tip_7 .variable_holder .icons_holder,
|
|
li.spr_tip_8 .variable_holder .icons_holder,
|
|
li.spr_tip_21 .variable_holder .icons_holder,
|
|
div.spr_tip_4 .variable_holder .icons_holder,
|
|
div.spr_tip_7 .variable_holder .icons_holder,
|
|
div.spr_tip_8 .variable_holder .icons_holder,
|
|
div.spr_tip_21 .variable_holder .icons_holder,
|
|
div.jezik_row.tip_4 .variable_holder .icons_holder,
|
|
div.jezik_row.tip_7 .variable_holder .icons_holder,
|
|
div.jezik_row.tip_8 .variable_holder .icons_holder,
|
|
div.jezik_row.tip_21 .variable_holder .icons_holder {
|
|
position: absolute;
|
|
right: 12px;
|
|
}
|
|
li.spr_tip_4 .variable_holder input[type=text],
|
|
li.spr_tip_7 .variable_holder input[type=text],
|
|
li.spr_tip_8 .variable_holder input[type=text],
|
|
li.spr_tip_21 .variable_holder input[type=text],
|
|
div.spr_tip_4 .variable_holder input[type=text],
|
|
div.spr_tip_7 .variable_holder input[type=text],
|
|
div.spr_tip_8 .variable_holder input[type=text],
|
|
div.spr_tip_21 .variable_holder input[type=text],
|
|
div.jezik_row.tip_4 .variable_holder input[type=text],
|
|
div.jezik_row.tip_7 .variable_holder input[type=text],
|
|
div.jezik_row.tip_8 .variable_holder input[type=text],
|
|
div.jezik_row.tip_21 .variable_holder input[type=text] {
|
|
box-sizing: border-box;
|
|
padding: 12px 8px;
|
|
margin: 0;
|
|
color: #808080;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla:first-child,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla:first-child {
|
|
margin-left: 0;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla_limit, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost .variabla_limit,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost .variabla_limit {
|
|
min-width: 50px;
|
|
margin: 0 0 0 4px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_1 .vrednost_inline,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_1 .vrednost_inline {
|
|
margin-right: 4px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline, li.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .number_vrednost.enota_2 .vrednost_inline,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .number_vrednost.enota_2 .vrednost_inline {
|
|
margin-left: 4px;
|
|
}
|
|
li.spr_tip_4.spr_tip_7 .variable_holder .calendar_icon:before, li.spr_tip_4.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_7.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_8.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_21.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_4.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_7.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_8.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_21.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_4.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_7.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_8.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_21.spr_tip_7 .variable_holder .calendar_icon:before,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .calendar_icon:before {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr_tip_4.spr_tip_8 .variable_holder .variabla input,
|
|
li.spr_tip_7.spr_tip_8 .variable_holder .variabla input,
|
|
li.spr_tip_8.spr_tip_8 .variable_holder .variabla input,
|
|
li.spr_tip_21.spr_tip_8 .variable_holder .variabla input,
|
|
div.spr_tip_4.spr_tip_8 .variable_holder .variabla input,
|
|
div.spr_tip_7.spr_tip_8 .variable_holder .variabla input,
|
|
div.spr_tip_8.spr_tip_8 .variable_holder .variabla input,
|
|
div.spr_tip_21.spr_tip_8 .variable_holder .variabla input,
|
|
div.jezik_row.tip_4.spr_tip_8 .variable_holder .variabla input,
|
|
div.jezik_row.tip_7.spr_tip_8 .variable_holder .variabla input,
|
|
div.jezik_row.tip_8.spr_tip_8 .variable_holder .variabla input,
|
|
div.jezik_row.tip_21.spr_tip_8 .variable_holder .variabla input {
|
|
width: 160px;
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
/*
|
|
Tabele v urejanju vprasanja - vrednosti pri tabelah
|
|
*/
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder {
|
|
overflow-x: auto;
|
|
margin-top: 0;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table {
|
|
margin-top: 4px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td {
|
|
border: 0;
|
|
padding: 4px 8px;
|
|
text-align: center;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus {
|
|
display: none;
|
|
justify-content: flex-end;
|
|
/*.faicon{
|
|
margin-right: 8px;
|
|
}*/
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-plus-minus span,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-plus-minus span {
|
|
margin-left: 8px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid-subtable-edit,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid-subtable-edit {
|
|
display: none;
|
|
justify-content: center;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline {
|
|
flex-grow: 1;
|
|
box-sizing: border-box;
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline p {
|
|
padding: 0;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .grid_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .vrednost_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_variable_inline.grid_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .grid_inline.grid_variable_inline {
|
|
font-weight: 600;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th .enka-checkbox-radio:before,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td .enka-checkbox-radio:before {
|
|
margin: 0 !important;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question {
|
|
display: flex;
|
|
align-items: center;
|
|
width: auto !important;
|
|
text-align: left;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text],
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question input[type=text],
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question input[type=text] {
|
|
width: auto;
|
|
height: 28px;
|
|
margin: 0 0 0 8px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #C4C4C4;
|
|
border-radius: 2px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 12px;
|
|
/*span.inline_delete {
|
|
margin: 0px;
|
|
}
|
|
span.inline_hidden {
|
|
margin-right: 8px;
|
|
}
|
|
span.correct {
|
|
margin-right: 8px;
|
|
}
|
|
span.inline_if_not {
|
|
margin-right: 8px;
|
|
}
|
|
span.inline_if_follow {
|
|
margin-right: 8px;
|
|
}
|
|
span.inline_edit {
|
|
margin-right: 8px;
|
|
} */
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_question .icons_holder span,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_question .icons_holder span {
|
|
margin: 0 8px 0 0;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double {
|
|
width: 0px;
|
|
padding: 0;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.spacer.double.no-border,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.spacer.double.no-border {
|
|
border-left: 0;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th.grid_header.double,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td.grid_header.double {
|
|
padding: 8px 14px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr th textarea,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr td textarea {
|
|
height: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle {
|
|
height: auto;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td {
|
|
padding-bottom: 0;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline {
|
|
box-sizing: border-box;
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_subtitle td .grid_subtitle_inline p {
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline {
|
|
height: auto;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr.row_variable_inline td {
|
|
padding-bottom: 0;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .vrednost_inline {
|
|
color: #A9A9A9;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other {
|
|
display: flex;
|
|
margin: 0 0 0 16px;
|
|
padding-left: 16px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other .faicon {
|
|
margin-right: 4px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover {
|
|
color: #0059ab;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before,
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tr#variabla_new .inline_other:hover .faicon:before {
|
|
color: #0059ab;
|
|
}
|
|
li.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
li.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
li.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
li.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
li.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.spr_tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.spr_tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.spr_tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.spr_tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.spr_tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.jezik_row.tip_6 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.jezik_row.tip_16 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.jezik_row.tip_19 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.jezik_row.tip_20 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1),
|
|
div.jezik_row.tip_24 .spremenljivka_content .content_div_normalmode .variable_holder table tbody tr:nth-child(2n+1) {
|
|
background-color: #F8F8F8;
|
|
}
|
|
li.spr_tip_6.spr_editing .grid-plus-minus,
|
|
li.spr_tip_6.spr_editing .grid-subtable-edit,
|
|
li.spr_tip_16.spr_editing .grid-plus-minus,
|
|
li.spr_tip_16.spr_editing .grid-subtable-edit,
|
|
li.spr_tip_19.spr_editing .grid-plus-minus,
|
|
li.spr_tip_19.spr_editing .grid-subtable-edit,
|
|
li.spr_tip_20.spr_editing .grid-plus-minus,
|
|
li.spr_tip_20.spr_editing .grid-subtable-edit,
|
|
li.spr_tip_24.spr_editing .grid-plus-minus,
|
|
li.spr_tip_24.spr_editing .grid-subtable-edit,
|
|
div.spr_tip_6.spr_editing .grid-plus-minus,
|
|
div.spr_tip_6.spr_editing .grid-subtable-edit,
|
|
div.spr_tip_16.spr_editing .grid-plus-minus,
|
|
div.spr_tip_16.spr_editing .grid-subtable-edit,
|
|
div.spr_tip_19.spr_editing .grid-plus-minus,
|
|
div.spr_tip_19.spr_editing .grid-subtable-edit,
|
|
div.spr_tip_20.spr_editing .grid-plus-minus,
|
|
div.spr_tip_20.spr_editing .grid-subtable-edit,
|
|
div.spr_tip_24.spr_editing .grid-plus-minus,
|
|
div.spr_tip_24.spr_editing .grid-subtable-edit,
|
|
div.jezik_row.tip_6.spr_editing .grid-plus-minus,
|
|
div.jezik_row.tip_6.spr_editing .grid-subtable-edit,
|
|
div.jezik_row.tip_16.spr_editing .grid-plus-minus,
|
|
div.jezik_row.tip_16.spr_editing .grid-subtable-edit,
|
|
div.jezik_row.tip_19.spr_editing .grid-plus-minus,
|
|
div.jezik_row.tip_19.spr_editing .grid-subtable-edit,
|
|
div.jezik_row.tip_20.spr_editing .grid-plus-minus,
|
|
div.jezik_row.tip_20.spr_editing .grid-subtable-edit,
|
|
div.jezik_row.tip_24.spr_editing .grid-plus-minus,
|
|
div.jezik_row.tip_24.spr_editing .grid-subtable-edit {
|
|
display: flex !important;
|
|
}
|
|
li.spr_tip_6.spr_tip_24 .variable_holder, li.spr_tip_6.spr_tip_24 .variable_holder, li.spr_tip_6.jezik_row.tip_24 .variable_holder,
|
|
li.spr_tip_16.spr_tip_24 .variable_holder,
|
|
li.spr_tip_16.spr_tip_24 .variable_holder,
|
|
li.spr_tip_16.jezik_row.tip_24 .variable_holder,
|
|
li.spr_tip_19.spr_tip_24 .variable_holder,
|
|
li.spr_tip_19.spr_tip_24 .variable_holder,
|
|
li.spr_tip_19.jezik_row.tip_24 .variable_holder,
|
|
li.spr_tip_20.spr_tip_24 .variable_holder,
|
|
li.spr_tip_20.spr_tip_24 .variable_holder,
|
|
li.spr_tip_20.jezik_row.tip_24 .variable_holder,
|
|
li.spr_tip_24.spr_tip_24 .variable_holder,
|
|
li.spr_tip_24.spr_tip_24 .variable_holder,
|
|
li.spr_tip_24.jezik_row.tip_24 .variable_holder,
|
|
div.spr_tip_6.spr_tip_24 .variable_holder,
|
|
div.spr_tip_6.spr_tip_24 .variable_holder,
|
|
div.spr_tip_6.jezik_row.tip_24 .variable_holder,
|
|
div.spr_tip_16.spr_tip_24 .variable_holder,
|
|
div.spr_tip_16.spr_tip_24 .variable_holder,
|
|
div.spr_tip_16.jezik_row.tip_24 .variable_holder,
|
|
div.spr_tip_19.spr_tip_24 .variable_holder,
|
|
div.spr_tip_19.spr_tip_24 .variable_holder,
|
|
div.spr_tip_19.jezik_row.tip_24 .variable_holder,
|
|
div.spr_tip_20.spr_tip_24 .variable_holder,
|
|
div.spr_tip_20.spr_tip_24 .variable_holder,
|
|
div.spr_tip_20.jezik_row.tip_24 .variable_holder,
|
|
div.spr_tip_24.spr_tip_24 .variable_holder,
|
|
div.spr_tip_24.spr_tip_24 .variable_holder,
|
|
div.spr_tip_24.jezik_row.tip_24 .variable_holder,
|
|
div.jezik_row.tip_6.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_6.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_6.jezik_row.tip_24 .variable_holder,
|
|
div.jezik_row.tip_16.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_16.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_16.jezik_row.tip_24 .variable_holder,
|
|
div.jezik_row.tip_19.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_19.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_19.jezik_row.tip_24 .variable_holder,
|
|
div.jezik_row.tip_20.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_20.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_20.jezik_row.tip_24 .variable_holder,
|
|
div.jezik_row.tip_24.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_24.spr_tip_24 .variable_holder,
|
|
div.jezik_row.tip_24.jezik_row.tip_24 .variable_holder {
|
|
overflow-x: auto;
|
|
}
|
|
li.spr_tip_6.spr_tip_24 table tr td.col_border, li.spr_tip_6.spr_tip_24 table tr td.col_border, li.spr_tip_6.jezik_row.tip_24 table tr td.col_border,
|
|
li.spr_tip_16.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_16.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_16.jezik_row.tip_24 table tr td.col_border,
|
|
li.spr_tip_19.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_19.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_19.jezik_row.tip_24 table tr td.col_border,
|
|
li.spr_tip_20.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_20.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_20.jezik_row.tip_24 table tr td.col_border,
|
|
li.spr_tip_24.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_24.spr_tip_24 table tr td.col_border,
|
|
li.spr_tip_24.jezik_row.tip_24 table tr td.col_border,
|
|
div.spr_tip_6.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_6.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_6.jezik_row.tip_24 table tr td.col_border,
|
|
div.spr_tip_16.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_16.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_16.jezik_row.tip_24 table tr td.col_border,
|
|
div.spr_tip_19.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_19.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_19.jezik_row.tip_24 table tr td.col_border,
|
|
div.spr_tip_20.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_20.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_20.jezik_row.tip_24 table tr td.col_border,
|
|
div.spr_tip_24.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_24.spr_tip_24 table tr td.col_border,
|
|
div.spr_tip_24.jezik_row.tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_6.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_6.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_6.jezik_row.tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_16.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_16.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_16.jezik_row.tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_19.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_19.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_19.jezik_row.tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_20.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_20.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_20.jezik_row.tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_24.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_24.spr_tip_24 table tr td.col_border,
|
|
div.jezik_row.tip_24.jezik_row.tip_24 table tr td.col_border {
|
|
border-left: 1px #E5E5E5 solid !important;
|
|
}
|
|
li.spr_tip_6.spr_tip_24 table tr td:first-child, li.spr_tip_6.spr_tip_24 table tr td:first-child, li.spr_tip_6.jezik_row.tip_24 table tr td:first-child,
|
|
li.spr_tip_16.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_16.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_16.jezik_row.tip_24 table tr td:first-child,
|
|
li.spr_tip_19.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_19.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_19.jezik_row.tip_24 table tr td:first-child,
|
|
li.spr_tip_20.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_20.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_20.jezik_row.tip_24 table tr td:first-child,
|
|
li.spr_tip_24.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_24.spr_tip_24 table tr td:first-child,
|
|
li.spr_tip_24.jezik_row.tip_24 table tr td:first-child,
|
|
div.spr_tip_6.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_6.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_6.jezik_row.tip_24 table tr td:first-child,
|
|
div.spr_tip_16.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_16.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_16.jezik_row.tip_24 table tr td:first-child,
|
|
div.spr_tip_19.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_19.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_19.jezik_row.tip_24 table tr td:first-child,
|
|
div.spr_tip_20.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_20.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_20.jezik_row.tip_24 table tr td:first-child,
|
|
div.spr_tip_24.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_24.spr_tip_24 table tr td:first-child,
|
|
div.spr_tip_24.jezik_row.tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_6.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_6.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_6.jezik_row.tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_16.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_16.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_16.jezik_row.tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_19.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_19.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_19.jezik_row.tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_20.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_20.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_20.jezik_row.tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_24.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_24.spr_tip_24 table tr td:first-child,
|
|
div.jezik_row.tip_24.jezik_row.tip_24 table tr td:first-child {
|
|
width: 270px !important;
|
|
}
|
|
li.spr_tip_6.spr_tip_24 table tr.variabla td input[type=text], li.spr_tip_6.spr_tip_24 table tr.variabla td input[type=text], li.spr_tip_6.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_16.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_19.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_20.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
li.spr_tip_24.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_6.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_6.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_6.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_16.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_19.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_20.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.spr_tip_24.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_6.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_6.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_6.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_16.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_16.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_19.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_19.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_20.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_20.jezik_row.tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_24.spr_tip_24 table tr.variabla td input[type=text],
|
|
div.jezik_row.tip_24.jezik_row.tip_24 table tr.variabla td input[type=text] {
|
|
margin: 0;
|
|
max-width: 100px;
|
|
}
|
|
|
|
.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, 12:52:29
|
|
Author : podkrizniku
|
|
*/
|
|
.slider {
|
|
display: inline-block;
|
|
width: 84.5%;
|
|
background-color: #F2F2F2 !important;
|
|
}
|
|
.slider .ui-state-default {
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
.slider .ui-state-hover {
|
|
border: 1px solid #C4C4C4 !important;
|
|
}
|
|
.slider a {
|
|
transition: none !important;
|
|
}
|
|
|
|
.sliderText {
|
|
visibility: hidden;
|
|
position: relative;
|
|
width: 30px;
|
|
height: 15px;
|
|
padding: 3px;
|
|
margin-top: 7px;
|
|
text-align: center;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
background: #F2F2F2;
|
|
-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: #F2F2F2 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: #F2F2F2 !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: #F2F2F2 !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;
|
|
}
|
|
|
|
.ui-slider-label {
|
|
font-size: 14px;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
}
|
|
|
|
/*
|
|
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:02:29
|
|
Author : podkrizniku
|
|
*/
|
|
.variabla_vsota {
|
|
width: calc(100% - 150px);
|
|
text-align: right;
|
|
}
|
|
.variabla_vsota .icons_holder {
|
|
position: absolute;
|
|
right: 12px;
|
|
}
|
|
.variabla_vsota input {
|
|
box-sizing: border-box;
|
|
width: 150px;
|
|
margin-left: 8px;
|
|
padding: 6px 8px;
|
|
color: #a9a9a9;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
.variabla_vsota .vrednost_inline_vsota {
|
|
word-break: break-all;
|
|
flex-grow: 0 !important;
|
|
}
|
|
.variabla_vsota#variabla_new #vre_id_new {
|
|
max-width: none;
|
|
}
|
|
.variabla_vsota .variabla_vsota_inline {
|
|
word-break: break-all;
|
|
box-sizing: border-box;
|
|
flex-grow: 1;
|
|
padding: 4px 6px;
|
|
margin-left: 15px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Zadnja vrsticas pri urejanju vsote - "skupaj" */
|
|
.variabla_vsota.sum {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.variabla_vsota.sum .vrednost_inline_vsota {
|
|
padding: 4px 6px;
|
|
font-size: 14px;
|
|
}
|
|
.variabla_vsota.sum .variabla_vsota_border {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 12px;
|
|
width: calc(40% + 165px);
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
display: block;
|
|
}
|
|
|
|
.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
|
|
*/
|
|
li.spr_tip_17 .variable_holder .ranking_holder,
|
|
div.spr_tip_17 .variable_holder .ranking_holder,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder {
|
|
/*radio with image*/
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 {
|
|
display: flex;
|
|
margin-top: 8px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half {
|
|
width: 50%;
|
|
padding-right: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla {
|
|
margin-bottom: 16px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla:last-child,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla:last-child,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
flex-grow: 1;
|
|
width: calc(100% - 120px);
|
|
max-width: 250px;
|
|
min-height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 0 auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking img,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking img,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
max-width: 250px;
|
|
max-height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 0 auto;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long img,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long img,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half .variabla .ranking_long img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half2 {
|
|
width: 49%;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame {
|
|
box-sizing: border-box;
|
|
width: 250px;
|
|
height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 16px auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
text-indent: -24px;
|
|
text-align: left;
|
|
background-color: #F8F8F8;
|
|
border: 1px dashed #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame:last-child,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame:last-child,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_0 #half2 .ranking_frame:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_1 .icons_holder,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_1 .icons_holder,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_1 .icons_holder {
|
|
position: absolute;
|
|
right: 12px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_2,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_2,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_2 {
|
|
margin-top: 8px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_2 .variabla {
|
|
margin-bottom: 16px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .icons_holder,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .icons_holder,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_2 .variabla .icons_holder {
|
|
position: absolute;
|
|
right: 12px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
flex-grow: 0;
|
|
width: calc(100% - 120px);
|
|
max-width: 250px;
|
|
min-height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 0 auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking img,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking img,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_2 .variabla .ranking img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder.design_3 .icons_holder,
|
|
div.spr_tip_17 .variable_holder .ranking_holder.design_3 .icons_holder,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder.design_3 .icons_holder {
|
|
position: absolute;
|
|
right: 12px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .dragdrop_frame,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .dragdrop_frame,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .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;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .inline_labele_podrocij,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .inline_labele_podrocij,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .inline_labele_podrocij {
|
|
text-align: center !important;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder table.inline_labele_podrocij td,
|
|
div.spr_tip_17 .variable_holder .ranking_holder table.inline_labele_podrocij td,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder table.inline_labele_podrocij td {
|
|
text-align: center !important;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .custom_radio .custom_radio_answer,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .custom_radio .custom_radio_answer,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .custom_radio .custom_radio_answer {
|
|
padding: 0 1px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale .custom_radio_answer,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale .custom_radio_answer,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale .custom_radio_answer {
|
|
padding: 0 3px;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before {
|
|
color: #1E88E5;
|
|
}
|
|
li.spr_tip_17 .variable_holder .ranking_holder .enka-vizualna-skala,
|
|
div.spr_tip_17 .variable_holder .ranking_holder .enka-vizualna-skala,
|
|
div.jezik_row.tip_17 .variable_holder .ranking_holder .enka-vizualna-skala {
|
|
display: inline-block;
|
|
height: 20px;
|
|
width: 20px;
|
|
float: left;
|
|
}
|
|
|
|
li.spr_tip_6 .variable_holder .ranking_holder,
|
|
div.spr_tip_6 .variable_holder .ranking_holder,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder,
|
|
li.spr_tip_16 .variable_holder .ranking_holder,
|
|
div.spr_tip_16 .variable_holder .ranking_holder,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder {
|
|
display: flex;
|
|
margin-top: 16px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half {
|
|
width: 50%;
|
|
padding-right: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla {
|
|
margin-bottom: 16px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla:last-child,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla:last-child,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla:last-child,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla:last-child,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla:last-child,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla .ranking,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla .ranking {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
flex-grow: 1;
|
|
width: calc(100% - 120px);
|
|
max-width: 250px;
|
|
min-height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 0 auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking img,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking img,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla .ranking img,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking img,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking img,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla .ranking img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long {
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
max-width: 250px;
|
|
max-height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 0 auto;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long img,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long img,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half .variabla .ranking_long img,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long img,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long img,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half .variabla .ranking_long img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 {
|
|
width: 49%;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title {
|
|
box-sizing: border-box;
|
|
width: 250px;
|
|
min-height: 36px;
|
|
height: auto;
|
|
padding: 8px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
border: 1px dashed #E5E5E5;
|
|
border-bottom: 0;
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid {
|
|
box-sizing: border-box;
|
|
width: 250px;
|
|
height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto 16px auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #F8F8F8;
|
|
border: 1px dashed #E5E5E5;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 .dragdrop_frame_grid_box {
|
|
box-sizing: border-box;
|
|
width: 250px;
|
|
height: 36px;
|
|
padding: 8px;
|
|
margin: 0 auto;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #FFFFFF;
|
|
border: 1px dashed #C4C4C4;
|
|
border-top: 0;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 .grid_inline_droppable_title_box {
|
|
box-sizing: border-box;
|
|
width: 250px;
|
|
min-height: 36px;
|
|
height: auto;
|
|
padding: 8px;
|
|
margin: 0 auto 16px auto;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
border: 0;
|
|
}
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
li.spr_tip_6 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
div.spr_tip_6 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
div.jezik_row.tip_6 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
li.spr_tip_16 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
div.spr_tip_16 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 li:last-child .grid_inline_droppable_title_box,
|
|
div.jezik_row.tip_16 .variable_holder .ranking_holder #half2 li:last-child .dragdrop_frame_grid {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/*
|
|
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
|
|
*/
|
|
#branching li.if,
|
|
#branching li.block,
|
|
#branching li.loop {
|
|
display: flex;
|
|
}
|
|
#branching li.if .if_remove,
|
|
#branching li.block .if_remove,
|
|
#branching li.loop .if_remove {
|
|
display: none;
|
|
z-index: 5;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
#branching li.if .if_remove a,
|
|
#branching li.block .if_remove a,
|
|
#branching li.loop .if_remove a {
|
|
margin-left: 16px;
|
|
}
|
|
#branching li.if .if_remove .faicon:before,
|
|
#branching li.block .if_remove .faicon:before,
|
|
#branching li.loop .if_remove .faicon:before {
|
|
line-height: 28px;
|
|
font-size: 16px;
|
|
}
|
|
#branching li.if .pm.faicon,
|
|
#branching li.block .pm.faicon,
|
|
#branching li.loop .pm.faicon {
|
|
padding: 3px 8px 0 0;
|
|
margin-left: -20px;
|
|
}
|
|
#branching li.if .if_content,
|
|
#branching li.block .if_content,
|
|
#branching li.loop .if_content {
|
|
width: 100%;
|
|
}
|
|
#branching li.if .if_content strong,
|
|
#branching li.block .if_content strong,
|
|
#branching li.loop .if_content strong {
|
|
font-weight: 600;
|
|
}
|
|
#branching li.if .if_content span.conditions_display,
|
|
#branching li.block .if_content span.conditions_display,
|
|
#branching li.loop .if_content span.conditions_display {
|
|
cursor: pointer;
|
|
display: block;
|
|
line-height: 28px;
|
|
}
|
|
#branching li.if .if_content .clr_if,
|
|
#branching li.if .if_content .clr_bl,
|
|
#branching li.if .if_content .clr_lp,
|
|
#branching li.block .if_content .clr_if,
|
|
#branching li.block .if_content .clr_bl,
|
|
#branching li.block .if_content .clr_lp,
|
|
#branching li.loop .if_content .clr_if,
|
|
#branching li.loop .if_content .clr_bl,
|
|
#branching li.loop .if_content .clr_lp {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
#branching li.if .if_content .colorif,
|
|
#branching li.if .if_content .colorblock,
|
|
#branching li.if .if_content .colorif,
|
|
#branching li.block .if_content .colorif,
|
|
#branching li.block .if_content .colorblock,
|
|
#branching li.block .if_content .colorif,
|
|
#branching li.loop .if_content .colorif,
|
|
#branching li.loop .if_content .colorblock,
|
|
#branching li.loop .if_content .colorif {
|
|
color: #1E88E5;
|
|
font-weight: 400;
|
|
}
|
|
#branching li.if .if_warning,
|
|
#branching li.block .if_warning,
|
|
#branching li.loop .if_warning {
|
|
margin-left: 16px;
|
|
color: #FF0000;
|
|
font-size: 14px;
|
|
}
|
|
#branching li.if .if_warning span.faicon,
|
|
#branching li.block .if_warning span.faicon,
|
|
#branching li.loop .if_warning span.faicon {
|
|
margin-right: 4px;
|
|
}
|
|
#branching li.if .if_warning span.faicon:before,
|
|
#branching li.block .if_warning span.faicon:before,
|
|
#branching li.loop .if_warning span.faicon:before {
|
|
color: #FF0000;
|
|
font-size: 14px;
|
|
}
|
|
#branching li.if:hover div.if_remove,
|
|
#branching li.block:hover div.if_remove,
|
|
#branching li.loop:hover div.if_remove {
|
|
display: block;
|
|
}
|
|
#branching li.if.if_editing div.if_remove,
|
|
#branching li.block.if_editing div.if_remove,
|
|
#branching li.loop.if_editing div.if_remove {
|
|
display: block;
|
|
padding: 10px 12px;
|
|
}
|
|
#branching li.if.if_editing .if_content,
|
|
#branching li.block.if_editing .if_content,
|
|
#branching li.loop.if_editing .if_content {
|
|
padding: 12px;
|
|
background-color: #EEF7FF;
|
|
border: 1px #CCE4F9 solid;
|
|
border-left: 1px #1E88E5 solid;
|
|
border-radius: 1px 2px 2px 1px;
|
|
}
|
|
#branching li.endif:hover,
|
|
#branching li.endblock:hover,
|
|
#branching li.endloop:hover,
|
|
#branching li.inout:hover {
|
|
cursor: pointer;
|
|
}
|
|
#branching li.endif .clr_if,
|
|
#branching li.endif .clr_bl,
|
|
#branching li.endif .clr_lp,
|
|
#branching li.endblock .clr_if,
|
|
#branching li.endblock .clr_bl,
|
|
#branching li.endblock .clr_lp,
|
|
#branching li.endloop .clr_if,
|
|
#branching li.endloop .clr_bl,
|
|
#branching li.endloop .clr_lp,
|
|
#branching li.inout .clr_if,
|
|
#branching li.inout .clr_bl,
|
|
#branching li.inout .clr_lp {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
#branching li.endif .colorif,
|
|
#branching li.endif .colorblock,
|
|
#branching li.endif .colorif,
|
|
#branching li.endblock .colorif,
|
|
#branching li.endblock .colorblock,
|
|
#branching li.endblock .colorif,
|
|
#branching li.endloop .colorif,
|
|
#branching li.endloop .colorblock,
|
|
#branching li.endloop .colorif,
|
|
#branching li.inout .colorif,
|
|
#branching li.inout .colorblock,
|
|
#branching li.inout .colorif {
|
|
color: #1E88E5;
|
|
font-weight: 400;
|
|
}
|
|
#branching li.endif_editing {
|
|
padding: 12px;
|
|
background-color: #EEF7FF;
|
|
border: 1px #CCE4F9 solid;
|
|
border-left: 1px #1E88E5 solid;
|
|
border-radius: 1px 2px 2px 1px;
|
|
}
|
|
#branching ul.if_editing div.spr,
|
|
#branching ul.if_editing li.spr,
|
|
#branching ul.if_editing li.if,
|
|
#branching ul.if_editing li.endif,
|
|
#branching ul.if_editing li.block,
|
|
#branching ul.if_editing li.endblock,
|
|
#branching ul.if_editing li.loop,
|
|
#branching ul.if_editing li.endloop {
|
|
border-left: 1px #1E88E5 solid;
|
|
}
|
|
#branching #div_condition_editing_float {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -389px;
|
|
width: 325px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #CCE4F9;
|
|
border-radius: 2px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_header {
|
|
height: 45px;
|
|
padding: 0 7px;
|
|
margin-bottom: 16px;
|
|
color: #333333;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 45px;
|
|
text-transform: uppercase;
|
|
background-color: #EEF7FF;
|
|
border-bottom: 1px solid #CCE4F9;
|
|
}
|
|
#branching #div_condition_editing_float .condition_header .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_header .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit {
|
|
margin: 0 12px;
|
|
background-color: white;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-top: 1px solid #D3D3D3;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit fieldset legend {
|
|
margin: 0;
|
|
padding: 0 10px 0 0;
|
|
color: #333333;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
text-transform: none;
|
|
background-color: transparent;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 8px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder.space_bottom {
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder.space_bottom .condition_setting_line {
|
|
margin-top: 0px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: left;
|
|
min-height: 20px;
|
|
margin-top: 8px;
|
|
line-height: 20px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half {
|
|
justify-content: space-between;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half label {
|
|
width: 50%;
|
|
margin: 0;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half .content {
|
|
width: 50%;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half .content input[type=text],
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half .content input[type=number],
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half .content select,
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.half-half .content textarea {
|
|
width: 100%;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.with-icon span {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.with-icon span:hover {
|
|
color: #0059ab;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.with-icon span:hover .faicon::before {
|
|
color: #0059ab;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.with-icon .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .condition_setting_holder .condition_setting_line.with-icon .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 18px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit p,
|
|
#branching #div_condition_editing_float .condition_edit span,
|
|
#branching #div_condition_editing_float .condition_edit label {
|
|
line-height: 20px;
|
|
color: #333333;
|
|
font-size: 14px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit .jquery-selectbox {
|
|
background-color: white;
|
|
background: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit select {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
padding: 0 8px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit input[type=text],
|
|
#branching #div_condition_editing_float .condition_edit input[type=number] {
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
height: 30px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit textarea {
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
min-height: 30px;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
#branching #div_condition_editing_float .button_holder {
|
|
flex-direction: column;
|
|
margin: 0 16px 10px 16px;
|
|
padding-top: 8px;
|
|
border-top: 1px #D3D3D3 solid;
|
|
}
|
|
#branching #div_condition_editing_float .button_holder button {
|
|
margin-bottom: 8px;
|
|
}
|
|
#branching #div_condition_editing_float .button_holder button:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder {
|
|
margin: 0 16px;
|
|
padding: 16px 0;
|
|
border-top: 1px #D3D3D3 solid;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div {
|
|
cursor: pointer;
|
|
margin-bottom: 16px;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
transition: 0.2s;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div:hover {
|
|
color: #0059ab;
|
|
}
|
|
#branching #div_condition_editing_float .remove_condition_holder div:hover .faicon:before {
|
|
color: #0059ab;
|
|
}
|
|
#branching span.IF_title_start {
|
|
font-weight: 900;
|
|
color: #1E88E5;
|
|
margin-right: 8px;
|
|
}
|
|
#branching span.IF_title {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
#branching span.IF_title_line {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
border-top: 1px solid #C4C4C4;
|
|
}
|
|
#branching select.spremenljivka_select option {
|
|
max-width: 500px;
|
|
}
|
|
#branching .condition {
|
|
position: relative;
|
|
left: -21px;
|
|
}
|
|
#branching span.endif {
|
|
position: relative;
|
|
left: -29px;
|
|
font-weight: bold;
|
|
}
|
|
#branching .error_display {
|
|
display: block;
|
|
line-height: 24px;
|
|
}
|
|
#branching .tbl_ce_bck_blue {
|
|
background-color: #1E88E5;
|
|
}
|
|
#branching .tbl_ce_lol {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
#branching .tbl_ce_tb {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
#branching .tbl_ce_lor {
|
|
border-top: 1px solid #E5E5E5;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
#branching .endif a.surveycomment {
|
|
padding-right: 15px;
|
|
font-size: 10px;
|
|
}
|
|
#branching .endblock a.surveycomment {
|
|
padding-right: 15px;
|
|
font-size: 10px;
|
|
}
|
|
#branching #condition_editing_bottom_placeholder {
|
|
display: block;
|
|
height: 1px;
|
|
margin-bottom: 15px;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
|
|
#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: 8px 0;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#div_condition_editing_inner .condition_editing_body,
|
|
#div_condition_editing_inner .quota_editing_body,
|
|
#div_condition_editing_inner .calculation_editing_body,
|
|
#quota_editing_inner .condition_editing_body,
|
|
#quota_editing_inner .quota_editing_body,
|
|
#quota_editing_inner .calculation_editing_body,
|
|
#calculation_editing_inner .condition_editing_body,
|
|
#calculation_editing_inner .quota_editing_body,
|
|
#calculation_editing_inner .calculation_editing_body {
|
|
max-height: 70vh;
|
|
overflow-y: auto;
|
|
margin: 32px 0 0 0;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row.conjunction,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row.conjunction,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row.conjunction,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row.conjunction,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row.conjunction,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row.conjunction,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row.conjunction,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row.conjunction,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row.conjunction {
|
|
padding-left: 22px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .move_holder,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .move_holder,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .move_holder,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .move_holder,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .move_holder,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .move_holder,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .move_holder,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .move_holder,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .move_holder {
|
|
cursor: pointer;
|
|
margin-right: 12px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .move_holder .faicon:before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .move_holder .faicon:before {
|
|
font-size: 20px;
|
|
color: #1E88E5;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 32px 0;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder span,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder label,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder span,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder label,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder span,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder label,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder span,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder label,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder span,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder label,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder span,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder label,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder span,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder label,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder span,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder label,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder span,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder label {
|
|
font-size: 14px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column {
|
|
display: flex;
|
|
align-items: baseline;
|
|
padding: 0 16px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket {
|
|
flex-direction: column;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-evenly;
|
|
width: 100%;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_icons .faicon.icon-grey_normal:before {
|
|
line-height: 22px;
|
|
color: #808080;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.bracket .bracket_text {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.variable,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.variable {
|
|
flex-direction: column;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator {
|
|
flex-grow: 1;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a {
|
|
margin-right: 32px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select.operator,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a.operator {
|
|
width: 50px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a[type=text] {
|
|
width: 100px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost input .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost select .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost a .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek input .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek select .faicon.edit,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek a .faicon.edit {
|
|
margin-left: 8px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span {
|
|
display: flex;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value span:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value label:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value span:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value label:last-child,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value span:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio::before {
|
|
color: #777777;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .fill_vrednost .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .edit_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .white_holder .column.operator .ostanek .preview_fill_value input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio::before {
|
|
color: #1E88E5;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .delete_holder,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .delete_holder,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .delete_holder,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .delete_holder,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .delete_holder,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .delete_holder,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .delete_holder,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .delete_holder,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .delete_holder {
|
|
margin-left: 12px;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row .delete_holder .faicon:before,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row .delete_holder .faicon:before {
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row select,
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row select,
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row select,
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row select,
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row select,
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row select,
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row select,
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row select,
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row select {
|
|
margin: 0;
|
|
width: auto;
|
|
}
|
|
#div_condition_editing_inner .condition_editing_body .condition_editing_row input[type=text],
|
|
#div_condition_editing_inner .quota_editing_body .condition_editing_row input[type=text],
|
|
#div_condition_editing_inner .calculation_editing_body .condition_editing_row input[type=text],
|
|
#quota_editing_inner .condition_editing_body .condition_editing_row input[type=text],
|
|
#quota_editing_inner .quota_editing_body .condition_editing_row input[type=text],
|
|
#quota_editing_inner .calculation_editing_body .condition_editing_row input[type=text],
|
|
#calculation_editing_inner .condition_editing_body .condition_editing_row input[type=text],
|
|
#calculation_editing_inner .quota_editing_body .condition_editing_row input[type=text],
|
|
#calculation_editing_inner .calculation_editing_body .condition_editing_row input[type=text] {
|
|
margin: 0;
|
|
width: auto;
|
|
}
|
|
#div_condition_editing_inner .div_condition_bottom,
|
|
#div_condition_editing_inner .div_quota_bottom,
|
|
#div_condition_editing_inner .div_calculation_bottom,
|
|
#quota_editing_inner .div_condition_bottom,
|
|
#quota_editing_inner .div_quota_bottom,
|
|
#quota_editing_inner .div_calculation_bottom,
|
|
#calculation_editing_inner .div_condition_bottom,
|
|
#calculation_editing_inner .div_quota_bottom,
|
|
#calculation_editing_inner .div_calculation_bottom {
|
|
margin: 8px 0 0 22px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
#div_condition_editing_inner .div_condition_bottom.loop_bottom,
|
|
#div_condition_editing_inner .div_quota_bottom.loop_bottom,
|
|
#div_condition_editing_inner .div_calculation_bottom.loop_bottom,
|
|
#quota_editing_inner .div_condition_bottom.loop_bottom,
|
|
#quota_editing_inner .div_quota_bottom.loop_bottom,
|
|
#quota_editing_inner .div_calculation_bottom.loop_bottom,
|
|
#calculation_editing_inner .div_condition_bottom.loop_bottom,
|
|
#calculation_editing_inner .div_quota_bottom.loop_bottom,
|
|
#calculation_editing_inner .div_calculation_bottom.loop_bottom {
|
|
margin: 12px 0 0 0;
|
|
}
|
|
|
|
.comment_inline {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
/*
|
|
Knjiznica v urejanju ankete
|
|
*/
|
|
.library_popup {
|
|
padding: 0;
|
|
}
|
|
.library_popup h2 {
|
|
padding: 16px 0 8px 0;
|
|
}
|
|
.library_popup h2 .faicon {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.lib_tabs {
|
|
display: flex;
|
|
}
|
|
.lib_tabs .tab {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 50%;
|
|
height: 40px;
|
|
margin-top: -16px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
.lib_tabs .tab.active {
|
|
color: #1E88E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.tab_content {
|
|
display: flex;
|
|
}
|
|
.tab_content .content_left {
|
|
width: 300px;
|
|
height: 540px;
|
|
max-height: 540px;
|
|
overflow-y: auto;
|
|
padding: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.tab_content .content_left > ul {
|
|
margin-left: 0 !important;
|
|
}
|
|
.tab_content .content_left ul {
|
|
margin: 0 0 0 16px;
|
|
padding: 0;
|
|
}
|
|
.tab_content .content_left ul li.folder_item {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
width: 100%;
|
|
padding: 0 8px;
|
|
margin-bottom: 8px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .faicon.arrow:before {
|
|
content: "";
|
|
}
|
|
.tab_content .content_left ul li.folder_item .faicon.folder:before,
|
|
.tab_content .content_left ul li.folder_item .faicon.clipboard:before {
|
|
font-weight: 400;
|
|
color: #D3D3D3;
|
|
}
|
|
.tab_content .content_left ul li.folder_item.active {
|
|
border-color: #1E88E5;
|
|
background-color: #F8F8F8;
|
|
}
|
|
.tab_content .content_left ul li.folder_item.active .faicon.folder:before,
|
|
.tab_content .content_left ul li.folder_item.active .faicon.clipboard:before {
|
|
font-weight: 600;
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_left ul li.folder_item.open .faicon.arrow:before {
|
|
content: "";
|
|
}
|
|
.tab_content .content_left ul li.folder_item.no_arrow .faicon.arrow:before {
|
|
display: none;
|
|
}
|
|
.tab_content .content_left ul li.folder_item.droppable_folder.drag-hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
.tab_content .content_left ul li.folder_item:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.tab_content .content_left ul li.folder_item:hover .dots_ver {
|
|
display: block;
|
|
}
|
|
.tab_content .content_left ul li.folder_item span {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_child_count {
|
|
font-size: 12px;
|
|
color: #777777;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .dots_ver {
|
|
display: none;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 7px 8px;
|
|
margin-right: 0;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .dots_ver.active {
|
|
display: block !important;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
position: absolute;
|
|
z-index: 9999;
|
|
right: 0;
|
|
top: 38px;
|
|
border-radius: 2px;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings a {
|
|
text-decoration: none;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li {
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.tab_content .content_left ul li.folder_item .folder_item_settings ul li:hover {
|
|
color: #0059ab;
|
|
}
|
|
.tab_content .content_right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 760px;
|
|
}
|
|
.tab_content .content_right .folder_title {
|
|
margin-bottom: 16px;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
.tab_content .content_right .folder_title .faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .folder_title .faicon:before {
|
|
font-size: 18px;
|
|
}
|
|
.tab_content .content_right .question_list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 440px;
|
|
max-height: 440px;
|
|
overflow-y: auto;
|
|
padding: 16px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.tab_content .content_right .question_list .spacer {
|
|
margin-top: 8px;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
min-height: 36px;
|
|
max-width: 100%;
|
|
width: 710px;
|
|
padding: 0 16px;
|
|
margin: 0 0 8px 0;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title.active {
|
|
border-color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title.active .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title span {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.tab_content .content_right .question_list .survey_title span.faicon:before {
|
|
color: #D3D3D3;
|
|
}
|
|
.tab_content .content_right .question_list .survey_questions {
|
|
display: none;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder,
|
|
.tab_content .content_right .question_list .folder_item_holder {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder.active .question_item_info,
|
|
.tab_content .content_right .question_list .folder_item_holder.active .question_item_info {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder > label,
|
|
.tab_content .content_right .question_list .folder_item_holder > label {
|
|
margin-right: 8px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder > label:before,
|
|
.tab_content .content_right .question_list .folder_item_holder > label:before {
|
|
letter-spacing: 0;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: 36px;
|
|
max-width: 100%;
|
|
width: 705px;
|
|
padding: 0 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info.folder_item_info,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info.folder_item_info,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info.folder_item_info,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info.folder_item_info {
|
|
width: 730px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info:hover,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info:hover .monitor,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info:hover .monitor,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info:hover .monitor,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info:hover .monitor {
|
|
display: block;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info span,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info span,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info span,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info span {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info span.faicon,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info span.faicon,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info span.faicon,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info span.faicon {
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_type,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_type,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_type,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_type {
|
|
text-transform: uppercase;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .dots_ver,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .dots_ver {
|
|
display: none;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 7px 8px;
|
|
margin-right: 0;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .dots_ver:before,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .dots_ver:before,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .dots_ver:before,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .dots_ver:before {
|
|
color: #333333;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .dots_ver.active,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .dots_ver.active,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .dots_ver.active,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .dots_ver.active {
|
|
display: block;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .monitor,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .monitor,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .monitor,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .monitor {
|
|
display: none;
|
|
position: absolute;
|
|
right: 22px;
|
|
padding: 7px 8px;
|
|
margin-right: 0;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .folder_empty:before,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .folder_empty:before,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .folder_empty:before,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .folder_empty:before {
|
|
color: #D3D3D3;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
position: absolute;
|
|
z-index: 9999;
|
|
right: 0;
|
|
top: 35px;
|
|
border-radius: 2px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings a,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings a,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings a,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings a {
|
|
text-decoration: none;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li:last-of-type,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li:last-of-type,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li:last-of-type,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li span,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li span,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li span,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li span:hover,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li span:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li span:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li {
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.tab_content .content_right .question_list .question_item_holder .question_item_info .item_settings ul li:hover,
|
|
.tab_content .content_right .question_list .question_item_holder .folder_item_info .item_settings ul li:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info .item_settings ul li:hover,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info .item_settings ul li:hover {
|
|
color: #0059ab;
|
|
}
|
|
.tab_content .content_right .selected_items {
|
|
align-self: flex-end;
|
|
margin: 16px 16px 8px 0;
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_right .button_holder {
|
|
margin: 0 16px 16px 0;
|
|
}
|
|
|
|
#lib_additional_popup {
|
|
z-index: 9999;
|
|
position: absolute !important;
|
|
top: 40%;
|
|
left: calc(50% - 200px);
|
|
width: 400px;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
}
|
|
#lib_additional_popup input[type=text] {
|
|
width: 100%;
|
|
}
|
|
|
|
.add_to_lib_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.add_to_lib_content input {
|
|
height: 40px;
|
|
width: 100%;
|
|
margin: 4px 0 16px 0;
|
|
padding: 10px;
|
|
}
|
|
.add_to_lib_content select {
|
|
height: 40px;
|
|
width: 100%;
|
|
margin: 4px 0 0 0;
|
|
padding: 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 : 10-Aug-2018, 12:45:26
|
|
Author : podkrizniku
|
|
*/
|
|
.ui-resizable {
|
|
position: relative;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
.ui-resizable-handle {
|
|
position: absolute;
|
|
font-size: 0.1px;
|
|
z-index: 99999;
|
|
display: block;
|
|
}
|
|
|
|
.ui-resizable-disabled .ui-resizable-handle {
|
|
display: none;
|
|
}
|
|
|
|
.ui-resizable-autohide .ui-resizable-handle {
|
|
display: none;
|
|
}
|
|
|
|
.ui-resizable-n {
|
|
cursor: n-resize;
|
|
height: 7px;
|
|
width: 100%;
|
|
top: -5px;
|
|
left: 0px;
|
|
}
|
|
|
|
.ui-resizable-s {
|
|
cursor: s-resize;
|
|
height: 7px;
|
|
width: 100%;
|
|
bottom: -5px;
|
|
left: 0px;
|
|
}
|
|
|
|
.ui-resizable-e {
|
|
cursor: e-resize;
|
|
width: 7px;
|
|
right: -5px;
|
|
top: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.ui-resizable-w {
|
|
cursor: w-resize;
|
|
width: 7px;
|
|
left: -5px;
|
|
top: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.ui-resizable-se {
|
|
cursor: se-resize;
|
|
width: 12px;
|
|
height: 12px;
|
|
right: 1px;
|
|
bottom: 1px;
|
|
}
|
|
|
|
.ui-resizable-sw {
|
|
cursor: sw-resize;
|
|
width: 9px;
|
|
height: 9px;
|
|
left: -5px;
|
|
bottom: -5px;
|
|
}
|
|
|
|
.ui-resizable-nw {
|
|
cursor: nw-resize;
|
|
width: 9px;
|
|
height: 9px;
|
|
left: -5px;
|
|
top: -5px;
|
|
}
|
|
|
|
.ui-resizable-ne {
|
|
cursor: ne-resize;
|
|
width: 9px;
|
|
height: 9px;
|
|
right: -5px;
|
|
top: -5px;
|
|
}
|
|
|
|
.ui-datepicker-trigger {
|
|
cursor: pointer;
|
|
margin-left: 7px;
|
|
padding: 0px;
|
|
color: #1E88E5;
|
|
border: none;
|
|
background: none;
|
|
}
|
|
.ui-datepicker-trigger:hover {
|
|
color: #0059ab;
|
|
}
|
|
|
|
/* canvas.mapster_el {
|
|
top: 15px !important;
|
|
}
|
|
img.mapster_el {
|
|
position: absolute;
|
|
top: 15px !important;
|
|
} */
|
|
.jquery-selectbox {
|
|
cursor: pointer;
|
|
padding: 0 0 0 8px !important;
|
|
height: 30px !important;
|
|
width: 100% !important;
|
|
font-size: 12px !important;
|
|
color: #333333 !important;
|
|
background-color: #FFFFFF;
|
|
border: 1px #D3D3D3 solid !important;
|
|
border-radius: 4px 0px 0px 4px;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-currentItem {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
font-size: 12px !important;
|
|
line-height: 30px !important;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-moreButton {
|
|
font-family: "Font Awesome 5 Free";
|
|
height: 18px !important;
|
|
width: 15px !important;
|
|
background-image: none !important;
|
|
background-color: #FFFFFF !important;
|
|
border-radius: 4px;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-moreButton::before {
|
|
content: "";
|
|
padding-left: 2px;
|
|
color: #333333;
|
|
font-size: 10px;
|
|
font-weight: 900;
|
|
line-height: 30px;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-list {
|
|
top: 27px !important;
|
|
min-width: 180px;
|
|
padding: 0 !important;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-list .jquery-selectbox-item {
|
|
padding: 8px 8px !important;
|
|
margin: 0 !important;
|
|
line-height: 14px !important;
|
|
font-size: 12px !important;
|
|
border-radius: 4px;
|
|
}
|
|
.jquery-selectbox .jquery-selectbox-list .jquery-selectbox-item.listelementhover {
|
|
cursor: pointer;
|
|
color: #FFFFFF !important;
|
|
background-color: #777777;
|
|
}
|
|
|
|
.top_center_settings {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 20px;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
.top_center_settings .left_settings,
|
|
.top_center_settings .right_settings {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.top_center_settings .left_settings .button,
|
|
.top_center_settings .right_settings .button {
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
padding: 5px 16px;
|
|
font-size: 14px;
|
|
margin-right: 8px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
.top_center_settings .left_settings .button.border_blue,
|
|
.top_center_settings .right_settings .button.border_blue {
|
|
border-color: #1E88E5;
|
|
}
|
|
.top_center_settings .left_settings .button span.faicon,
|
|
.top_center_settings .right_settings .button span.faicon {
|
|
font-size: 14px;
|
|
margin-right: 8px;
|
|
transition: 0.2s;
|
|
}
|
|
.top_center_settings .left_settings .button span.faicon.left,
|
|
.top_center_settings .right_settings .button span.faicon.left {
|
|
margin: 0 0 0 8px;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder,
|
|
.top_center_settings .right_settings #top_napredne_holder {
|
|
position: relative;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown {
|
|
position: absolute;
|
|
z-index: 99;
|
|
width: auto;
|
|
padding: 8px 0;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
top: 32px;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option {
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
padding: 5px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
transition: 0.2s;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option:hover,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help),
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help),
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help),
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help) {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help) .faicon,
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help) .faicon,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help) .faicon,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help) .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help) .faicon:before,
|
|
.top_center_settings .left_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help) .faicon:before,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:not(.help) .faicon:before,
|
|
.top_center_settings .right_settings #top_napredne_holder #top_napredne_dropdown .segment_option a:hover:not(.help) .faicon:before {
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.top_center_settings .left_settings .square,
|
|
.top_center_settings .right_settings .square {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 2px;
|
|
border: 1px solid #E5E5E5;
|
|
color: #777777;
|
|
background-color: #FFFFFF;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.top_center_settings .left_settings .square.active,
|
|
.top_center_settings .right_settings .square.active {
|
|
border-color: #1E88E5;
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
}
|
|
.top_center_settings .left_settings .line,
|
|
.top_center_settings .right_settings .line {
|
|
border-left: 1px solid #D3D3D3;
|
|
margin: 0 8px;
|
|
height: 28px;
|
|
}
|
|
|
|
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: text;
|
|
}
|
|
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;
|
|
}
|
|
|
|
.buttons-window.displayNone {
|
|
display: none;
|
|
}
|
|
|
|
.faicon.dots {
|
|
cursor: pointer;
|
|
color: #1e88e5;
|
|
}
|
|
|
|
div.page_tema h2 {
|
|
font-size: 24px;
|
|
margin-top: 32px;
|
|
margin-bottom: 16px;
|
|
font-weight: 300;
|
|
}
|
|
div.page_tema h2.first {
|
|
margin-top: 0;
|
|
}
|
|
div.page_tema h2 span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
div.page_tema div.theme_list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 10px 16px;
|
|
margin-bottom: 16px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
}
|
|
div.page_tema div.theme_list:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_tema div.theme_list.active_theme {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
div.page_tema div.theme_list div.theme span.name {
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
}
|
|
div.page_tema div.theme_list div.theme span.desc {
|
|
color: #777777;
|
|
margin-left: 6px;
|
|
}
|
|
div.page_tema div.theme_list div.options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
position: relative;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
max-width: 113px;
|
|
box-shadow: 0px 0px 7px 0px #0000001F;
|
|
border-radius: 2px;
|
|
margin-right: 5px;
|
|
background-color: #FFFF;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window .button {
|
|
border: none;
|
|
margin: 8px 0px;
|
|
padding: 0px 16px;
|
|
text-align: center;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window .button .faicon {
|
|
vertical-align: middle;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window .button:first-of-type {
|
|
margin-top: 16px;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window .button:last-of-type {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_tema div.theme_list div.options div.buttons-window.active {
|
|
display: block;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button {
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
height: 28px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 7px 12px;
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button:last-child {
|
|
margin-right: 0px;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button span.faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
background-color: unset;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button span.faicon:hover {
|
|
color: #0059AB;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
div.page_tema div.div_theme_group.custom {
|
|
display: none;
|
|
}
|
|
div.page_tema div#theme_grid_holder {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0px 32px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
grid-gap: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
@media (max-width: 1380px) {
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 1180px) {
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 980px) {
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 780px) {
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 480px) {
|
|
div.page_tema div#theme_grid_holder div.div_theme_group {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label {
|
|
width: 259px;
|
|
max-height: 265px;
|
|
box-sizing: border-box;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #F8F8F8;
|
|
padding: 14px 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_content {
|
|
max-height: 169px;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_content button {
|
|
padding: 0px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_content img {
|
|
display: block;
|
|
clear: both;
|
|
width: 100%;
|
|
border: none;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_content span.theme_name {
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
margin-top: 16px;
|
|
margin-bottom: 2px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options span.theme_name {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options span.theme_name .privzeto {
|
|
text-transform: capitalize;
|
|
margin-left: 5px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button {
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
box-sizing: border-box;
|
|
height: 28px;
|
|
width: fit-content;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 7px 6px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button span.faicon {
|
|
margin: 0;
|
|
color: #1E88E5;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button span.faicon:hover {
|
|
color: #0059AB;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button.wtext {
|
|
padding: 7px 12px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button.wtext span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label.span_theme_current {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
|
|
div#theme-edit-wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
gap: 32px;
|
|
width: 100%;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor {
|
|
min-height: 600px;
|
|
width: 50%;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor h2 {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor h2 span.name {
|
|
text-transform: none;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor h3 {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
overflow: hidden;
|
|
margin-bottom: 16px;
|
|
margin-top: 24px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor h3:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-right: -100%;
|
|
margin-left: 8px;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor h3:first-of-type {
|
|
margin-top: 16px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor input#skin-name {
|
|
width: 319px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.setting_holder.bottom8 {
|
|
margin-bottom: 8px !important;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.setting_holder .setting_item {
|
|
margin-top: 8px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 80%;
|
|
font-size: 14px !important;
|
|
gap: 32px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box > a {
|
|
position: absolute;
|
|
right: -18px;
|
|
top: 28px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box > a .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box select,
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box input,
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box div.input_box {
|
|
width: 99px;
|
|
height: 32px;
|
|
font-size: 14px;
|
|
padding: 7px 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box option {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box div.input_box {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
margin-top: 4px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box div.input_box a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.columns div.setting_box div.input_box a span.faicon {
|
|
margin-left: 8px;
|
|
font-size: inherit;
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
position: fixed;
|
|
left: 500px;
|
|
z-index: 999;
|
|
border-radius: 2px;
|
|
box-shadow: 0px 0px 7px 0px #0000001F;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker h2,
|
|
div#theme-edit-wrap div#theme-editor #picker .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker h2 span.faicon,
|
|
div#theme-edit-wrap div#theme-editor #picker h2 span.fa-brands,
|
|
div#theme-edit-wrap div#theme-editor #picker .divPopUp_top span.faicon,
|
|
div#theme-edit-wrap div#theme-editor #picker .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker h2 span.faicon:before,
|
|
div#theme-edit-wrap div#theme-editor #picker h2 span.fa-brands:before,
|
|
div#theme-edit-wrap div#theme-editor #picker .divPopUp_top span.faicon:before,
|
|
div#theme-edit-wrap div#theme-editor #picker .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker p {
|
|
line-height: 20px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_note,
|
|
div#theme-edit-wrap div#theme-editor #picker .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left .list .list-item.active, div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .setting_line label,
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .settings_block label,
|
|
div#theme-edit-wrap div#theme-editor #picker .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor #picker.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
div#theme-edit-wrap div#theme-editor div.button_holder {
|
|
margin-top: 24px;
|
|
margin-bottom: 0;
|
|
width: 100%;
|
|
border-top: 1px solid #E5E5E5;
|
|
padding-top: 16px;
|
|
}
|
|
div#theme-edit-wrap div#theme-preview {
|
|
min-height: 600px;
|
|
border: 1px solid #E5E5E5;
|
|
width: 50%;
|
|
}
|
|
div#theme-edit-wrap div#theme-preview iframe {
|
|
width: 100%;
|
|
height: 600px;
|
|
border: none;
|
|
}
|
|
div#theme-edit-wrap div#theme-preview iframe #preview {
|
|
display: none;
|
|
}
|
|
div#theme-edit-wrap textarea#css_content {
|
|
width: 100%;
|
|
height: 510px;
|
|
font-family: "Courier";
|
|
font-size: 14px;
|
|
}
|
|
div#theme-edit-wrap div.button_holder.css_edit {
|
|
margin-top: 32px !important;
|
|
margin-bottom: 0 !important;
|
|
border: none !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
fieldset#theme-upload h2 {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
margin-block-start: 0;
|
|
}
|
|
fieldset#theme-upload h2 span.name {
|
|
text-transform: none;
|
|
}
|
|
|
|
.fa-desktop {
|
|
color: #0059AB;
|
|
}
|
|
|
|
fieldset.comments legend span {
|
|
font-size: 14px;
|
|
text-transform: none;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
}
|
|
fieldset.comments p.indent {
|
|
margin-left: 26px;
|
|
}
|
|
fieldset.comments div.indent {
|
|
margin-left: 29px;
|
|
}
|
|
fieldset.comments div.links {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
fieldset.comments div.links div.button {
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
padding: 5px 16px;
|
|
font-size: 14px;
|
|
margin-right: 16px;
|
|
cursor: pointer;
|
|
}
|
|
fieldset.comments div.links div.button.border_blue {
|
|
border-color: #1E88E5;
|
|
}
|
|
fieldset.comments div.links div.button span.faicon {
|
|
font-size: 14px;
|
|
margin-right: 8px;
|
|
}
|
|
fieldset.comments textarea {
|
|
width: 587px;
|
|
height: 174px;
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset.comments .top0 {
|
|
margin-top: 0;
|
|
}
|
|
fieldset.comments div.setting_holder.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
fieldset.comments div.setting_holder.horizontal .setting_title {
|
|
margin-right: 20px;
|
|
}
|
|
fieldset.comments div.setting_holder.horizontal .setting_item {
|
|
margin-top: 0;
|
|
}
|
|
fieldset.comments div.setting_holder.horizontal .setting_item .dropdown {
|
|
margin-top: 0;
|
|
margin-right: 32px;
|
|
width: 210px;
|
|
}
|
|
fieldset.comments div.setting_holder.horizontal .setting_item input {
|
|
margin-top: 0;
|
|
}
|
|
|
|
div#komentarji_napredno fieldset:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div#komentarji_napredno p.delete_comments {
|
|
margin: 16px 0 32px 0;
|
|
font-size: 14px;
|
|
}
|
|
div#komentarji_napredno p.delete_comments span.faicon {
|
|
font-size: inherit;
|
|
}
|
|
|
|
#missing_value_table td input {
|
|
border-radius: 4px;
|
|
height: 26px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
#missing_value_table td input.mv_value_input {
|
|
width: 64px;
|
|
}
|
|
#missing_value_table td input.mv_text_input {
|
|
width: 215px;
|
|
}
|
|
#missing_value_table td span.faicon {
|
|
font-size: 20px;
|
|
}
|
|
|
|
table#standard_words_table td {
|
|
font-size: 14px;
|
|
}
|
|
table#standard_words_table td div.standardna-beseda {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 300px;
|
|
}
|
|
table#standard_words_table td div.standardna-beseda div.standardna-beseda-urejanje {
|
|
display: block;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
padding: 4px 8px;
|
|
width: 92%;
|
|
min-height: 32px;
|
|
}
|
|
table#standard_words_table td div.standardna-beseda div.standardna-beseda-urejanje:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
table#standard_words_table td div.standardna-beseda span.faicon.edit-vprasanje {
|
|
margin-left: 8px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
table#standard_words_table td div.standardna-beseda span.faicon.edit-vprasanje:hover {
|
|
color: #0059ab;
|
|
}
|
|
table#standard_words_table th div.standardna-beseda-th {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
span.faicon.st-besede-popup {
|
|
margin-right: 6px;
|
|
margin-left: 0 !important;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/*
|
|
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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#vrednost_edit h2 span.faicon,
|
|
#vrednost_edit h2 span.fa-brands,
|
|
#vrednost_edit .divPopUp_top span.faicon,
|
|
#vrednost_edit .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#vrednost_edit h2 span.faicon:before,
|
|
#vrednost_edit h2 span.fa-brands:before,
|
|
#vrednost_edit .divPopUp_top span.faicon:before,
|
|
#vrednost_edit .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit p {
|
|
line-height: 20px;
|
|
}
|
|
#vrednost_edit .popup_note,
|
|
#vrednost_edit .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#vrednost_edit .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#vrednost_edit .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#vrednost_edit .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left .list .list-item.active, #vrednost_edit .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#vrednost_edit .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#vrednost_edit .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#vrednost_edit .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#vrednost_edit .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#vrednost_edit .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#vrednost_edit .popup_main .setting_line label,
|
|
#vrednost_edit .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#vrednost_edit .popup_main .settings_block label,
|
|
#vrednost_edit .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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;
|
|
}
|
|
|
|
/* Calculation edit */
|
|
#calculation,
|
|
#quota {
|
|
/*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: 91;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
height: auto;
|
|
width: 600px;
|
|
}
|
|
#calculation .popup_close,
|
|
#quota .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#calculation .popup_close:hover,
|
|
#quota .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#calculation .popup_close a,
|
|
#quota .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#calculation .popup_close a:hover,
|
|
#quota .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#calculation h2,
|
|
#calculation .divPopUp_top,
|
|
#quota h2,
|
|
#quota .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#calculation h2 span.faicon,
|
|
#calculation h2 span.fa-brands,
|
|
#calculation .divPopUp_top span.faicon,
|
|
#calculation .divPopUp_top span.fa-brands,
|
|
#quota h2 span.faicon,
|
|
#quota h2 span.fa-brands,
|
|
#quota .divPopUp_top span.faicon,
|
|
#quota .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#calculation h2 span.faicon:before,
|
|
#calculation h2 span.fa-brands:before,
|
|
#calculation .divPopUp_top span.faicon:before,
|
|
#calculation .divPopUp_top span.fa-brands:before,
|
|
#quota h2 span.faicon:before,
|
|
#quota h2 span.fa-brands:before,
|
|
#quota .divPopUp_top span.faicon:before,
|
|
#quota .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#calculation p,
|
|
#quota p {
|
|
line-height: 20px;
|
|
}
|
|
#calculation .popup_note,
|
|
#calculation .profile_right_note,
|
|
#quota .popup_note,
|
|
#quota .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#calculation .popup_main,
|
|
#quota .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#calculation .popup_main.no_border,
|
|
#quota .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#calculation .popup_main.with_menu,
|
|
#quota .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#calculation .popup_main .popup_left,
|
|
#quota .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#calculation .popup_main .popup_left .list,
|
|
#quota .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#calculation .popup_main .popup_left .list .list-item,
|
|
#quota .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#calculation .popup_main .popup_left .list .list-item.active, #calculation .popup_main .popup_left .list .list-item:hover,
|
|
#quota .popup_main .popup_left .list .list-item.active,
|
|
#quota .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#calculation .popup_main .popup_left .list .list-item .profile_icons a,
|
|
#quota .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#calculation .popup_main .popup_left button,
|
|
#quota .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#calculation .popup_main .popup_left button .faicon,
|
|
#quota .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#calculation .popup_main .popup_left button .faicon::before,
|
|
#quota .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#calculation .popup_main .popup_right,
|
|
#quota .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#calculation .popup_main .popup_right .popup_right_note,
|
|
#quota .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#calculation .popup_main fieldset,
|
|
#quota .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#calculation .popup_main fieldset legend,
|
|
#quota .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main span,
|
|
#quota .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .setting_line,
|
|
#quota .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .setting_line:last-of-type,
|
|
#quota .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#calculation .popup_main .setting_line label,
|
|
#calculation .popup_main .setting_line span,
|
|
#quota .popup_main .setting_line label,
|
|
#quota .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .settings_block,
|
|
#quota .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#calculation .popup_main .settings_block label,
|
|
#calculation .popup_main .settings_block span,
|
|
#quota .popup_main .settings_block label,
|
|
#quota .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .button_holder,
|
|
#quota .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#calculation .button_holder button:last-child,
|
|
#quota .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#calculation.warning_popup h2::before,
|
|
#quota.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#calculation #calculation_editing_inner,
|
|
#calculation #quota_editing_inner,
|
|
#quota #calculation_editing_inner,
|
|
#quota #quota_editing_inner {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 40px;
|
|
overflow: auto;
|
|
}
|
|
#calculation #calculation_editing_inner.podatki,
|
|
#calculation #quota_editing_inner.podatki,
|
|
#quota #calculation_editing_inner.podatki,
|
|
#quota #quota_editing_inner.podatki {
|
|
margin-bottom: 0;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body,
|
|
#calculation #calculation_editing_inner .quota_editing_body,
|
|
#calculation #quota_editing_inner .calculation_editing_body,
|
|
#calculation #quota_editing_inner .quota_editing_body,
|
|
#quota #calculation_editing_inner .calculation_editing_body,
|
|
#quota #calculation_editing_inner .quota_editing_body,
|
|
#quota #quota_editing_inner .calculation_editing_body,
|
|
#quota #quota_editing_inner .quota_editing_body {
|
|
max-height: 40vh;
|
|
overflow-y: auto;
|
|
margin: 16px 0 16px 0;
|
|
padding: 12px;
|
|
background-color: #EEF7FF;
|
|
border: 1px #cce4f9 solid;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#calculation #calculation_editing_inner .quota_editing_body .condition_editing_row,
|
|
#calculation #quota_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#calculation #quota_editing_inner .quota_editing_body .condition_editing_row,
|
|
#quota #calculation_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#quota #calculation_editing_inner .quota_editing_body .condition_editing_row,
|
|
#quota #quota_editing_inner .calculation_editing_body .condition_editing_row,
|
|
#quota #quota_editing_inner .quota_editing_body .condition_editing_row {
|
|
margin-bottom: 0;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body .condition_editing_row.operator,
|
|
#calculation #calculation_editing_inner .quota_editing_body .condition_editing_row.operator,
|
|
#calculation #quota_editing_inner .calculation_editing_body .condition_editing_row.operator,
|
|
#calculation #quota_editing_inner .quota_editing_body .condition_editing_row.operator,
|
|
#quota #calculation_editing_inner .calculation_editing_body .condition_editing_row.operator,
|
|
#quota #calculation_editing_inner .quota_editing_body .condition_editing_row.operator,
|
|
#quota #quota_editing_inner .calculation_editing_body .condition_editing_row.operator,
|
|
#quota #quota_editing_inner .quota_editing_body .condition_editing_row.operator {
|
|
padding-left: 22px;
|
|
margin: 8px 0;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body .condition_editing_row.operator a,
|
|
#calculation #calculation_editing_inner .quota_editing_body .condition_editing_row.operator a,
|
|
#calculation #quota_editing_inner .calculation_editing_body .condition_editing_row.operator a,
|
|
#calculation #quota_editing_inner .quota_editing_body .condition_editing_row.operator a,
|
|
#quota #calculation_editing_inner .calculation_editing_body .condition_editing_row.operator a,
|
|
#quota #calculation_editing_inner .quota_editing_body .condition_editing_row.operator a,
|
|
#quota #quota_editing_inner .calculation_editing_body .condition_editing_row.operator a,
|
|
#quota #quota_editing_inner .quota_editing_body .condition_editing_row.operator a {
|
|
font-size: 20px;
|
|
text-decoration: none;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body .condition_editing_row .variable,
|
|
#calculation #calculation_editing_inner .quota_editing_body .condition_editing_row .variable,
|
|
#calculation #quota_editing_inner .calculation_editing_body .condition_editing_row .variable,
|
|
#calculation #quota_editing_inner .quota_editing_body .condition_editing_row .variable,
|
|
#quota #calculation_editing_inner .calculation_editing_body .condition_editing_row .variable,
|
|
#quota #calculation_editing_inner .quota_editing_body .condition_editing_row .variable,
|
|
#quota #quota_editing_inner .calculation_editing_body .condition_editing_row .variable,
|
|
#quota #quota_editing_inner .quota_editing_body .condition_editing_row .variable {
|
|
flex-direction: row;
|
|
}
|
|
#calculation #calculation_editing_inner .calculation_editing_body .condition_editing_row .variable input[type=text],
|
|
#calculation #calculation_editing_inner .quota_editing_body .condition_editing_row .variable input[type=text],
|
|
#calculation #quota_editing_inner .calculation_editing_body .condition_editing_row .variable input[type=text],
|
|
#calculation #quota_editing_inner .quota_editing_body .condition_editing_row .variable input[type=text],
|
|
#quota #calculation_editing_inner .calculation_editing_body .condition_editing_row .variable input[type=text],
|
|
#quota #calculation_editing_inner .quota_editing_body .condition_editing_row .variable input[type=text],
|
|
#quota #quota_editing_inner .calculation_editing_body .condition_editing_row .variable input[type=text],
|
|
#quota #quota_editing_inner .quota_editing_body .condition_editing_row .variable input[type=text] {
|
|
margin-left: 8px;
|
|
}
|
|
#calculation #condition_editing_close,
|
|
#quota #condition_editing_close {
|
|
float: right;
|
|
margin: 20px 20px 20px 0;
|
|
}
|
|
#calculation #condition_editing_close.podatki,
|
|
#quota #condition_editing_close.podatki {
|
|
margin: 0;
|
|
display: block;
|
|
}
|
|
#calculation #bottom_space,
|
|
#quota #bottom_space {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Survey title edit */
|
|
#quick_title_edit {
|
|
position: relative;
|
|
}
|
|
#quick_title_edit .quick_title_setting {
|
|
margin-bottom: 16px;
|
|
}
|
|
#quick_title_edit .quick_title_setting .setting_line {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#quick_title_edit .quick_title_setting .setting_line input {
|
|
margin-right: 8px;
|
|
}
|
|
#quick_title_edit .quick_title_setting .opomba_line {
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
color: #a9a9a9;
|
|
}
|
|
|
|
/*
|
|
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
|
|
*/
|
|
#fullscreen #preview_spremenljivka,
|
|
#vprasanje_preview #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;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_close,
|
|
#vprasanje_preview #preview_spremenljivka .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_close:hover,
|
|
#vprasanje_preview #preview_spremenljivka .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_close a,
|
|
#vprasanje_preview #preview_spremenljivka .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_close a:hover,
|
|
#vprasanje_preview #preview_spremenljivka .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#fullscreen #preview_spremenljivka h2,
|
|
#fullscreen #preview_spremenljivka .divPopUp_top,
|
|
#vprasanje_preview #preview_spremenljivka h2,
|
|
#vprasanje_preview #preview_spremenljivka .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka h2 span.faicon,
|
|
#fullscreen #preview_spremenljivka h2 span.fa-brands,
|
|
#fullscreen #preview_spremenljivka .divPopUp_top span.faicon,
|
|
#fullscreen #preview_spremenljivka .divPopUp_top span.fa-brands,
|
|
#vprasanje_preview #preview_spremenljivka h2 span.faicon,
|
|
#vprasanje_preview #preview_spremenljivka h2 span.fa-brands,
|
|
#vprasanje_preview #preview_spremenljivka .divPopUp_top span.faicon,
|
|
#vprasanje_preview #preview_spremenljivka .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka h2 span.faicon:before,
|
|
#fullscreen #preview_spremenljivka h2 span.fa-brands:before,
|
|
#fullscreen #preview_spremenljivka .divPopUp_top span.faicon:before,
|
|
#fullscreen #preview_spremenljivka .divPopUp_top span.fa-brands:before,
|
|
#vprasanje_preview #preview_spremenljivka h2 span.faicon:before,
|
|
#vprasanje_preview #preview_spremenljivka h2 span.fa-brands:before,
|
|
#vprasanje_preview #preview_spremenljivka .divPopUp_top span.faicon:before,
|
|
#vprasanje_preview #preview_spremenljivka .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka p,
|
|
#vprasanje_preview #preview_spremenljivka p {
|
|
line-height: 20px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_note,
|
|
#fullscreen #preview_spremenljivka .profile_right_note,
|
|
#vprasanje_preview #preview_spremenljivka .popup_note,
|
|
#vprasanje_preview #preview_spremenljivka .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main.no_border,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main.with_menu,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left .list,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left .list .list-item,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left .list .list-item.active, #fullscreen #preview_spremenljivka .popup_main .popup_left .list .list-item:hover,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left .list .list-item.active,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left .list .list-item .profile_icons a,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left button,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left button .faicon,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_left button .faicon::before,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_right,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .popup_right .popup_right_note,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main fieldset,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main fieldset legend,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main span,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .setting_line,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .setting_line:last-of-type,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .setting_line label,
|
|
#fullscreen #preview_spremenljivka .popup_main .setting_line span,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .setting_line label,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .settings_block,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .popup_main .settings_block label,
|
|
#fullscreen #preview_spremenljivka .popup_main .settings_block span,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .settings_block label,
|
|
#vprasanje_preview #preview_spremenljivka .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#fullscreen #preview_spremenljivka .button_holder,
|
|
#vprasanje_preview #preview_spremenljivka .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka .button_holder button:last-child,
|
|
#vprasanje_preview #preview_spremenljivka .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka.warning_popup h2::before,
|
|
#vprasanje_preview #preview_spremenljivka.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 24px 0;
|
|
color: #333333;
|
|
/* awesome radio in checkboxi */
|
|
/* custom checkbox and radio buttons */
|
|
/* Obstoječe skrijemo*/
|
|
/* Disabled radio / checkbox */
|
|
/* checkbox */
|
|
/* radio */
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov {
|
|
margin: 0 0 24px 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov p,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov p {
|
|
margin: 0;
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov .spremenljivka_info,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov .spremenljivka_info {
|
|
margin-top: 4px;
|
|
color: #a9a9a9;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder {
|
|
height: auto !important;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder .variabla,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder .variabla {
|
|
padding: 0 0 16px 0;
|
|
font-size: 16px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder .variabla:last-child,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .variable_holder .variabla:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=text], #fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka textarea, #fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka select,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=text],
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka textarea,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka select {
|
|
margin: 0;
|
|
padding: 5px 7px;
|
|
min-width: 100px;
|
|
border-radius: 3px;
|
|
border: 1px #3e3e3e solid;
|
|
background-color: #fff;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox], #fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio],
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox],
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] {
|
|
opacity: 0;
|
|
position: absolute !important;
|
|
width: 30px;
|
|
height: 24px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio:before,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-custom-radio:before,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-vizualna-skala::before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-custom-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-vizualna-skala::before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox]:disabled + span.enka-checkbox-radio:before,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio]:disabled + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox]:disabled + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio]:disabled + span.enka-checkbox-radio:before {
|
|
opacity: 0.5;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 15px;
|
|
-webkit-text-stroke: 0.35px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .custom_radio_picture.obarvan > label > span.enka-custom-radio:before,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .visual-radio-scale.checked .enka-vizualna-skala,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=radio] + span.enka-checkbox-radio,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .custom_radio_picture.obarvan > label > span.enka-custom-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .visual-radio-scale.checked .enka-vizualna-skala {
|
|
color: #1E88E5;
|
|
font-size: 20px;
|
|
vertical-align: -1px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=text]:focus,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=number]:focus,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=email]:focus,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=password]:focus,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka textarea:focus,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=text]:focus,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=number]:focus,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=email]:focus,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka input[type=password]:focus,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka textarea:focus {
|
|
border-color: #1E88E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table {
|
|
margin: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr th,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr th {
|
|
border: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category {
|
|
text-align: center;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category label,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category label {
|
|
margin: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category span.enka-checkbox-radio:before,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr td.category span.enka-checkbox-radio:before {
|
|
letter-spacing: 0 !important;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr:nth-child(2n+1),
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.grid_table tr:nth-child(2n+1) {
|
|
background-color: #F1F8FD;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost {
|
|
table-layout: fixed;
|
|
text-align: left;
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
margin: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost tr td,
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost tr th,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost tr td,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.text_vrednost tr th {
|
|
border: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_5,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_5 {
|
|
width: 5%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_10,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_10 {
|
|
width: 10%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_15,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_15 {
|
|
width: 15%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_20,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_20 {
|
|
width: 20%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_25,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_25 {
|
|
width: 25%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_30,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_30 {
|
|
width: 30%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_33,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_33 {
|
|
width: 33.3%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_35,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_35 {
|
|
width: 35%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_40,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_40 {
|
|
width: 40%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_45,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_45 {
|
|
width: 45%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_50,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_50 {
|
|
width: 50%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_55,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_55 {
|
|
width: 55%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_60,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_60 {
|
|
width: 60%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_65,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_65 {
|
|
width: 65%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_70,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_70 {
|
|
width: 70%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_75,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_75 {
|
|
width: 75%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_80,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_80 {
|
|
width: 80%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_85,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_85 {
|
|
width: 85%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_90,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_90 {
|
|
width: 90%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_95,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_95 {
|
|
width: 95%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_100,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .width_100 {
|
|
width: 100%;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_dropping_titles,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_dropping_titles {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 0px auto;
|
|
height: 15px;
|
|
text-align: center;
|
|
background-color: white;
|
|
border-top: 1px solid #E5E5E5;
|
|
border-left: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_dropping,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_dropping {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
background-color: #F2F2F2;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-spacing: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table td,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table td {
|
|
width: 45%;
|
|
padding: 5px;
|
|
vertical-align: top;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table td.middle,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table td.middle {
|
|
width: 10%;
|
|
vertical-align: top;
|
|
text-align: center;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table ul,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka table.ranking_table ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka td.middle img,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka td.middle img {
|
|
display: block;
|
|
margin: 50% 0 0 20px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .ranking,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .ranking {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .ranking_long,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .ranking_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .handle,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .handle {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .handle_long,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .handle_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .ime,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .ime {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .izbran,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .izbran {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_ranking,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_ranking {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed black;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropholder,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropholder {
|
|
position: relative;
|
|
padding-top: 11px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropholder .dropzone,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropholder .dropzone {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropzone,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .dropzone {
|
|
border-top: 1px solid black;
|
|
min-height: 100px;
|
|
padding-top: 10px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .moving,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .moving {
|
|
cursor: pointer;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 230px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_moving,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .frame_moving {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed black;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka ul.sorting,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka ul.sorting {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .sortholder,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .sortholder {
|
|
margin: 0 auto;
|
|
width: 250px;
|
|
padding: 5px;
|
|
}
|
|
#fullscreen #preview_spremenljivka #spremenljivka_preview .spremenljivka .sortzone,
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .sortzone {
|
|
position: absolute;
|
|
margin: 0 auto 0 auto;
|
|
width: 250px;
|
|
}
|
|
|
|
#preview_spremenljivka {
|
|
/* font awesom za admin */
|
|
/* select, checked */
|
|
}
|
|
#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;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom,
|
|
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
#preview_spremenljivka #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;
|
|
font-weight: 400;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
#preview_spremenljivka #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;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f096";*/
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f10c";*/
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f046";*/
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f192";*/
|
|
content: "";
|
|
}
|
|
#preview_spremenljivka input[type=radio] {
|
|
margin: 0 8px 4px 0;
|
|
display: none !important;
|
|
}
|
|
#preview_spremenljivka input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
#preview_spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#preview_spremenljivka input[type=radio] + span.enka-custom-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
}
|
|
#preview_spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
#preview_spremenljivka input[type=checkbox] {
|
|
display: none !important;
|
|
}
|
|
#preview_spremenljivka input[type=checkbox] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
#preview_spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
|
|
/*
|
|
Knjiznica s pobrisanimi vprasanji v urejanju ankete
|
|
*/
|
|
.vprasanje_deleted_popup {
|
|
padding: 0;
|
|
}
|
|
.vprasanje_deleted_popup h2 {
|
|
padding: 16px 0 8px 0;
|
|
}
|
|
.vprasanje_deleted_popup h2 .faicon {
|
|
padding-left: 16px;
|
|
}
|
|
.vprasanje_deleted_popup .content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 840px;
|
|
width: 100%;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 440px;
|
|
max-height: 440px;
|
|
overflow-y: auto;
|
|
padding: 0 16px 16px 16px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .spacer {
|
|
margin-top: 8px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder.active .question_item_info {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder > label {
|
|
margin-right: 8px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder > label:before {
|
|
letter-spacing: 0;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: 36px;
|
|
max-width: 100%;
|
|
width: 705px;
|
|
padding: 0 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info:hover .dots_ver,
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info:hover .monitor {
|
|
display: block;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info span {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info span.faicon {
|
|
color: #1E88E5;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .date {
|
|
color: #808080;
|
|
font-size: 13px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_type {
|
|
text-transform: uppercase;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
position: absolute;
|
|
z-index: 9999;
|
|
right: 0;
|
|
top: 35px;
|
|
border-radius: 2px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings a {
|
|
text-decoration: none;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li {
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .item_settings ul li:hover {
|
|
color: #0059ab;
|
|
}
|
|
.vprasanje_deleted_popup .content .question_list .question_item_holder .question_item_info .monitor {
|
|
display: none;
|
|
margin-right: 0;
|
|
}
|
|
.vprasanje_deleted_popup .content .selected_items {
|
|
align-self: flex-end;
|
|
margin: 16px 16px 8px 0;
|
|
color: #1E88E5;
|
|
}
|
|
.vprasanje_deleted_popup .content .button_holder {
|
|
margin: 0 16px 16px 0;
|
|
}
|
|
|
|
/* Dodaten popup za preview */
|
|
#vprasanje_preview {
|
|
position: absolute;
|
|
z-index: 9999;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vprasanje_preview h2 .as_link {
|
|
text-decoration: none;
|
|
text-transform: none;
|
|
}
|
|
#vprasanje_preview #preview_spremenljivka {
|
|
width: 100%;
|
|
height: calc(100% - 140px);
|
|
max-height: none;
|
|
box-sizing: border-box;
|
|
padding-top: 0;
|
|
}
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka {
|
|
padding: 0;
|
|
}
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov {
|
|
padding: 0;
|
|
font-weight: 600;
|
|
font-size: 20px;
|
|
}
|
|
#vprasanje_preview #preview_spremenljivka #spremenljivka_preview .spremenljivka .naslov p {
|
|
font-weight: 600;
|
|
}
|
|
#vprasanje_preview .button_holder {
|
|
padding: 16px;
|
|
margin: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
|
|
/*
|
|
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 .instructions p {
|
|
margin-bottom: 8px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 16px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #input_field_holder {
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
margin-right: 16px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #input_field_holder #input_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #input_field_holder #input_field textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
resize: none;
|
|
padding: 16px;
|
|
margin: 0;
|
|
border: 1px #E5E5E5 solid !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #input_field_holder #input_field textarea:focus::-moz-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder {
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
padding: 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.title {
|
|
font-size: 18px;
|
|
line-height: 30px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable input[type=radio] {
|
|
display: none !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_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: #E5E5E5;
|
|
letter-spacing: 8px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text .import_holder #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
|
|
*/
|
|
.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;
|
|
}
|
|
|
|
dl.arch_email dd {
|
|
margin-left: 60px;
|
|
position: relative;
|
|
top: -1.1em;
|
|
}
|
|
|
|
#email_archive_text {
|
|
height: 150px;
|
|
}
|
|
|
|
#inv_view_arch_recipients {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
#inv_view_arch_recipients .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#inv_view_arch_recipients .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#inv_view_arch_recipients .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#inv_view_arch_recipients .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#inv_view_arch_recipients h2,
|
|
#inv_view_arch_recipients .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#inv_view_arch_recipients h2 span.faicon,
|
|
#inv_view_arch_recipients h2 span.fa-brands,
|
|
#inv_view_arch_recipients .divPopUp_top span.faicon,
|
|
#inv_view_arch_recipients .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#inv_view_arch_recipients h2 span.faicon:before,
|
|
#inv_view_arch_recipients h2 span.fa-brands:before,
|
|
#inv_view_arch_recipients .divPopUp_top span.faicon:before,
|
|
#inv_view_arch_recipients .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients p {
|
|
line-height: 20px;
|
|
}
|
|
#inv_view_arch_recipients .popup_note,
|
|
#inv_view_arch_recipients .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#inv_view_arch_recipients .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#inv_view_arch_recipients .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#inv_view_arch_recipients .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left .list .list-item.active, #inv_view_arch_recipients .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#inv_view_arch_recipients .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .setting_line label,
|
|
#inv_view_arch_recipients .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#inv_view_arch_recipients .popup_main .settings_block label,
|
|
#inv_view_arch_recipients .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#inv_view_arch_recipients .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#inv_view_arch_recipients.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.fixed-position {
|
|
position: fixed;
|
|
z-index: 101;
|
|
top: 50%;
|
|
left: 50%;
|
|
}
|
|
.fixed-position #vrednost_edit {
|
|
display: block;
|
|
margin-top: -200px;
|
|
margin-left: -300px;
|
|
position: relative;
|
|
}
|
|
.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray {
|
|
color: #1E88E5;
|
|
}
|
|
.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray:hover span {
|
|
color: white;
|
|
}
|
|
.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_orange span {
|
|
color: white;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
margin-bottom: 42px;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav .inv_space {
|
|
width: 50px;
|
|
height: 1px;
|
|
margin: 0 8px;
|
|
border-top: 1px #D3D3D3 dashed;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step {
|
|
display: flex;
|
|
flex-direction: row;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu {
|
|
color: #777777;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:not(:first-of-type) {
|
|
margin-left: 3px;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:last-of-type {
|
|
margin-right: 64px;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu:last-of-type div.label::after {
|
|
display: none;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu div.square {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 8px;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu.active {
|
|
color: #1E88E5;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step.menu.active div.square {
|
|
border-color: #1E88E5;
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#inv_top_navi div.phn_step_nav div.phn_step a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#tel_settings_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
color: #777777;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#tel_settings_holder span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
div.page_telephone div.phone_settings_top div#tel_settings_holder div.phn_step_nav.active {
|
|
color: #1E88E5;
|
|
}
|
|
div.page_telephone h2 {
|
|
font-weight: 700;
|
|
color: #1E88E5;
|
|
text-transform: uppercase;
|
|
font-size: 16px;
|
|
}
|
|
div.page_telephone div#inv_import {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
gap: 32px;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder {
|
|
min-height: 355px;
|
|
height: fit-content;
|
|
padding: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
width: 25%;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles {
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #FFFFFF;
|
|
min-height: 200px;
|
|
max-height: 600px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
max-height: 400px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: white;
|
|
margin-top: 4px;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li {
|
|
cursor: pointer;
|
|
list-style-type: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 35px;
|
|
padding: 0px 8px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li.active {
|
|
color: #1E88E5;
|
|
background-color: #F4F9FE;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li:hover {
|
|
background-color: #F4F9FE;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li .faicon {
|
|
margin-left: 8px;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_recipients_profiles_holder div#phn_import_list_profiles ol li .faicon:before {
|
|
font-size: 16px;
|
|
}
|
|
div.page_telephone div#inv_import div#inv_field_container {
|
|
margin: 16px 0;
|
|
}
|
|
div.page_telephone div#inv_import fieldset#inv_import_list_container {
|
|
padding: 16px;
|
|
min-height: 355px;
|
|
width: 75%;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
margin-top: -10px;
|
|
}
|
|
div.page_telephone div#inv_import fieldset#inv_import_list_container textarea {
|
|
width: 100%;
|
|
height: 120px;
|
|
}
|
|
div.page_telephone div#inv_import fieldset#inv_import_list_container div.button_holder {
|
|
justify-content: right;
|
|
margin-top: 32px;
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_telephone div#inv_import fieldset#inv_import_list_container div.button_holder button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
div.page_telephone div#filter_wrap {
|
|
font-size: 14px !important;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
align-items: center;
|
|
}
|
|
div.page_telephone div#filter_wrap div#inv_rec_filter {
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #F8F8F8;
|
|
padding: 6px 16px;
|
|
}
|
|
div.page_telephone div#filter_wrap div#inv_rec_filter input {
|
|
margin: 0 0 0 8px;
|
|
height: 28px;
|
|
width: 160px;
|
|
}
|
|
div.page_telephone table {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone table td div.icons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
div.page_telephone table td div.icons span.faicon {
|
|
cursor: pointer;
|
|
}
|
|
div.page_telephone div#inv_bottom_edit {
|
|
margin-left: 18px;
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone div#inv_bottom_edit a {
|
|
text-decoration: none;
|
|
margin-right: 16px;
|
|
}
|
|
div.page_telephone div.button_holder {
|
|
margin: 16px 0 0 0;
|
|
justify-content: flex-end;
|
|
}
|
|
div.page_telephone div.button_holder button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
div.page_telephone table#phn_call_table {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone table#phn_call_table td, div.page_telephone table#phn_call_table th {
|
|
border: none;
|
|
background-color: #FFFFFF;
|
|
vertical-align: top;
|
|
padding: 0 12px;
|
|
}
|
|
div.page_telephone table#phn_call_table td:not(:last-of-type), div.page_telephone table#phn_call_table th:not(:last-of-type) {
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
div.page_telephone table#phn_call_table td:first-of-type, div.page_telephone table#phn_call_table th:first-of-type {
|
|
padding-left: 0;
|
|
}
|
|
div.page_telephone table#phn_call_table td:last-of-type, div.page_telephone table#phn_call_table th:last-of-type {
|
|
padding-right: 0;
|
|
}
|
|
div.page_telephone table#phn_call_table td div.pregled_klicev, div.page_telephone table#phn_call_table th div.pregled_klicev {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
}
|
|
div.page_telephone table#phn_call_table td div.pregled_klicev div#top, div.page_telephone table#phn_call_table th div.pregled_klicev div#top {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_telephone table#phn_call_table td div.pregled_klicev div#top div#status, div.page_telephone table#phn_call_table th div.pregled_klicev div#top div#status {
|
|
font-weight: 600;
|
|
}
|
|
div.page_telephone table#phn_call_table th {
|
|
text-transform: uppercase;
|
|
padding-bottom: 16px;
|
|
}
|
|
div.page_telephone table#phn_call_table button {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_telephone table#phn_call_table p {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone table#phn_call_table p a {
|
|
text-decoration: none;
|
|
}
|
|
div.page_telephone table#phn_call_table div#phn_user_comment {
|
|
height: 60px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
margin-top: 4px;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_telephone table#phn_call_table label {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone div#tel_line_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
align-items: center;
|
|
margin-top: 32px;
|
|
}
|
|
div.page_telephone div#tel_line_wrap table {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone div#tel_line_wrap0 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
align-items: center;
|
|
}
|
|
div.page_telephone div#tel_line_wrap0 table {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_telephone fieldset#tel_setting div.set_horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_telephone fieldset#tel_setting div.set_horizontal input {
|
|
width: 40px;
|
|
margin: 0;
|
|
}
|
|
div.page_telephone fieldset#tel_setting select {
|
|
width: 100px;
|
|
}
|
|
div.page_telephone div.set_horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_telephone div.set_horizontal input {
|
|
width: 110px;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
div.page_telephone div.set_horizontal button {
|
|
margin-right: 16px;
|
|
}
|
|
div.page_telephone table.inv_dashboard_table {
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
div.prevajanje_holder .section {
|
|
margin: 0 16px 16px 16px;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right {
|
|
overflow-x: auto;
|
|
box-sizing: border-box;
|
|
width: 50%;
|
|
max-width: 50%;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left.jezik_left,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right.jezik_left {
|
|
margin-right: 16px;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left div.spremenljivka_content,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right div.spremenljivka_content {
|
|
min-height: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left p.editable,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right p.editable {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 4px;
|
|
margin-top: 4px;
|
|
height: 30px;
|
|
padding: 5px 8px;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left span.title,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right span.title {
|
|
font-size: 20px;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left div.comment_container_inline,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right div.comment_container_inline {
|
|
display: none;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left .icons_holder,
|
|
div.prevajanje_holder .section .jezik_row .jezik_left .add-variable,
|
|
div.prevajanje_holder .section .jezik_row .jezik_left .inline_move,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right .icons_holder,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right .add-variable,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right .inline_move {
|
|
display: none;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left.vert_middle,
|
|
div.prevajanje_holder .section .jezik_row .jezik_right.vert_middle {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-top: 4px;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) {
|
|
pointer-events: none;
|
|
color: #777777 !important;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content {
|
|
color: #777777 !important;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content div.spremenljivka_settings {
|
|
color: #777777 !important;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content div.spremenljivka_settings div.variable_name {
|
|
color: #777777 !important;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content div.spremenljivka_settings div.spr_settings span {
|
|
border-color: #C4C4C4 !important;
|
|
background-color: transparent !important;
|
|
color: #777777 !important;
|
|
}
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content div.spremenljivka_tekst_form span.faicon::before,
|
|
div.prevajanje_holder .section .jezik_row .jezik_left:not(.settings) div.spremenljivka_content div.content_div_normalmode span.faicon::before {
|
|
display: none;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset {
|
|
width: 50%;
|
|
margin-bottom: 0;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset.jezik_left {
|
|
min-height: 100% !important;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_name {
|
|
font-size: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_name a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_name div.active_urejanje {
|
|
background-color: #E3F6DE;
|
|
border-radius: 2px;
|
|
color: #00752F;
|
|
width: fit-content;
|
|
box-sizing: border-box;
|
|
padding: 2px 21px;
|
|
font-size: 14px !important;
|
|
font-weight: 400 !important;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_name.semi-bold, div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_name:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 82px;
|
|
margin-top: 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item span.faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5 !important;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item span.faicon.pdf::before,
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item span.faicon.rtf::before {
|
|
color: #1E88E5 !important;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item a {
|
|
text-decoration: none;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.lang_content div.lang_column div.lang_item:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.dodaj_prevod {
|
|
margin-top: 32px;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.dodaj_prevod div.button_holder {
|
|
margin-bottom: 0;
|
|
align-items: flex-end;
|
|
}
|
|
div.prevajanje_holder .section.jezik_top_settings fieldset div.dodaj_prevod div.button_holder button {
|
|
margin-left: 18px;
|
|
height: fit-content;
|
|
}
|
|
div.prevajanje_holder .section.jezik_vprasanja .jezik_row {
|
|
margin-bottom: 32px;
|
|
}
|
|
div.prevajanje_holder .section.jezik_vprasanja .jezik_row.page {
|
|
font-weight: 600;
|
|
margin-bottom: 4px;
|
|
margin-top: 20px;
|
|
}
|
|
fieldset#gdpr_anketa .setting_holder {
|
|
margin-bottom: 0;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
width: fit-content;
|
|
}
|
|
fieldset#gdpr_anketa .setting_holder .fold {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
align-items: center;
|
|
width: fit-content;
|
|
margin-top: 8px;
|
|
}
|
|
fieldset#gdpr_anketa .setting_holder .fold .setting_title {
|
|
margin-right: 16px;
|
|
white-space: nowrap;
|
|
}
|
|
fieldset#gdpr_anketa .setting_holder .fold .setting_item {
|
|
margin-top: 0;
|
|
white-space: nowrap;
|
|
}
|
|
fieldset#gdpr_anketa #gdpr_data_identifiers {
|
|
margin: 16px 0 8px 0;
|
|
}
|
|
fieldset#gdpr_anketa #gdpr_data_identifiers #other_text textarea {
|
|
width: 533px;
|
|
height: 100px;
|
|
}
|
|
fieldset#gdpr_anketa #gdpr_data_settings textarea#about {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
|
|
fieldset#gdpr_additional_info .setting_holder .setting_item .text_follow {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-top: 4px;
|
|
}
|
|
fieldset#gdpr_additional_info .setting_holder .setting_item .text_follow input {
|
|
margin: 0 4px 0 0;
|
|
}
|
|
fieldset#gdpr_additional_info .setting_holder .setting_item .text_follow input:disabled {
|
|
background-color: #E5E5E5;
|
|
}
|
|
fieldset#gdpr_additional_info .setting_holder .setting_item.indent {
|
|
margin-left: 28px;
|
|
}
|
|
fieldset#gdpr_additional_info .setting_holder.indent {
|
|
margin-left: 28px;
|
|
}
|
|
fieldset#gdpr_additional_info .setting_holder span.indent {
|
|
margin-left: 28px;
|
|
}
|
|
|
|
#gdpr_bottom_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
}
|
|
#gdpr_bottom_wrap #gdpr_bottom_wrap_left,
|
|
#gdpr_bottom_wrap #gdpr_bottom_wrap_right {
|
|
width: 50%;
|
|
}
|
|
|
|
fieldset#gdpr_export_individual,
|
|
fieldset#gdpr_export_activity {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
fieldset#gdpr_export_individual span.lang,
|
|
fieldset#gdpr_export_activity span.lang {
|
|
margin-top: 16px;
|
|
}
|
|
fieldset#gdpr_export_individual a.lang,
|
|
fieldset#gdpr_export_activity a.lang {
|
|
margin-top: 8px;
|
|
width: fit-content;
|
|
}
|
|
|
|
#preview_gdpr_export {
|
|
height: auto;
|
|
max-height: 700px;
|
|
overflow: auto;
|
|
}
|
|
|
|
fieldset#email_streznik_anketa .setting_holder.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
fieldset#email_streznik_anketa .setting_holder.horizontal .setting_holder {
|
|
margin-bottom: 0;
|
|
display: flex;
|
|
}
|
|
fieldset#email_streznik_anketa .setting_holder.horizontal .setting_holder .large {
|
|
width: 300px;
|
|
}
|
|
fieldset#email_streznik_anketa .setting_holder.horizontal .setting_holder .fold {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
align-items: center;
|
|
width: 300px;
|
|
}
|
|
|
|
div.subpage_predvidenicas table,
|
|
div.subpage_cas table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
div.subpage_predvidenicas table td.graph_cell,
|
|
div.subpage_cas table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
div.subpage_predvidenicas table td.graph_cell div.graph_cell,
|
|
div.subpage_cas table td.graph_cell div.graph_cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div.subpage_predvidenicas table td.time,
|
|
div.subpage_cas table td.time {
|
|
padding-right: 0;
|
|
}
|
|
div.subpage_predvidenicas table td.predvideni,
|
|
div.subpage_cas table td.predvideni {
|
|
color: #C4C4C4;
|
|
}
|
|
div.subpage_predvidenicas table#casi_histogram,
|
|
div.subpage_cas table#casi_histogram {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
div.subpage_predvidenicas table#casi_histogram td.histogram,
|
|
div.subpage_cas table#casi_histogram td.histogram {
|
|
vertical-align: bottom;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
div.subpage_predvidenicas table#casi_histogram td.histogram div.histogram,
|
|
div.subpage_cas table#casi_histogram td.histogram div.histogram {
|
|
background-color: #E5E5E5;
|
|
border: 1px solid transparent;
|
|
text-align: right;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 1px;
|
|
}
|
|
div.subpage_predvidenicas table#casi_histogram td.histogram_time,
|
|
div.subpage_cas table#casi_histogram td.histogram_time {
|
|
padding: 0;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
color: #777777;
|
|
border: none;
|
|
}
|
|
div.subpage_predvidenicas div.graph_full,
|
|
div.subpage_cas div.graph_full {
|
|
background-color: #1E88E5;
|
|
height: 24px;
|
|
text-align: right;
|
|
}
|
|
div.subpage_predvidenicas div.graph_empty,
|
|
div.subpage_cas div.graph_empty {
|
|
background-color: #E5E5E5;
|
|
height: 24px;
|
|
}
|
|
div.subpage_predvidenicas div.graph_red,
|
|
div.subpage_cas div.graph_red {
|
|
background-color: #FFE3E3;
|
|
height: 24px;
|
|
}
|
|
div.subpage_predvidenicas div.tabela_trajanje_legenda,
|
|
div.subpage_cas div.tabela_trajanje_legenda {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
align-items: center;
|
|
margin-top: 16px;
|
|
}
|
|
div.subpage_predvidenicas div.tabela_trajanje_legenda span.legend,
|
|
div.subpage_cas div.tabela_trajanje_legenda span.legend {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_predvidenicas div.tabela_trajanje_legenda div.legend,
|
|
div.subpage_cas div.tabela_trajanje_legenda div.legend {
|
|
width: 14px;
|
|
height: 14px;
|
|
margin-right: 8px;
|
|
border-radius: 2px;
|
|
}
|
|
div.subpage_predvidenicas div.tabela_trajanje_legenda span.legend,
|
|
div.subpage_cas div.tabela_trajanje_legenda span.legend {
|
|
margin-right: 32px;
|
|
}
|
|
|
|
div#srv_diagnostic h2 {
|
|
font-size: 24px;
|
|
margin-top: 32px;
|
|
margin-bottom: 16px;
|
|
font-weight: 300;
|
|
}
|
|
div#srv_diagnostic h2:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#srv_diagnostic table {
|
|
width: 100%;
|
|
}
|
|
div#srv_diagnostic table td a.ok {
|
|
color: #D3D3D3 !important;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper div.status {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 24px;
|
|
min-width: 88px;
|
|
border-radius: 2px;
|
|
font-size: 14px;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper div.status.notok {
|
|
background-color: #FFE3E3;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper div.status.ok {
|
|
background-color: #E3F6DE;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper div.status.rec {
|
|
background-color: #EAF9FE;
|
|
}
|
|
div#srv_diagnostic table td div.status_wrapper div.status a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: space-between;
|
|
gap: 32px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle {
|
|
width: 33%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box {
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
min-height: 150px;
|
|
font-size: 14px !important;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .title,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .title {
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: -8px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .circle,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .circle {
|
|
height: 88px;
|
|
width: 88px;
|
|
margin-right: 16px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text .desc,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text .desc {
|
|
margin-bottom: 16px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text a,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text a {
|
|
text-decoration: none;
|
|
font-size: 14px !important;
|
|
white-space: nowrap;
|
|
margin-bottom: 10px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .time,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .time {
|
|
font-size: 32px;
|
|
margin-bottom: 12px;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .time span.time_text,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .time span.time_text {
|
|
font-size: 14px !important;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box a,
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box a {
|
|
text-decoration: none;
|
|
font-size: 14px !important;
|
|
white-space: nowrap;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right {
|
|
width: 33%;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box {
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box .vertical_section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box .vertical_section .item {
|
|
font-size: 14px !important;
|
|
padding: 13px 16px;
|
|
white-space: nowrap;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box .vertical_section .item:not(:last-of-type) {
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box .vertical_section.second {
|
|
width: 100%;
|
|
}
|
|
div#srv_diagnostic .lastnosti_wrapper .lastnosti_right .box .vertical_section.second .item {
|
|
font-weight: 600;
|
|
text-transform: lowercase;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_left,
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_right {
|
|
width: 50%;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
padding: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_left .title,
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_right .title {
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_left .comment_count,
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_right .comment_count {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding-bottom: 8px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
margin-bottom: 8px;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_left .comment_count:last-of-type,
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_right .comment_count:last-of-type {
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_left a,
|
|
div#srv_diagnostic .komentarji_wrapper .komentarji_right a {
|
|
text-decoration: none;
|
|
font-size: 14px !important;
|
|
white-space: nowrap;
|
|
}
|
|
div#srv_diagnostic .input_box {
|
|
display: flex;
|
|
width: 300px;
|
|
padding: 10px 0 10px 8px;
|
|
border: 1px solid #C4C4C4;
|
|
}
|
|
div#srv_diagnostic .input_box input {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
width: 90%;
|
|
}
|
|
div#srv_diagnostic .button_holder {
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
}
|
|
div#srv_diagnostic .button_holder button {
|
|
margin: 0 0 0 8px;
|
|
}
|
|
|
|
div.page_komentarji #additional_navigation,
|
|
div.page_komentarji_anketa #additional_navigation {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
div.page_komentarji #additional_navigation #komentarji_menu,
|
|
div.page_komentarji_anketa #additional_navigation #komentarji_menu {
|
|
width: fit-content;
|
|
}
|
|
div.page_komentarji div#comment_question_note,
|
|
div.page_komentarji_anketa div#comment_question_note {
|
|
margin-bottom: 16px;
|
|
font-size: 20px;
|
|
}
|
|
div.page_komentarji div#comment_question_note span,
|
|
div.page_komentarji_anketa div#comment_question_note span {
|
|
font-size: inherit;
|
|
}
|
|
div.page_komentarji div.testni_vnos,
|
|
div.page_komentarji_anketa div.testni_vnos {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji div.testni_vnos a,
|
|
div.page_komentarji_anketa div.testni_vnos a {
|
|
text-decoration: none;
|
|
}
|
|
div.page_komentarji div.testni_vnos .monitor,
|
|
div.page_komentarji_anketa div.testni_vnos .monitor {
|
|
position: relative;
|
|
}
|
|
div.page_komentarji div.testni_vnos .monitor:after,
|
|
div.page_komentarji_anketa div.testni_vnos .monitor:after {
|
|
content: "T";
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 37%;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-size: 8px;
|
|
}
|
|
div.page_komentarji div.comment_checkboxes_wrap,
|
|
div.page_komentarji_anketa div.comment_checkboxes_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 12px;
|
|
}
|
|
div.page_komentarji div.comment_checkboxes_wrap div.setting_holder,
|
|
div.page_komentarji_anketa div.comment_checkboxes_wrap div.setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.page_komentarji div.comment_checkboxes_wrap div.setting_holder label,
|
|
div.page_komentarji_anketa div.comment_checkboxes_wrap div.setting_holder label {
|
|
margin: 0;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder {
|
|
margin-top: 32px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa {
|
|
width: 50%;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa.komentarji_ured,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa.komentarji_ured {
|
|
border-right: 1px solid #E5E5E5;
|
|
padding-right: 32px;
|
|
margin-right: 32px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.add_comment_toggle,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.add_comment_toggle {
|
|
transition: 0.3s;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
width: 100%;
|
|
padding: 9px 8px;
|
|
margin-bottom: 16px;
|
|
color: #777777;
|
|
cursor: text;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_type,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_type {
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
text-transform: uppercase;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_type .fa-sort-amount-up,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_type .fa-sort-amount-up {
|
|
display: none;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box.archived,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box.archived {
|
|
color: #777777 !important;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .user,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .user {
|
|
font-weight: 600;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by p,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by p {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
color: #1E88E5;
|
|
position: relative;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .solve,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .solve {
|
|
margin-right: 16px;
|
|
cursor: pointer;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 24px;
|
|
display: flex;
|
|
z-index: 99;
|
|
width: auto;
|
|
padding: 20px 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
flex-direction: column;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line {
|
|
white-space: nowrap;
|
|
transition: 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line:not(:last-of-type),
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line:not(:last-of-type) {
|
|
margin-bottom: 12px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line:hover,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line:hover {
|
|
color: #0059ab;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line a,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line a {
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line p,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .by .options .options_dropdown .line p {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .date,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .date {
|
|
font-size: 14px;
|
|
color: #808080;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .content,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .content {
|
|
margin: 16px 0;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .archive_comment,
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .unarchive_comment,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .archive_comment,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .unarchive_comment {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .archived_comment,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_box .bottom_options .archived_comment {
|
|
color: #808080;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper {
|
|
display: none;
|
|
transition: 0.3s;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment textarea,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment textarea {
|
|
width: 100%;
|
|
height: 100px;
|
|
}
|
|
div.page_komentarji div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment button,
|
|
div.page_komentarji_anketa div.komentarji_anketa_holder div.komentarji_anketa div.comment_wrapper div.new_comment button {
|
|
width: fit-content;
|
|
margin-top: 8px;
|
|
}
|
|
div.page_komentarji ul,
|
|
div.page_komentarji_anketa ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 32px 0 0 0;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content,
|
|
div.page_komentarji_anketa ul .spremenljivka_content {
|
|
/* font awesom za admin */
|
|
/* select, checked */
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content .icons_holder,
|
|
div.page_komentarji_anketa ul .spremenljivka_content .icons_holder {
|
|
display: none !important;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content .add-variable,
|
|
div.page_komentarji_anketa ul .spremenljivka_content .add-variable {
|
|
display: none !important;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom,
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
color: #D3D3D3;
|
|
font-weight: 400;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before {
|
|
display: inline-block;
|
|
padding-top: 4px;
|
|
padding-left: 4px;
|
|
font-weight: 400;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
color: #D3D3D3;
|
|
letter-spacing: 8px;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
color: #D3D3D3;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio],
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] {
|
|
margin: 0 8px 4px 0;
|
|
display: none !important;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-custom-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.enka-custom-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox],
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] {
|
|
display: none !important;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #1E88E5;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
div.page_komentarji ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before,
|
|
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 8px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder,
|
|
div.page_komentarji_anketa ul div.question_comment_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: 16px;
|
|
margin-bottom: 32px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 50%;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment.editor,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment.editor {
|
|
border-right: 1px solid #E5E5E5;
|
|
padding-right: 62px;
|
|
margin-right: 62px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.add_comment_toggle,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.add_comment_toggle {
|
|
transition: 0.3s;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
width: 100%;
|
|
padding: 9px 8px;
|
|
margin-bottom: 16px;
|
|
color: #777777;
|
|
cursor: text;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_type,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_type {
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
text-transform: uppercase;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_type .fa-sort-amount-up,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_type .fa-sort-amount-up {
|
|
display: none;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box.archived,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box.archived {
|
|
color: #777777 !important;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .user,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .user {
|
|
font-weight: 600;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by p,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by p {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
color: #1E88E5;
|
|
position: relative;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .solve,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .solve {
|
|
margin-right: 16px;
|
|
cursor: pointer;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 24px;
|
|
display: flex;
|
|
z-index: 99;
|
|
width: auto;
|
|
padding: 20px 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
flex-direction: column;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line {
|
|
white-space: nowrap;
|
|
transition: 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line:not(:last-of-type),
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line:not(:last-of-type) {
|
|
margin-bottom: 12px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line:hover,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line:hover {
|
|
color: #0059ab;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line a,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line a {
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line p,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .by .options .options_dropdown .line p {
|
|
font-size: 14px !important;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .date,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .date {
|
|
font-size: 14px;
|
|
color: #808080;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .content,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .content {
|
|
margin: 16px 0;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .content blockquote,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .content blockquote {
|
|
font-size: 14px !important;
|
|
border-left: 1px solid #E5E5E5;
|
|
padding-left: 8px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .content blockquote:not(:last-of-type),
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .content blockquote:not(:last-of-type) {
|
|
padding-bottom: 16px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .content blockquote:first-of-type,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .content blockquote:first-of-type {
|
|
margin-top: 16px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .bottom_options,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .bottom_options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .archive_comment,
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .unarchive_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .archive_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .unarchive_comment {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .archived_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .archived_comment {
|
|
color: #808080;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .reply_to a,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_box .bottom_options .reply_to a {
|
|
text-decoration: none;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.comment_wrapper,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.comment_wrapper {
|
|
display: none;
|
|
transition: 0.3s;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.new_comment,
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.reply_to_text,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.new_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.reply_to_text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.new_comment div.reply_to_who,
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.reply_to_text div.reply_to_who,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.new_comment div.reply_to_who,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.reply_to_text div.reply_to_who {
|
|
color: #808080;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.new_comment textarea,
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.reply_to_text textarea,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.new_comment textarea,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.reply_to_text textarea {
|
|
width: 100%;
|
|
height: 100px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.new_comment button,
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment div.reply_to_text button,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.new_comment button,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment div.reply_to_text button {
|
|
width: fit-content;
|
|
margin-top: 8px;
|
|
}
|
|
div.page_komentarji ul div.question_comment_holder div.question_comment .new_comment,
|
|
div.page_komentarji_anketa ul div.question_comment_holder div.question_comment .new_comment {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
#placeholder.komentarji {
|
|
margin: 0px;
|
|
}
|
|
|
|
.comment {
|
|
font-style: italic;
|
|
color: #FF0000;
|
|
width: auto;
|
|
padding-right: 10px;
|
|
padding-top: 3px;
|
|
display: block;
|
|
float: left;
|
|
}
|
|
|
|
.if_comment {
|
|
font-style: italic;
|
|
color: #E5E5E5;
|
|
width: auto;
|
|
margin: 0px 3px;
|
|
}
|
|
|
|
.spr_comment {
|
|
font-style: italic;
|
|
color: #E5E5E5;
|
|
width: auto;
|
|
margin: 0px 3px;
|
|
}
|
|
|
|
#quick_comments_link a span.link {
|
|
display: inline-block;
|
|
padding: 3px !important;
|
|
padding-bottom: 5px !important;
|
|
font-size: 11px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#quick_comments_link.newCss {
|
|
text-align: center;
|
|
}
|
|
#quick_comments_link.newCss img {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.comments_on_alert {
|
|
margin-bottom: 32px;
|
|
padding: 16px 32px;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.comments_on_alert .title {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
padding-bottom: 8px;
|
|
margin-bottom: 8px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.comments_on_alert .title .faicon {
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
.comments_on_alert a {
|
|
font-weight: 500;
|
|
}
|
|
.comments_on_alert a:hover {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.comment_qtip_title_secondLine {
|
|
color: #E5E5E5;
|
|
font-weight: normal !important;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
#topSettingsHolder.komentarji #additional_navigation span.bold,
|
|
#topSettingsHolder.komentarji_anketa #additional_navigation span.bold {
|
|
margin: 0 0 0 8px;
|
|
font-size: 14px;
|
|
}
|
|
#topSettingsHolder.komentarji #additional_navigation span.bold span,
|
|
#topSettingsHolder.komentarji_anketa #additional_navigation span.bold span {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
div.subpage_testnipodatki fieldset fieldset:first-of-type {
|
|
margin-top: 16px;
|
|
}
|
|
div.subpage_testnipodatki fieldset fieldset:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_testnipodatki fieldset fieldset table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
div.subpage_testnipodatki fieldset fieldset table td.graph_cell {
|
|
width: 100%;
|
|
}
|
|
div.subpage_testnipodatki fieldset fieldset table td.graph_cell div.graph_cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div.subpage_testnipodatki fieldset fieldset table td.graph_cell div.graph_cell .graph_full {
|
|
background-color: #1E88E5;
|
|
height: 16px;
|
|
margin-right: 8px;
|
|
}
|
|
div.subpage_testnipodatki fieldset div.setting_holder .max_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div.subpage_testnipodatki fieldset div.setting_holder .max_wrap input.text {
|
|
width: 150px;
|
|
height: 40px;
|
|
margin-right: 8px;
|
|
}
|
|
div.subpage_testnipodatki fieldset .button_holder {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
div#vabila div.top_note {
|
|
position: relative;
|
|
}
|
|
div#vabila div.top_note .note_hide {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div#vabila div.top_note .note_hide:hover {
|
|
color: #333333;
|
|
}
|
|
div#vabila div.top_note .note_hide a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div#vabila div.top_note .note_hide a:hover {
|
|
color: #333333;
|
|
}
|
|
div#vabila div.top_note div.top_note_activate {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div#vabila div.top_note div.top_note_activate p {
|
|
margin-right: 12px;
|
|
}
|
|
div#vabila div.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
margin-top: 48px;
|
|
}
|
|
div#vabila div.title:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#vabila div.title div.title_icon {
|
|
height: 30px;
|
|
width: 30px;
|
|
border-radius: 2px;
|
|
background-color: #EAF9FE;
|
|
color: #1E88E5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 8px;
|
|
}
|
|
div#vabila div.title h2 {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
div#vabila div.title h2:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-right: -100%;
|
|
margin-left: 8px;
|
|
border-top: 1px solid #E5E5E5;
|
|
}
|
|
div#vabila div.button_holder {
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
div#vabila div.button_holder .copy_survey_url_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
div#vabila div.button_holder .copy_survey_url_holder .input_box {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid #C4C4C4;
|
|
width: 300px;
|
|
padding: 10px 0 10px 8px;
|
|
}
|
|
div#vabila div.button_holder .copy_survey_url_holder .input_box input {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
width: 100%;
|
|
}
|
|
div#vabila div.button_holder .copy_survey_url_holder button {
|
|
min-width: 114px;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
div#vabila div.button_holder #nice_url_button {
|
|
margin: 0 0 0 32px;
|
|
}
|
|
div#vabila div.button_holder #nice_url_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin: 0 0 0 32px;
|
|
}
|
|
div#vabila div.button_holder #nice_url_holder .url {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div#vabila div.button_holder #nice_url_holder .url input {
|
|
margin: 0 8px;
|
|
width: 200px;
|
|
}
|
|
div#vabila div.button_holder #nice_url_holder .buttons {
|
|
display: flex;
|
|
}
|
|
div#vabila div.button_holder #nice_url_holder .buttons button {
|
|
min-width: 114px;
|
|
margin-right: 8px;
|
|
margin-left: 0;
|
|
}
|
|
div#vabila div#nice_url_error {
|
|
width: 100%;
|
|
text-align: right;
|
|
}
|
|
div#vabila p.survey_links {
|
|
margin-top: 16px;
|
|
}
|
|
div#vabila p.survey_links:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
div#vabila div.grouplang,
|
|
div#vabila div.niceurl {
|
|
margin-top: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
div#vabila div.grouplang span.faicon,
|
|
div#vabila div.niceurl span.faicon {
|
|
margin-left: 9px;
|
|
cursor: pointer;
|
|
}
|
|
div#vabila div.more {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
column-gap: 32px;
|
|
row-gap: 14px;
|
|
}
|
|
div#vabila div.more div.more_block {
|
|
height: auto;
|
|
width: 100%;
|
|
max-width: 298px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
padding: 16px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
}
|
|
div#vabila div.more div.more_block:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
div#vabila div.more div.more_block div.more_title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
font-size: 16px;
|
|
}
|
|
div#vabila div.more div.more_block div.more_title div.more_title_icon {
|
|
height: 24px;
|
|
width: 24px;
|
|
border-radius: 2px;
|
|
background-color: #EAF9FE;
|
|
color: #1E88E5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 8px;
|
|
position: relative;
|
|
}
|
|
div#vabila div.more div.more_block div.more_title div.more_title_icon span.fa-1 {
|
|
font-size: 8px;
|
|
position: absolute;
|
|
bottom: 1px;
|
|
right: 1px;
|
|
}
|
|
div#vabila div.more div.more_block div.more_title .mail_yellow {
|
|
margin-left: 32px;
|
|
}
|
|
div#vabila div.more div.more_block div.more_title a.help {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
div#general_popup div.popup_content.publish {
|
|
max-width: 600px;
|
|
}
|
|
div#general_popup div.popup_content.publish textarea {
|
|
width: 100%;
|
|
padding: 8px;
|
|
height: auto;
|
|
min-width: 600px;
|
|
}
|
|
div#general_popup div.popup_content.publish textarea.iframe {
|
|
height: 155px;
|
|
}
|
|
div#general_popup div.popup_content.publish.qr {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings p {
|
|
margin-bottom: 16px;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings p span {
|
|
font-weight: 600;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings p a {
|
|
font-weight: 400;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings p a span {
|
|
font-weight: 400;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings .as_link {
|
|
text-decoration: none;
|
|
color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings .as_link span.faicon {
|
|
margin-right: 5px;
|
|
font-size: 14px;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings div#srv_objava_info_more2 {
|
|
margin-bottom: 16px;
|
|
}
|
|
div#general_popup div.popup_content.publish.settings div#publish_settings_more {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (max-width: 1130px) {
|
|
.more {
|
|
grid-template-columns: 1fr 1fr !important;
|
|
column-gap: 32px;
|
|
row-gap: 14px;
|
|
}
|
|
.more .more_block {
|
|
max-width: 92% !important;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1025px) {
|
|
#vabila .copy_survey_url_holder .input_box {
|
|
width: 300px;
|
|
}
|
|
#vabila .button_holder {
|
|
display: unset;
|
|
}
|
|
#vabila .button_holder #nice_url_button {
|
|
margin: 16px 0px !important;
|
|
}
|
|
#vabila .button_holder #nice_url_holder {
|
|
margin: 16px 0px !important;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
@media screen and (max-width: 850px) {
|
|
.page_vabila #vabila .button_holder #nice_url_holder {
|
|
flex-direction: row !important;
|
|
}
|
|
.page_vabila #vabila .button_holder #nice_url_holder .url {
|
|
margin-top: 9px;
|
|
}
|
|
.page_vabila #vabila .button_holder #nice_url_holder .buttons {
|
|
margin: 9px 0px 0px 0px !important;
|
|
}
|
|
|
|
div#vabila div.more div.more_block {
|
|
width: 89% !important;
|
|
}
|
|
}
|
|
@media screen and (max-width: 725px) {
|
|
h2 {
|
|
font-size: 20px !important;
|
|
}
|
|
}
|
|
@media screen and (max-width: 660px) {
|
|
.page_vabila #vabila .more {
|
|
grid-template-columns: 1fr !important;
|
|
}
|
|
.page_vabila #vabila .more .more_block {
|
|
width: 100% !important;
|
|
max-width: 93% !important;
|
|
}
|
|
.page_vabila #vabila .more .more_block #text {
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media screen and (max-width: 500px) {
|
|
.page_vabila #vabila .button_holder #nice_url_holder {
|
|
flex-direction: column !important;
|
|
}
|
|
}
|
|
.page_invitations .invitations_holder.half-half {
|
|
display: flex;
|
|
}
|
|
.page_invitations .invitations_holder.half-half .left_holder {
|
|
width: 50%;
|
|
margin-right: 32px;
|
|
}
|
|
.page_invitations .invitations_holder.half-half .right_holder {
|
|
width: 50%;
|
|
}
|
|
.page_invitations .invitations_holder.left-menu {
|
|
display: flex;
|
|
}
|
|
.page_invitations .invitations_holder.left-menu .left_holder {
|
|
width: 300px;
|
|
min-width: 300px;
|
|
margin-right: 32px;
|
|
}
|
|
.page_invitations .invitations_holder.left-menu .right_holder {
|
|
flex-grow: 1;
|
|
}
|
|
.page_invitations .invitations_holder.three-part {
|
|
display: flex;
|
|
}
|
|
.page_invitations .invitations_holder.three-part .left_holder {
|
|
width: 300px;
|
|
min-width: 300px;
|
|
margin-right: 32px;
|
|
}
|
|
.page_invitations .invitations_holder.three-part .middle_holder {
|
|
flex-grow: 1;
|
|
}
|
|
.page_invitations .invitations_holder.three-part .right_holder {
|
|
width: 400px;
|
|
min-width: 400px;
|
|
margin-left: 32px;
|
|
}
|
|
.page_invitations .invitations_holder.fullwidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.page_invitations #inv_top_navi {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
margin-bottom: 48px;
|
|
color: #E5E5E5;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step a {
|
|
color: #A0A0A0;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step span {
|
|
color: #A0A0A0;
|
|
font-size: 14px;
|
|
transition: 0.2s;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step span.number {
|
|
line-height: 20px;
|
|
padding: 0 6px;
|
|
margin-right: 8px;
|
|
border: 1px #A0A0A0 solid;
|
|
border-radius: 2px;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step span.faicon:before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
transition: 0.2s;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step:hover a,
|
|
.page_invitations #inv_top_navi .inv_step:hover .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step:hover .number {
|
|
color: #1E88E5;
|
|
border-color: #1E88E5;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step.active a,
|
|
.page_invitations #inv_top_navi .inv_step.active .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step.active .number {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
border-color: #1E88E5;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_space {
|
|
width: 50px;
|
|
height: 1px;
|
|
margin: 0 8px;
|
|
border-top: 1px #D3D3D3 dashed;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_nav_settings {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_nav_settings .faicon {
|
|
margin-left: 64px;
|
|
}
|
|
|
|
/*
|
|
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 : 08-Aug-2018, 12:25:26
|
|
Author : podkrizniku
|
|
*/
|
|
body #main_holder #main .page_invitations .invitations_holder.fullwidth {
|
|
margin: 0 auto;
|
|
padding: 0 32px;
|
|
max-width: 1060px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_holder.fullwidth fieldset p {
|
|
margin-bottom: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_top_settings {
|
|
margin-bottom: 16px;
|
|
font-weight: 600;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_top_settings .faicon {
|
|
margin-left: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_top_settings #srv_invitation_note {
|
|
margin-top: 8px;
|
|
font-weight: 400;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_holder_noEmailing {
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_message_errors {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_message_errors span {
|
|
padding-bottom: 8px;
|
|
color: red;
|
|
font-weight: 500;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder {
|
|
min-height: 355px;
|
|
padding: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder > span {
|
|
line-height: 28px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
min-width: 200px;
|
|
max-height: 400px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: white;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li {
|
|
cursor: pointer;
|
|
list-style-type: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 35px;
|
|
padding: 0px 8px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li.active {
|
|
color: #1E88E5;
|
|
background-color: #F4F9FE;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li:hover {
|
|
background-color: #F4F9FE;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li .faicon {
|
|
margin-left: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder #inv_import_list_profiles ol li .faicon:before {
|
|
font-size: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder .info {
|
|
margin: 16px 0 0 0;
|
|
color: #A0A0A0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_recipients_profiles_holder .info div {
|
|
margin-bottom: 4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container {
|
|
min-height: 355px;
|
|
margin-bottom: 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container span label {
|
|
vertical-align: bottom;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container .setting_line {
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container .setting_line textarea {
|
|
width: 100%;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container #inv_field_container {
|
|
margin: 16px 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container .inv_sample .italic {
|
|
color: #A0A0A0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_import_list_container #inv_ValidateSysVarsMappingFrm span {
|
|
margin-right: 16px;
|
|
color: #A0A0A0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 40px;
|
|
box-sizing: border-box;
|
|
margin-bottom: 16px;
|
|
padding: 0 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting {
|
|
margin-right: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting#conditionProfileNote {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
background-color: #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting#conditionProfileNote span {
|
|
margin-left: 8px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting#conditionProfileNote a {
|
|
margin-left: 4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting label {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting input[type=text] {
|
|
width: 160px;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_rec_filter .setting select {
|
|
width: 90px;
|
|
margin: 0 0 0 8px;
|
|
}
|
|
body #main_holder #main .page_invitations .filter_note {
|
|
margin-bottom: 16px;
|
|
color: #FF0000;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
body #main_holder #main .page_invitations #srv_invitation_note {
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #srv_invitation_note span {
|
|
margin-right: 16px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #srv_invitation_note label {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .search_count {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .excel_export {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .excel_export .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: auto;
|
|
padding: 4px;
|
|
background: #F8F8F8;
|
|
border-radius: 2px;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination .page_number {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 4px;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination .page_number:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination .page_number.currentPage {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination .arrow {
|
|
margin: 0 4px;
|
|
transition: 0.2s;
|
|
}
|
|
body #main_holder #main .page_invitations .pagination_holder #pagination .arrow.disabledPage {
|
|
color: #777777;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder {
|
|
overflow-x: auto;
|
|
margin: 8px 0;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list {
|
|
margin: 0;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr th {
|
|
position: relative;
|
|
min-height: 40px;
|
|
padding: 10px 16px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr th .sort_descending,
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr th .sort_ascending {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 20px;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr th input[type=checkbox] + label::before {
|
|
font-weight: 400;
|
|
letter-spacing: 0;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr th input[type=checkbox]:checked + label::before {
|
|
font-weight: 600;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td {
|
|
white-space: nowrap;
|
|
min-height: 40px;
|
|
padding: 10px 16px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.delete,
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.edit {
|
|
cursor: pointer;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.delete:before,
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.edit:before {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.delete.faicon.delete,
|
|
body #main_holder #main .page_invitations .table_holder table#tbl_recipients_list tr td .faicon.edit.faicon.delete {
|
|
margin-right: 16px;
|
|
margin-left: -8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_actions {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_actions a {
|
|
margin-right: 16px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_actions a .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_actions a .faicon:before {
|
|
font-size: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_activate a {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_bottom_edit .bottom_activate a .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder {
|
|
min-height: 355px;
|
|
padding: 16px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder > span {
|
|
line-height: 28px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
min-width: 200px;
|
|
max-height: 400px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: white;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li {
|
|
cursor: pointer;
|
|
list-style-type: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 35px;
|
|
padding: 0px 8px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li.active {
|
|
color: #1E88E5;
|
|
background-color: #F4F9FE;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li:hover {
|
|
background-color: #F4F9FE;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li .faicon {
|
|
margin-left: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder #invitation_messages ol li .faicon:before {
|
|
font-size: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder .info {
|
|
margin: 16px 0 0 0;
|
|
color: #A0A0A0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_messages_profiles_holder .info div {
|
|
margin-bottom: 4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_row {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_row .setting_item {
|
|
margin-right: 32px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item label {
|
|
margin-bottom: 4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item input,
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item select,
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item textarea {
|
|
margin: 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_msg_preview_hld .setting_item input[type=text] {
|
|
width: 100%;
|
|
}
|
|
body #main_holder #main .page_invitations #invitation_profile_notes {
|
|
padding: 16px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #invitation_profile_notes p {
|
|
margin: 0 0 16px 0;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.hor {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.hor.align-top {
|
|
align-items: flex-start;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.hor label {
|
|
width: 130px;
|
|
text-align: right;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > span,
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > label,
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > div {
|
|
margin-bottom: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > span:last-child,
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > label:last-child,
|
|
body #main_holder #main .page_invitations #inv_send_mail .setting_item.ver > div:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 27px;
|
|
left: 220px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
background-color: #E5E5E5;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote span {
|
|
margin-left: 8px;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote a {
|
|
margin-left: 4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote .faicon.edit,
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote .faicon.delete {
|
|
cursor: pointer;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote .faicon.edit:before,
|
|
body #main_holder #main .page_invitations #inv_send_mail .condition_holder #conditionProfileNote .faicon.delete:before {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail #inv_send_advanced_div {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail table tr td {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail input[type=text] {
|
|
margin-top: -4px;
|
|
}
|
|
body #main_holder #main .page_invitations #inv_send_mail button {
|
|
width: 160px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status table {
|
|
margin: 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr td,
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr th {
|
|
text-align: right;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr td:nth-child(1),
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr th:nth-child(1) {
|
|
text-align: left;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr td.indent,
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder table tr th.indent {
|
|
padding-left: 32px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder .arhiv_holder {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder .arhiv_holder .arhiv_info_holder .inv_dashboard_sub_title {
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder .arhiv_holder .arhiv_sub_holder {
|
|
margin: 8px 0 0 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .left_holder .arhiv_holder .arhiv_sub_holder table {
|
|
margin-top: 8px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitations_status .right_holder table tr td,
|
|
body #main_holder #main .page_invitations .invitations_status .right_holder table tr th {
|
|
text-align: right;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .setting_item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder {
|
|
margin-right: 0;
|
|
padding-right: 32px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder .top_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
margin-bottom: 16px;
|
|
padding: 0 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list {
|
|
margin-top: 32px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td label,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th label {
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td input[type=checkbox] + label::before,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th input[type=checkbox] + label::before {
|
|
font-weight: 400;
|
|
letter-spacing: 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td input[type=checkbox]:checked + label::before,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th input[type=checkbox]:checked + label::before {
|
|
font-weight: 700;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td.edit,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th.edit {
|
|
width: 90px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td.edit .faicon,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th.edit .faicon {
|
|
cursor: pointer;
|
|
margin-left: 16px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td.edit .faicon:before,
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th.edit .faicon:before {
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr td:nth-child(3),
|
|
body #main_holder #main .page_invitations .invitation_lists .left_holder #inv_edit_rec_list table tr th:nth-child(3) {
|
|
text-align: right;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder {
|
|
padding-left: 32px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder table {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder table tr {
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder table tr td,
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder table tr th {
|
|
font-size: 14px;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder textarea {
|
|
width: 100%;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder .info_box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder .info_box span {
|
|
margin-bottom: 4px;
|
|
color: #A0A0A0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder .info_box .setting_item {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
body #main_holder #main .page_invitations .invitation_lists .right_holder .info_box .setting_item span {
|
|
margin-bottom: 0px;
|
|
color: #333333;
|
|
}
|
|
|
|
.top_note {
|
|
padding: 16px 32px;
|
|
margin-bottom: 32px;
|
|
font-size: 16px;
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
|
|
/*&.dashboard_paradata_note{
|
|
|
|
.title{
|
|
border-bottom: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}*/
|
|
}
|
|
.top_note .title {
|
|
padding-bottom: 8px;
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.top_note .title .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#anketa_edit.page_data.fullwidth {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.data_table_top_holder {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
margin-bottom: 16px;
|
|
padding: 6px 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
.data_table_top_holder .dataFullscreen {
|
|
display: flex;
|
|
margin-right: 8px;
|
|
padding-right: 8px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue {
|
|
height: 28px;
|
|
width: auto;
|
|
min-width: auto;
|
|
padding: 0 16px;
|
|
line-height: 12px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #A9A9A9;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue.active {
|
|
color: #1E88E5;
|
|
background-color: #EEF7FF;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue#data_fullscreen_0 {
|
|
border-radius: 2px 0 0 2px;
|
|
border-right: 0;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue#data_fullscreen_0.active {
|
|
border-right: 1px #1E88E5 solid;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue#data_fullscreen_1 {
|
|
border-radius: 0 2px 2px 0;
|
|
border-left: 0;
|
|
}
|
|
.data_table_top_holder .dataFullscreen button.white-blue#data_fullscreen_1.active {
|
|
border-left: 1px #1E88E5 solid;
|
|
}
|
|
.data_table_top_holder .dataSettingsBasic {
|
|
display: flex;
|
|
margin-right: 8px;
|
|
padding-right: 8px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
.data_table_top_holder .dataSettingsBasic button.white-blue {
|
|
height: 28px;
|
|
width: 140px;
|
|
min-width: auto;
|
|
padding: 0;
|
|
line-height: 12px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
border-color: #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
.data_table_top_holder .dataSettingsBasic button.white-blue .faicon:before {
|
|
margin-right: 8px;
|
|
font-size: 12px;
|
|
color: #1E88E5;
|
|
}
|
|
.data_table_top_holder .dataSettingsBasic button.white-blue.active {
|
|
border-color: #1E88E5;
|
|
}
|
|
.data_table_top_holder #data_search_filter input {
|
|
padding: 7px 14px;
|
|
margin: 0;
|
|
height: 28px;
|
|
width: 200px;
|
|
font-size: 14px;
|
|
}
|
|
.data_table_top_holder #data_search_filter .search_filtered {
|
|
margin-left: 16px;
|
|
color: red;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija {
|
|
display: flex;
|
|
position: absolute;
|
|
right: 16px;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija select {
|
|
height: 28px;
|
|
margin: 0;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija label {
|
|
margin-right: 8px;
|
|
margin-left: 16px;
|
|
font-size: 14px;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija .faicon.arrow2_l {
|
|
margin-right: 8px;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija .faicon.arrow2_r {
|
|
margin-left: 8px;
|
|
}
|
|
.data_table_top_holder #vnosi_paginacija #div_paginacija_vprasanj {
|
|
margin-left: 16px;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes {
|
|
padding: 16px;
|
|
color: #333333;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
background: #FFFFFF;
|
|
border: 1px solid #C4C4C4;
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
z-index: 99999;
|
|
position: absolute;
|
|
top: 41px;
|
|
left: 205px;
|
|
border-radius: 2px;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes a {
|
|
text-decoration: none;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_line {
|
|
margin-bottom: 12px;
|
|
font-size: 14px;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_line.title {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .setting_line label {
|
|
font-size: 14px;
|
|
}
|
|
.data_table_top_holder #dataSettingsCheckboxes .dataSettingsCheckboxes_holder .button_holder {
|
|
padding: 8px 0 0 0;
|
|
margin: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
|
|
.data_table_bottom_holder {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-top: 32px;
|
|
}
|
|
.data_table_bottom_holder .legend_box {
|
|
box-sizing: border-box;
|
|
padding: 8px 16px;
|
|
margin-right: 16px;
|
|
width: auto;
|
|
font-size: 14px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
.data_table_bottom_holder .legend_box#bottom_data_legend_status {
|
|
background-color: #F1F8FD;
|
|
}
|
|
.data_table_bottom_holder .legend_box#bottom_data_legend_missing {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.data_table_bottom_holder .legend_box#bottom_data_legend_test {
|
|
background-color: #E9FFDE;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_title {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_title:hover {
|
|
color: #0059ab;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_title .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_title .faicon::before {
|
|
font-size: 12px;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_title span {
|
|
font-size: 14px;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_details {
|
|
display: none;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_details ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.data_table_bottom_holder .legend_box .legend_details ul li {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
#div_vnosi_data #tableContainer {
|
|
overflow-x: auto;
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller {
|
|
opacity: 0;
|
|
position: fixed;
|
|
top: calc(50% - 85px);
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller .dataTable_arrow {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
width: 32px;
|
|
height: 170px;
|
|
background-color: rgba(0, 0, 0, 0.69);
|
|
transition: 0.2s;
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller .dataTable_arrow.left {
|
|
left: 0;
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller .dataTable_arrow.right {
|
|
right: 0;
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller .dataTable_arrow:hover {
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
}
|
|
#div_vnosi_data #tableContainer #dataTableScroller .dataTable_arrow .faicon:before {
|
|
color: #FFFFFF;
|
|
font-size: 21px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable {
|
|
table-layout: fixed;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
border-spacing: 0px;
|
|
/*colgroup{
|
|
|
|
col {
|
|
width: 100px;
|
|
|
|
&.data_edit {
|
|
width: 23px;
|
|
}
|
|
}
|
|
}*/
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr:hover td {
|
|
background-color: #EEF7FF;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th {
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
overflow: hidden;
|
|
width: 125px;
|
|
max-width: 125px;
|
|
min-width: 125px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit {
|
|
width: 40px;
|
|
max-width: 40px;
|
|
min-width: 40px;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon {
|
|
cursor: pointer;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon:before {
|
|
font-size: 14px;
|
|
transition: 0.2s;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.edit:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.edit_square:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.delete:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.quick_view:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.edit:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.edit_square:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.delete:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.quick_view:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.edit:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.edit_square:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.delete:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.quick_view:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.edit:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.edit_square:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.delete:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.quick_view:before {
|
|
color: #1E88E5;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.edit:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.edit_square:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.delete:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon .faicon.quick_view:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.edit:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.edit_square:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.delete:hover:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit .faicon.quick_view:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.edit:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.edit_square:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.delete:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon .faicon.quick_view:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.edit:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.edit_square:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.delete:hover:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit .faicon.quick_view:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon label, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit label,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon label,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit label {
|
|
margin: 0;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.enkaIcon label:before, #div_vnosi_data #tableContainer table#dataTable tr td.data_edit label:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.enkaIcon label:before,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_edit label:before {
|
|
letter-spacing: 0;
|
|
font-size: 16px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tr td.data_uid,
|
|
#div_vnosi_data #tableContainer table#dataTable tr th.data_uid {
|
|
display: none;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr th {
|
|
height: 52px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
background: #F8F8F8;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr th.cell_paradata {
|
|
background: #F4F9FE;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr th span.sort_holder {
|
|
position: absolute;
|
|
margin-left: -12px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th {
|
|
cursor: pointer;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th.data_edit {
|
|
cursor: auto;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete {
|
|
display: flex;
|
|
height: 28px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete > .faicon {
|
|
margin: 5px 0 0 13px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete > .faicon:before {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #1E88E5;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete > .faicon.checkbox-empty:before {
|
|
color: #777777;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete button {
|
|
width: auto;
|
|
min-width: auto;
|
|
height: 28px;
|
|
padding: 0 16px;
|
|
margin-left: 12px;
|
|
font-weight: 400;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable thead tr.row3 th .mass_delete button .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tbody tr td {
|
|
height: 40px;
|
|
max-height: 40px;
|
|
font-size: 14px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tbody tr td span {
|
|
font-size: 14px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tbody tr td.data_edit {
|
|
max-width: none;
|
|
min-width: none;
|
|
width: auto;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tbody tr td.data_edit.delete_checkbox {
|
|
max-width: 40px;
|
|
min-width: 40px;
|
|
width: 40px;
|
|
}
|
|
#div_vnosi_data #tableContainer table#dataTable tbody tr td.hover {
|
|
cursor: pointer;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#div_vnosi_data #tableContainer .sn_title {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
body.data_fullscreen header #top_line,
|
|
body.data_fullscreen header #surveyNavigation,
|
|
body.data_fullscreen header #secondNavigation {
|
|
display: none;
|
|
}
|
|
body.data_fullscreen header #topSettingsHolder {
|
|
margin: 0 16px;
|
|
padding: 0;
|
|
width: auto;
|
|
}
|
|
body.data_fullscreen header #topSettingsHolder .left_options_holder #dataOnlyValid {
|
|
padding: 0;
|
|
border-left: 0;
|
|
}
|
|
body.data_fullscreen header #topSettingsHolder .left_options_holder #dataOnlyValid .dataOnlyValid_label {
|
|
display: block;
|
|
}
|
|
body.data_fullscreen header #topSettingsHolder #additional_navigation {
|
|
display: none;
|
|
}
|
|
body.data_fullscreen footer {
|
|
display: none;
|
|
}
|
|
body.data_fullscreen #analiza_data {
|
|
overflow: hidden;
|
|
position: fixed;
|
|
top: 44px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100% - 44px);
|
|
box-sizing: border-box;
|
|
padding: 16px 0 0 0;
|
|
margin: 0;
|
|
background-color: #FFFFFF;
|
|
}
|
|
body.data_fullscreen #analiza_data .top_note {
|
|
display: none;
|
|
}
|
|
body.data_fullscreen #analiza_data .data_table_top_holder {
|
|
padding: 0 16px 16px 16px;
|
|
margin-bottom: 0;
|
|
background-color: white;
|
|
border: 0;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
body.data_fullscreen #analiza_data #div_vnosi_data #tableContainer {
|
|
overflow-x: auto;
|
|
max-height: calc(100vh - 105px);
|
|
}
|
|
body.data_fullscreen #analiza_data #div_vnosi_data #tableContainer #dataTableScroller {
|
|
display: none;
|
|
}
|
|
body.data_fullscreen #analiza_data .data_table_bottom_holder {
|
|
display: none;
|
|
}
|
|
|
|
fieldset#calculations div.icon_holder {
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset#calculations div.icon_holder span.faicon {
|
|
margin-right: 20px;
|
|
margin-left: 0;
|
|
}
|
|
fieldset#calculations div.icon_holder span.faicon:first-of-type {
|
|
margin-left: 32px;
|
|
}
|
|
fieldset#calculations div.button_holder {
|
|
margin-top: 16px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
table#recode_table {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
table#recode_table td div.analysis_icons_holder,
|
|
table#recode_table td div.functions, table#recode_table th div.analysis_icons_holder,
|
|
table#recode_table th div.functions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: flex-start;
|
|
}
|
|
table#recode_table td div.analysis_icons_holder div.sep,
|
|
table#recode_table td div.functions div.sep, table#recode_table th div.analysis_icons_holder div.sep,
|
|
table#recode_table th div.functions div.sep {
|
|
border-right: 1px solid #E5E5E5;
|
|
padding: 0 16px;
|
|
vertical-align: middle;
|
|
width: fit-content;
|
|
}
|
|
table#recode_table td div.analysis_icons_holder div.sep.silver,
|
|
table#recode_table td div.functions div.sep.silver, table#recode_table th div.analysis_icons_holder div.sep.silver,
|
|
table#recode_table th div.functions div.sep.silver {
|
|
color: #777777;
|
|
}
|
|
table#recode_table td.functions_column, table#recode_table th.functions_column {
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
|
|
div.subpage_coding .layout_right_item fieldset div#displayFilterNotes {
|
|
display: none;
|
|
}
|
|
div.subpage_coding .layout_right_item fieldset div#analiza_data {
|
|
max-width: 932px;
|
|
}
|
|
div.subpage_coding .layout_right_item fieldset div#analiza_data div.dataFullscreen {
|
|
display: none;
|
|
}
|
|
div.subpage_coding .layout_right_item fieldset div#analiza_data div.dataSettingsBasic {
|
|
border: none;
|
|
}
|
|
div.subpage_coding #dataTableScroller,
|
|
div.subpage_coding #div_analiza_filtri_right {
|
|
display: none;
|
|
}
|
|
div.subpage_coding #vprasanje_recode_new {
|
|
position: absolute;
|
|
top: 40% !important;
|
|
height: auto;
|
|
min-height: 100px;
|
|
width: 350px;
|
|
padding: 10px;
|
|
font-size: 13px;
|
|
background-color: white;
|
|
border: 4px solid #1E88E5;
|
|
border-radius: 7px;
|
|
-moz-border-radius: 7px 7px 7px 7px;
|
|
-webkit-border-radius: 7px;
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
|
|
-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
|
|
}
|
|
div.subpage_coding .coding-refresh {
|
|
/*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: 1000;
|
|
left: calc(50% - 150px);
|
|
top: 20px;
|
|
text-align: center;
|
|
width: 300px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding .coding-refresh h2,
|
|
div.subpage_coding .coding-refresh .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
div.subpage_coding .coding-refresh h2 span.faicon,
|
|
div.subpage_coding .coding-refresh h2 span.fa-brands,
|
|
div.subpage_coding .coding-refresh .divPopUp_top span.faicon,
|
|
div.subpage_coding .coding-refresh .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding .coding-refresh h2 span.faicon:before,
|
|
div.subpage_coding .coding-refresh h2 span.fa-brands:before,
|
|
div.subpage_coding .coding-refresh .divPopUp_top span.faicon:before,
|
|
div.subpage_coding .coding-refresh .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh p {
|
|
line-height: 20px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_note,
|
|
div.subpage_coding .coding-refresh .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left .list .list-item.active, div.subpage_coding .coding-refresh .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .setting_line label,
|
|
div.subpage_coding .coding-refresh .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_coding .coding-refresh .popup_main .settings_block label,
|
|
div.subpage_coding .coding-refresh .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .coding-refresh .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
div.subpage_coding .coding-refresh .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
div.subpage_coding .coding-refresh.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
div.subpage_coding #coding {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
position: absolute;
|
|
width: 600px;
|
|
min-height: 100px;
|
|
display: none;
|
|
box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
div.subpage_coding #coding .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div.subpage_coding #coding .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding #coding .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div.subpage_coding #coding .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding #coding h2,
|
|
div.subpage_coding #coding .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
div.subpage_coding #coding h2 span.faicon,
|
|
div.subpage_coding #coding h2 span.fa-brands,
|
|
div.subpage_coding #coding .divPopUp_top span.faicon,
|
|
div.subpage_coding #coding .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding #coding h2 span.faicon:before,
|
|
div.subpage_coding #coding h2 span.fa-brands:before,
|
|
div.subpage_coding #coding .divPopUp_top span.faicon:before,
|
|
div.subpage_coding #coding .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding p {
|
|
line-height: 20px;
|
|
}
|
|
div.subpage_coding #coding .popup_note,
|
|
div.subpage_coding #coding .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding #coding .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding #coding .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
div.subpage_coding #coding .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left .list .list-item.active, div.subpage_coding #coding .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
div.subpage_coding #coding .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
div.subpage_coding #coding .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
div.subpage_coding #coding .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_coding #coding .popup_main .setting_line label,
|
|
div.subpage_coding #coding .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_coding #coding .popup_main .settings_block label,
|
|
div.subpage_coding #coding .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
div.subpage_coding #coding .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
div.subpage_coding #coding.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
div.subpage_coding #coding div.button_holder {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_coding #coding div.button_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_coding #coding div.button_holder.left {
|
|
justify-content: flex-start !important;
|
|
}
|
|
div.subpage_coding #coding h2 {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
div.subpage_coding #coding h2 span.faicon,
|
|
div.subpage_coding #coding h2 span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding #coding h2 span.faicon:before,
|
|
div.subpage_coding #coding h2 span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div.subpage_coding #coding .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding #coding .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div.subpage_coding #coding .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding #coding fieldset {
|
|
padding: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name {
|
|
background-color: #F8F8F8;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 8px 11px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
min-height: 45px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name div.osnovno {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name div.osnovno p, div.subpage_coding #coding fieldset div.variable_name div.osnovno span {
|
|
margin-right: 8px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name div.osnovno p.faicon, div.subpage_coding #coding fieldset div.variable_name div.osnovno span.faicon {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name div.urejanje {
|
|
font-size: 14px !important;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_name div.urejanje select.dropdown {
|
|
margin: 0 16px 0 8px !important;
|
|
width: 140px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content {
|
|
box-sizing: border-box;
|
|
padding: 8px 11px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content div.setting_holder {
|
|
margin-bottom: 8px;
|
|
min-height: 28px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content div.setting_holder.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content div.setting_holder.horizontal div.setting_item label {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content div.setting_holder.horizontal select.dropdown {
|
|
margin: 0;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content input.text {
|
|
width: 140px;
|
|
margin: 0 8px 0 0;
|
|
}
|
|
div.subpage_coding #coding fieldset div.variable_content span.faicon {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding #coding div.setting_holder.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
}
|
|
div.subpage_coding #coding div.setting_holder.horizontal div.inline {
|
|
margin-top: 0;
|
|
}
|
|
div.subpage_coding #coding div.setting_holder.horizontal div.inline button {
|
|
margin: 0 0 0 8px;
|
|
min-width: 110px;
|
|
}
|
|
div.subpage_coding #coding div.setting_holder.horizontal div.inline input {
|
|
margin: 0 0 0 8px;
|
|
}
|
|
div.subpage_coding ul.recode_number_sort {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
div.subpage_coding ul.recode_number_sort li {
|
|
list-style: none;
|
|
border: 1px solid #1E88E5;
|
|
margin: 7px 10px 7px 0px;
|
|
padding: 3px 0px;
|
|
width: 100%;
|
|
}
|
|
div.subpage_coding .recoding_variable_div {
|
|
padding: 8px 3px;
|
|
}
|
|
div.subpage_coding .ui-recode-placeholder {
|
|
background: #EAF9FE;
|
|
border: 1px dashed #333333;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
position: fixed;
|
|
min-height: 50px;
|
|
height: auto;
|
|
top: 40vh;
|
|
left: calc(50% + 360px);
|
|
min-width: 200px;
|
|
width: auto;
|
|
z-index: 1000;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka h2,
|
|
div.subpage_coding .floatRecodeSpremenljivka .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka h2 span.faicon,
|
|
div.subpage_coding .floatRecodeSpremenljivka h2 span.fa-brands,
|
|
div.subpage_coding .floatRecodeSpremenljivka .divPopUp_top span.faicon,
|
|
div.subpage_coding .floatRecodeSpremenljivka .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka h2 span.faicon:before,
|
|
div.subpage_coding .floatRecodeSpremenljivka h2 span.fa-brands:before,
|
|
div.subpage_coding .floatRecodeSpremenljivka .divPopUp_top span.faicon:before,
|
|
div.subpage_coding .floatRecodeSpremenljivka .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka p {
|
|
line-height: 20px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_note,
|
|
div.subpage_coding .floatRecodeSpremenljivka .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left .list .list-item.active, div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .setting_line label,
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .settings_block label,
|
|
div.subpage_coding .floatRecodeSpremenljivka .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
div.subpage_coding .floatRecodeSpremenljivka.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
div.subpage_calculation div#calculation div#calculation_editing_inner div#calculation_editing_calculations {
|
|
font-weight: 600;
|
|
font-size: 20px;
|
|
}
|
|
div.subpage_calculation div#calculation div#calculation_editing_inner p#calculation_editing_operators a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
div.appendmerge_indent {
|
|
margin: 16px 0 16px 16px;
|
|
}
|
|
div.appendmerge_indent textarea {
|
|
width: 100%;
|
|
}
|
|
div.appendmerge_indent ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-position: inside;
|
|
}
|
|
div.appendmerge_indent ul li.nocursor label {
|
|
cursor: default;
|
|
}
|
|
div.appendmerge_indent div.setting_holder input[type=number] {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
width: 100px;
|
|
margin-top: 4px;
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
div.appendmerge_indent div.setting_holder input[type=number]:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
|
|
#inv_field_container {
|
|
display: block !important;
|
|
margin: 24px 0;
|
|
padding: 0px !important;
|
|
clear: both;
|
|
font-size: 11px;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
-ms-user-select: none;
|
|
}
|
|
#inv_field_container ul {
|
|
display: flex !important;
|
|
flex-wrap: wrap;
|
|
margin: 0px !important;
|
|
padding: 0px !important;
|
|
clear: both;
|
|
list-style-type: none;
|
|
font-size: 11px;
|
|
border: #E5E5E5;
|
|
}
|
|
#inv_field_container ul li {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
height: 44px;
|
|
width: 22%;
|
|
min-width: 200px;
|
|
box-sizing: border-box;
|
|
padding: 12px 0px 12px 16px;
|
|
margin: 4px;
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#inv_field_container ul li label {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
line-height: 40px;
|
|
margin: 0;
|
|
}
|
|
|
|
ul#merge {
|
|
display: flex !important;
|
|
flex-wrap: wrap;
|
|
margin: 0px !important;
|
|
padding: 0px !important;
|
|
clear: both;
|
|
list-style-type: none;
|
|
font-size: 11px;
|
|
border: #E5E5E5;
|
|
}
|
|
ul#merge li {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
height: 44px;
|
|
width: 22%;
|
|
min-width: 200px;
|
|
box-sizing: border-box;
|
|
padding: 12px 16px;
|
|
margin: 4px;
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
Podatki - vpogled
|
|
*/
|
|
.quick_edit_container .pagination_holder {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: auto;
|
|
padding: 4px;
|
|
background: #F8F8F8;
|
|
border-radius: 2px;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination .page_number {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 4px;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination .page_number:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination .page_number.currentPage {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination .arrow {
|
|
margin: 0 4px;
|
|
transition: 0.2s;
|
|
}
|
|
.quick_edit_container .pagination_holder .pagination .arrow.disabledPage {
|
|
color: #777777;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
padding-bottom: 24px;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons {
|
|
position: absolute;
|
|
left: 0;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon {
|
|
cursor: pointer;
|
|
margin-right: 16px;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon:before {
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon.delete {
|
|
padding-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon.gray:before {
|
|
color: #808080;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_icons .faicon.pdf:before {
|
|
color: #FF0000;
|
|
}
|
|
.quick_edit_container #quick_edit_top_line .quick_edit_title {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
font-size: 22px;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
padding-top: 24px;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon {
|
|
cursor: pointer;
|
|
margin-right: 16px;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon:before {
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon.delete {
|
|
padding-right: 16px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon.gray:before {
|
|
color: #808080;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .quick_edit_icons .faicon.pdf:before {
|
|
color: #FF0000;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .button_holder {
|
|
margin: 0;
|
|
}
|
|
.quick_edit_container .quick_edit_bottom_line .button_holder button {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
.quick_edit_container #edit_survey_data {
|
|
display: flex;
|
|
align-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder {
|
|
box-sizing: border-box;
|
|
margin: 0 0 0 16px;
|
|
width: 280px;
|
|
min-width: 280px;
|
|
max-width: 280px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta {
|
|
padding: 16px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta .title {
|
|
text-align: left;
|
|
font-weight: 600;
|
|
font-size: 20px;
|
|
color: #333333;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta table {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta table tr td {
|
|
box-sizing: border-box;
|
|
padding: 8px 0;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
border: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta table tr td.left {
|
|
width: 40%;
|
|
font-weight: 600;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_meta_holder #quick_edit_meta table tr td.right {
|
|
width: 60%;
|
|
max-width: 140px;
|
|
word-wrap: break-word;
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner {
|
|
width: 100%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 24px 0;
|
|
color: #333333;
|
|
border-top: 1px solid #E5E5E5;
|
|
/* awesome radio in checkboxi */
|
|
/* custom checkbox and radio buttons */
|
|
/* Obstoječe skrijemo*/
|
|
/* Disabled radio / checkbox */
|
|
/* checkbox */
|
|
/* radio */
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .naslov {
|
|
margin: 0 0 24px 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .naslov p {
|
|
margin: 0;
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .naslov .spremenljivka_info {
|
|
margin-top: 4px;
|
|
color: #a9a9a9;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .variable_holder {
|
|
height: auto !important;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .variable_holder .variabla {
|
|
padding: 0 0 16px 0;
|
|
font-size: 16px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .variable_holder .variabla:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=text], .quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka textarea, .quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka select {
|
|
margin: 0;
|
|
padding: 5px 7px;
|
|
min-width: 100px;
|
|
border-radius: 3px;
|
|
border: 1px #3e3e3e solid;
|
|
background-color: #fff;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox], .quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] {
|
|
opacity: 0;
|
|
position: absolute !important;
|
|
width: 30px;
|
|
height: 24px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio:before,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-custom-radio:before,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-vizualna-skala::before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox]:disabled + span.enka-checkbox-radio:before,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio]:disabled + span.enka-checkbox-radio:before {
|
|
opacity: 0.5;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 15px;
|
|
-webkit-text-stroke: 0.35px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
letter-spacing: 10px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "";
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .custom_radio_picture.obarvan > label > span.enka-custom-radio:before,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .visual-radio-scale.checked .enka-vizualna-skala {
|
|
color: #1E88E5;
|
|
font-size: 20px;
|
|
vertical-align: -1px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=text]:focus,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=number]:focus,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=email]:focus,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=password]:focus,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka textarea:focus {
|
|
border-color: #1E88E5;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table {
|
|
margin: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr td,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr th {
|
|
border: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr td.category {
|
|
text-align: center;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr td.category label {
|
|
margin: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr td.category span.enka-checkbox-radio:before {
|
|
letter-spacing: 0 !important;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.grid_table tr:nth-child(2n+1) {
|
|
background-color: #F1F8FD;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.text_vrednost {
|
|
table-layout: fixed;
|
|
text-align: left;
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
margin: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.text_vrednost tr td,
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.text_vrednost tr th {
|
|
border: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_5 {
|
|
width: 5%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_10 {
|
|
width: 10%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_15 {
|
|
width: 15%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_20 {
|
|
width: 20%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_25 {
|
|
width: 25%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_30 {
|
|
width: 30%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_33 {
|
|
width: 33.3%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_35 {
|
|
width: 35%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_40 {
|
|
width: 40%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_45 {
|
|
width: 45%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_50 {
|
|
width: 50%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_55 {
|
|
width: 55%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_60 {
|
|
width: 60%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_65 {
|
|
width: 65%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_70 {
|
|
width: 70%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_75 {
|
|
width: 75%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_80 {
|
|
width: 80%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_85 {
|
|
width: 85%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_90 {
|
|
width: 90%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_95 {
|
|
width: 95%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .width_100 {
|
|
width: 100%;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .frame_dropping_titles {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 0px auto;
|
|
height: 15px;
|
|
text-align: center;
|
|
background-color: white;
|
|
border-top: 1px solid #E5E5E5;
|
|
border-left: 1px solid #E5E5E5;
|
|
border-right: 1px solid #E5E5E5;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .frame_dropping {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
background-color: #F2F2F2;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.ranking_table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-spacing: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.ranking_table td {
|
|
width: 45%;
|
|
padding: 5px;
|
|
vertical-align: top;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.ranking_table td.middle {
|
|
width: 10%;
|
|
vertical-align: top;
|
|
text-align: center;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka table.ranking_table ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka td.middle img {
|
|
display: block;
|
|
margin: 50% 0 0 20px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .ranking {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .ranking_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .handle {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .handle_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .ime {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .izbran {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid black;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .frame_ranking {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed black;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .dropholder {
|
|
position: relative;
|
|
padding-top: 11px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .dropholder .dropzone {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .dropzone {
|
|
border-top: 1px solid black;
|
|
min-height: 100px;
|
|
padding-top: 10px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .moving {
|
|
cursor: pointer;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 230px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .frame_moving {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed black;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka ul.sorting {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .sortholder {
|
|
margin: 0 auto;
|
|
width: 250px;
|
|
padding: 5px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka .sortzone {
|
|
position: absolute;
|
|
margin: 0 auto 0 auto;
|
|
width: 250px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .comment {
|
|
clear: both;
|
|
margin-top: 10px;
|
|
}
|
|
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka.tip_17 input {
|
|
width: 50px;
|
|
}
|
|
.quick_edit_container #quick_edit_filter {
|
|
margin: 20px 0 10px 0;
|
|
width: 70%;
|
|
padding-left: 20px;
|
|
}
|
|
.quick_edit_container .loop_warning {
|
|
width: 99%;
|
|
border: 1px solid red;
|
|
padding: 5px;
|
|
margin-bottom: -10px;
|
|
}
|
|
.quick_edit_container .quick_edit_loop {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.quick_list_data {
|
|
padding: 16px;
|
|
}
|
|
.quick_list_data #dataTableScroller {
|
|
display: none;
|
|
}
|
|
.quick_list_data #dataTable {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
/*
|
|
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
|
|
*/
|
|
/*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-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#div_export_setting_show h2 span.faicon,
|
|
#div_export_setting_show h2 span.fa-brands,
|
|
#div_export_setting_show .divPopUp_top span.faicon,
|
|
#div_export_setting_show .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#div_export_setting_show h2 span.faicon:before,
|
|
#div_export_setting_show h2 span.fa-brands:before,
|
|
#div_export_setting_show .divPopUp_top span.faicon:before,
|
|
#div_export_setting_show .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show p {
|
|
line-height: 20px;
|
|
}
|
|
#div_export_setting_show .popup_note,
|
|
#div_export_setting_show .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#div_export_setting_show .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#div_export_setting_show .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#div_export_setting_show .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left .list .list-item.active, #div_export_setting_show .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#div_export_setting_show .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#div_export_setting_show .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#div_export_setting_show .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#div_export_setting_show .popup_main .setting_line label,
|
|
#div_export_setting_show .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#div_export_setting_show .popup_main .settings_block label,
|
|
#div_export_setting_show .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 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;
|
|
}
|
|
|
|
.setting_horizontal_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 0px;
|
|
}
|
|
.setting_horizontal_wrapper .setting_holder {
|
|
margin-right: 32px;
|
|
width: 250px;
|
|
}
|
|
|
|
div.no_data_alert {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
div.no_data_alert img {
|
|
max-width: 466px;
|
|
margin-bottom: 32px;
|
|
}
|
|
div.no_data_alert h2 {
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.no_data_alert div#note {
|
|
max-width: 800px;
|
|
margin-bottom: 32px;
|
|
text-align: center;
|
|
}
|
|
div.no_data_alert div#buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 32px;
|
|
}
|
|
div.no_data_alert div#buttons button::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.analysis_bottom_settings.noDataAlert {
|
|
display: none;
|
|
}
|
|
|
|
div.dashboard_box div.no_data_alert {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
div.dashboard_box div.no_data_alert img {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.dashboard_box div.no_data_alert h2 {
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.dashboard_box div.no_data_alert div#note {
|
|
max-width: 800px;
|
|
margin-bottom: 32px;
|
|
text-align: center;
|
|
}
|
|
div.dashboard_box div.no_data_alert div#buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
}
|
|
div.dashboard_box div.no_data_alert div#buttons button::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
div.dashboard_box div.no_data_alert div#buttons button {
|
|
width: fit-content;
|
|
min-width: 0;
|
|
}
|
|
|
|
div.forma .no_data_alert #buttons button.buttonA,
|
|
div.forma .no_data_alert #buttons button.buttonB {
|
|
display: none;
|
|
}
|
|
|
|
div.forma #analiza_data {
|
|
width: 100% !important;
|
|
}
|
|
div.forma #analiza_data .no_data_alert #buttons button.buttonA,
|
|
div.forma #analiza_data .no_data_alert #buttons button.buttonB {
|
|
display: none;
|
|
}
|
|
|
|
div.glasovanje .no_data_alert #buttons button.buttonA,
|
|
div.glasovanje .no_data_alert #buttons button.buttonB {
|
|
display: none;
|
|
}
|
|
|
|
div.glasovanje .dashboard_boxes .dashboard_box .no_data_alert #buttons button.buttonA,
|
|
div.glasovanje .dashboard_boxes .dashboard_box .no_data_alert #buttons button.buttonB {
|
|
display: none;
|
|
}
|
|
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder,
|
|
#div_means_data .div_analiza_holder,
|
|
#div_break_data .div_analiza_holder,
|
|
#ttestResults .div_analiza_holder,
|
|
.subpage_analysis_creport .div_analiza_holder,
|
|
.report_element_data .div_analiza_holder,
|
|
#arch_body_div .div_analiza_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-x: auto;
|
|
margin: 0 0 32px 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .analiza_table_top_settings,
|
|
#div_means_data .div_analiza_holder .analiza_table_top_settings,
|
|
#div_break_data .div_analiza_holder .analiza_table_top_settings,
|
|
#ttestResults .div_analiza_holder .analiza_table_top_settings,
|
|
.subpage_analysis_creport .div_analiza_holder .analiza_table_top_settings,
|
|
.report_element_data .div_analiza_holder .analiza_table_top_settings,
|
|
#arch_body_div .div_analiza_holder .analiza_table_top_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: auto;
|
|
margin-bottom: 8px;
|
|
font-size: 16px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
#div_means_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
#div_break_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
#ttestResults .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
.subpage_analysis_creport .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
.report_element_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons,
|
|
#arch_body_div .div_analiza_holder .analiza_table_top_settings .div_analiza_icons {
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
#div_means_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
#div_break_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
#ttestResults .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
.subpage_analysis_creport .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
.report_element_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before,
|
|
#arch_body_div .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .faicon:before {
|
|
font-size: 20px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
#div_means_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
#div_break_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
#ttestResults .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
.subpage_analysis_creport .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
.report_element_data .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before,
|
|
#arch_body_div .div_analiza_holder .analiza_table_top_settings .div_analiza_icons .print_small:before {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale,
|
|
#div_means_data .div_analiza_holder .freq-p_holder,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale,
|
|
#div_break_data .div_analiza_holder .freq-p_holder,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale,
|
|
#ttestResults .div_analiza_holder .freq-p_holder,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale,
|
|
.report_element_data .div_analiza_holder .freq-p_holder,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder {
|
|
display: inline;
|
|
margin-left: 16px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button,
|
|
#div_means_data .div_analiza_holder .freq-p_holder button,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button,
|
|
#div_break_data .div_analiza_holder .freq-p_holder button,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button,
|
|
#ttestResults .div_analiza_holder .freq-p_holder button,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button,
|
|
.report_element_data .div_analiza_holder .freq-p_holder button,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
padding: 4px 16px;
|
|
margin: 0;
|
|
width: auto;
|
|
min-width: auto;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 15px;
|
|
color: #A9A9A9;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button:first-child,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button:first-child,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button:first-child,
|
|
#div_means_data .div_analiza_holder .freq-p_holder button:first-child,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button:first-child,
|
|
#div_break_data .div_analiza_holder .freq-p_holder button:first-child,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button:first-child,
|
|
#ttestResults .div_analiza_holder .freq-p_holder button:first-child,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button:first-child,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button:first-child,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button:first-child,
|
|
.report_element_data .div_analiza_holder .freq-p_holder button:first-child,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button:first-child,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button:first-child,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button:first-child {
|
|
border-radius: 2px 0px 0px 2px;
|
|
border-right: 1px #1E88E5 solid !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
#div_means_data .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
#div_break_data .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
#ttestResults .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
.report_element_data .div_analiza_holder .freq-p_holder button:nth-child(2),
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button:nth-child(2),
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button:nth-child(2),
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button:nth-child(2) {
|
|
border-radius: 0px 2px 2px 0px;
|
|
border-left: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button.active, #div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button.active,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button:hover,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button.active,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button:hover,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button.active,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button.active,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button:hover,
|
|
#div_means_data .div_analiza_holder .freq-p_holder button.active,
|
|
#div_means_data .div_analiza_holder .freq-p_holder button:hover,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button.active,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button.active,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button:hover,
|
|
#div_break_data .div_analiza_holder .freq-p_holder button.active,
|
|
#div_break_data .div_analiza_holder .freq-p_holder button:hover,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button.active,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button.active,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button:hover,
|
|
#ttestResults .div_analiza_holder .freq-p_holder button.active,
|
|
#ttestResults .div_analiza_holder .freq-p_holder button:hover,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button.active,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button.active,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button:hover,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button.active,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button:hover,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button.active,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button.active,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button:hover,
|
|
.report_element_data .div_analiza_holder .freq-p_holder button.active,
|
|
.report_element_data .div_analiza_holder .freq-p_holder button:hover,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button.active,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button:hover,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button.active,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button:hover,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button.active,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button:hover {
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
border-color: #1E88E5;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .enote-navedbe_holder button.single,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale button.single,
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .freq-p_holder button.single,
|
|
#div_means_data .div_analiza_holder .enote-navedbe_holder button.single,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale button.single,
|
|
#div_means_data .div_analiza_holder .freq-p_holder button.single,
|
|
#div_break_data .div_analiza_holder .enote-navedbe_holder button.single,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale button.single,
|
|
#div_break_data .div_analiza_holder .freq-p_holder button.single,
|
|
#ttestResults .div_analiza_holder .enote-navedbe_holder button.single,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale button.single,
|
|
#ttestResults .div_analiza_holder .freq-p_holder button.single,
|
|
.subpage_analysis_creport .div_analiza_holder .enote-navedbe_holder button.single,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale button.single,
|
|
.subpage_analysis_creport .div_analiza_holder .freq-p_holder button.single,
|
|
.report_element_data .div_analiza_holder .enote-navedbe_holder button.single,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale button.single,
|
|
.report_element_data .div_analiza_holder .freq-p_holder button.single,
|
|
#arch_body_div .div_analiza_holder .enote-navedbe_holder button.single,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale button.single,
|
|
#arch_body_div .div_analiza_holder .freq-p_holder button.single {
|
|
cursor: auto;
|
|
border-radius: 2px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale {
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_analiza_scale a,
|
|
#div_means_data .div_analiza_holder .div_analiza_scale a,
|
|
#div_break_data .div_analiza_holder .div_analiza_scale a,
|
|
#ttestResults .div_analiza_holder .div_analiza_scale a,
|
|
.subpage_analysis_creport .div_analiza_holder .div_analiza_scale a,
|
|
.report_element_data .div_analiza_holder .div_analiza_scale a,
|
|
#arch_body_div .div_analiza_holder .div_analiza_scale a {
|
|
text-decoration: none;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) .div_analiza_holder .div_other_text,
|
|
#div_means_data .div_analiza_holder .div_other_text,
|
|
#div_break_data .div_analiza_holder .div_other_text,
|
|
#ttestResults .div_analiza_holder .div_other_text,
|
|
.subpage_analysis_creport .div_analiza_holder .div_other_text,
|
|
.report_element_data .div_analiza_holder .div_other_text,
|
|
#arch_body_div .div_analiza_holder .div_other_text {
|
|
margin-top: 32px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table,
|
|
#div_means_data table,
|
|
#div_break_data table,
|
|
#ttestResults table,
|
|
.subpage_analysis_creport table,
|
|
.report_element_data table,
|
|
#arch_body_div table {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr,
|
|
#div_means_data table tr,
|
|
#div_break_data table tr,
|
|
#ttestResults table tr,
|
|
.subpage_analysis_creport table tr,
|
|
.report_element_data table tr,
|
|
#arch_body_div table tr {
|
|
height: auto;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th,
|
|
#div_analiza_data:not(.anal_arch) table tr td,
|
|
#div_means_data table tr th,
|
|
#div_means_data table tr td,
|
|
#div_break_data table tr th,
|
|
#div_break_data table tr td,
|
|
#ttestResults table tr th,
|
|
#ttestResults table tr td,
|
|
.subpage_analysis_creport table tr th,
|
|
.subpage_analysis_creport table tr td,
|
|
.report_element_data table tr th,
|
|
.report_element_data table tr td,
|
|
#arch_body_div table tr th,
|
|
#arch_body_div table tr td {
|
|
box-sizing: border-box;
|
|
padding: 18px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th span,
|
|
#div_analiza_data:not(.anal_arch) table tr td span,
|
|
#div_means_data table tr th span,
|
|
#div_means_data table tr td span,
|
|
#div_break_data table tr th span,
|
|
#div_break_data table tr td span,
|
|
#ttestResults table tr th span,
|
|
#ttestResults table tr td span,
|
|
.subpage_analysis_creport table tr th span,
|
|
.subpage_analysis_creport table tr td span,
|
|
.report_element_data table tr th span,
|
|
.report_element_data table tr td span,
|
|
#arch_body_div table tr th span,
|
|
#arch_body_div table tr td span {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th span.span_navedbe a, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_p a, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f a, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f_p a,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.span_navedbe a,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_p a,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f a,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f_p a,
|
|
#div_means_data table tr th span.span_navedbe a,
|
|
#div_means_data table tr th span.img_analysis_p a,
|
|
#div_means_data table tr th span.img_analysis_f a,
|
|
#div_means_data table tr th span.img_analysis_f_p a,
|
|
#div_means_data table tr td span.span_navedbe a,
|
|
#div_means_data table tr td span.img_analysis_p a,
|
|
#div_means_data table tr td span.img_analysis_f a,
|
|
#div_means_data table tr td span.img_analysis_f_p a,
|
|
#div_break_data table tr th span.span_navedbe a,
|
|
#div_break_data table tr th span.img_analysis_p a,
|
|
#div_break_data table tr th span.img_analysis_f a,
|
|
#div_break_data table tr th span.img_analysis_f_p a,
|
|
#div_break_data table tr td span.span_navedbe a,
|
|
#div_break_data table tr td span.img_analysis_p a,
|
|
#div_break_data table tr td span.img_analysis_f a,
|
|
#div_break_data table tr td span.img_analysis_f_p a,
|
|
#ttestResults table tr th span.span_navedbe a,
|
|
#ttestResults table tr th span.img_analysis_p a,
|
|
#ttestResults table tr th span.img_analysis_f a,
|
|
#ttestResults table tr th span.img_analysis_f_p a,
|
|
#ttestResults table tr td span.span_navedbe a,
|
|
#ttestResults table tr td span.img_analysis_p a,
|
|
#ttestResults table tr td span.img_analysis_f a,
|
|
#ttestResults table tr td span.img_analysis_f_p a,
|
|
.subpage_analysis_creport table tr th span.span_navedbe a,
|
|
.subpage_analysis_creport table tr th span.img_analysis_p a,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f a,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f_p a,
|
|
.subpage_analysis_creport table tr td span.span_navedbe a,
|
|
.subpage_analysis_creport table tr td span.img_analysis_p a,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f a,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f_p a,
|
|
.report_element_data table tr th span.span_navedbe a,
|
|
.report_element_data table tr th span.img_analysis_p a,
|
|
.report_element_data table tr th span.img_analysis_f a,
|
|
.report_element_data table tr th span.img_analysis_f_p a,
|
|
.report_element_data table tr td span.span_navedbe a,
|
|
.report_element_data table tr td span.img_analysis_p a,
|
|
.report_element_data table tr td span.img_analysis_f a,
|
|
.report_element_data table tr td span.img_analysis_f_p a,
|
|
#arch_body_div table tr th span.span_navedbe a,
|
|
#arch_body_div table tr th span.img_analysis_p a,
|
|
#arch_body_div table tr th span.img_analysis_f a,
|
|
#arch_body_div table tr th span.img_analysis_f_p a,
|
|
#arch_body_div table tr td span.span_navedbe a,
|
|
#arch_body_div table tr td span.img_analysis_p a,
|
|
#arch_body_div table tr td span.img_analysis_f a,
|
|
#arch_body_div table tr td span.img_analysis_f_p a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th span.span_navedbe a span, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_p a span, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f a span, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f_p a span,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.span_navedbe a span,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_p a span,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f a span,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f_p a span,
|
|
#div_means_data table tr th span.span_navedbe a span,
|
|
#div_means_data table tr th span.img_analysis_p a span,
|
|
#div_means_data table tr th span.img_analysis_f a span,
|
|
#div_means_data table tr th span.img_analysis_f_p a span,
|
|
#div_means_data table tr td span.span_navedbe a span,
|
|
#div_means_data table tr td span.img_analysis_p a span,
|
|
#div_means_data table tr td span.img_analysis_f a span,
|
|
#div_means_data table tr td span.img_analysis_f_p a span,
|
|
#div_break_data table tr th span.span_navedbe a span,
|
|
#div_break_data table tr th span.img_analysis_p a span,
|
|
#div_break_data table tr th span.img_analysis_f a span,
|
|
#div_break_data table tr th span.img_analysis_f_p a span,
|
|
#div_break_data table tr td span.span_navedbe a span,
|
|
#div_break_data table tr td span.img_analysis_p a span,
|
|
#div_break_data table tr td span.img_analysis_f a span,
|
|
#div_break_data table tr td span.img_analysis_f_p a span,
|
|
#ttestResults table tr th span.span_navedbe a span,
|
|
#ttestResults table tr th span.img_analysis_p a span,
|
|
#ttestResults table tr th span.img_analysis_f a span,
|
|
#ttestResults table tr th span.img_analysis_f_p a span,
|
|
#ttestResults table tr td span.span_navedbe a span,
|
|
#ttestResults table tr td span.img_analysis_p a span,
|
|
#ttestResults table tr td span.img_analysis_f a span,
|
|
#ttestResults table tr td span.img_analysis_f_p a span,
|
|
.subpage_analysis_creport table tr th span.span_navedbe a span,
|
|
.subpage_analysis_creport table tr th span.img_analysis_p a span,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f a span,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f_p a span,
|
|
.subpage_analysis_creport table tr td span.span_navedbe a span,
|
|
.subpage_analysis_creport table tr td span.img_analysis_p a span,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f a span,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f_p a span,
|
|
.report_element_data table tr th span.span_navedbe a span,
|
|
.report_element_data table tr th span.img_analysis_p a span,
|
|
.report_element_data table tr th span.img_analysis_f a span,
|
|
.report_element_data table tr th span.img_analysis_f_p a span,
|
|
.report_element_data table tr td span.span_navedbe a span,
|
|
.report_element_data table tr td span.img_analysis_p a span,
|
|
.report_element_data table tr td span.img_analysis_f a span,
|
|
.report_element_data table tr td span.img_analysis_f_p a span,
|
|
#arch_body_div table tr th span.span_navedbe a span,
|
|
#arch_body_div table tr th span.img_analysis_p a span,
|
|
#arch_body_div table tr th span.img_analysis_f a span,
|
|
#arch_body_div table tr th span.img_analysis_f_p a span,
|
|
#arch_body_div table tr td span.span_navedbe a span,
|
|
#arch_body_div table tr td span.img_analysis_p a span,
|
|
#arch_body_div table tr td span.img_analysis_f a span,
|
|
#arch_body_div table tr td span.img_analysis_f_p a span {
|
|
font-weight: 400;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th span.span_navedbe a span.blue, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_p a span.blue, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f a span.blue, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f_p a span.blue,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.span_navedbe a span.blue,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_p a span.blue,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f a span.blue,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f_p a span.blue,
|
|
#div_means_data table tr th span.span_navedbe a span.blue,
|
|
#div_means_data table tr th span.img_analysis_p a span.blue,
|
|
#div_means_data table tr th span.img_analysis_f a span.blue,
|
|
#div_means_data table tr th span.img_analysis_f_p a span.blue,
|
|
#div_means_data table tr td span.span_navedbe a span.blue,
|
|
#div_means_data table tr td span.img_analysis_p a span.blue,
|
|
#div_means_data table tr td span.img_analysis_f a span.blue,
|
|
#div_means_data table tr td span.img_analysis_f_p a span.blue,
|
|
#div_break_data table tr th span.span_navedbe a span.blue,
|
|
#div_break_data table tr th span.img_analysis_p a span.blue,
|
|
#div_break_data table tr th span.img_analysis_f a span.blue,
|
|
#div_break_data table tr th span.img_analysis_f_p a span.blue,
|
|
#div_break_data table tr td span.span_navedbe a span.blue,
|
|
#div_break_data table tr td span.img_analysis_p a span.blue,
|
|
#div_break_data table tr td span.img_analysis_f a span.blue,
|
|
#div_break_data table tr td span.img_analysis_f_p a span.blue,
|
|
#ttestResults table tr th span.span_navedbe a span.blue,
|
|
#ttestResults table tr th span.img_analysis_p a span.blue,
|
|
#ttestResults table tr th span.img_analysis_f a span.blue,
|
|
#ttestResults table tr th span.img_analysis_f_p a span.blue,
|
|
#ttestResults table tr td span.span_navedbe a span.blue,
|
|
#ttestResults table tr td span.img_analysis_p a span.blue,
|
|
#ttestResults table tr td span.img_analysis_f a span.blue,
|
|
#ttestResults table tr td span.img_analysis_f_p a span.blue,
|
|
.subpage_analysis_creport table tr th span.span_navedbe a span.blue,
|
|
.subpage_analysis_creport table tr th span.img_analysis_p a span.blue,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f a span.blue,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f_p a span.blue,
|
|
.subpage_analysis_creport table tr td span.span_navedbe a span.blue,
|
|
.subpage_analysis_creport table tr td span.img_analysis_p a span.blue,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f a span.blue,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f_p a span.blue,
|
|
.report_element_data table tr th span.span_navedbe a span.blue,
|
|
.report_element_data table tr th span.img_analysis_p a span.blue,
|
|
.report_element_data table tr th span.img_analysis_f a span.blue,
|
|
.report_element_data table tr th span.img_analysis_f_p a span.blue,
|
|
.report_element_data table tr td span.span_navedbe a span.blue,
|
|
.report_element_data table tr td span.img_analysis_p a span.blue,
|
|
.report_element_data table tr td span.img_analysis_f a span.blue,
|
|
.report_element_data table tr td span.img_analysis_f_p a span.blue,
|
|
#arch_body_div table tr th span.span_navedbe a span.blue,
|
|
#arch_body_div table tr th span.img_analysis_p a span.blue,
|
|
#arch_body_div table tr th span.img_analysis_f a span.blue,
|
|
#arch_body_div table tr th span.img_analysis_f_p a span.blue,
|
|
#arch_body_div table tr td span.span_navedbe a span.blue,
|
|
#arch_body_div table tr td span.img_analysis_p a span.blue,
|
|
#arch_body_div table tr td span.img_analysis_f a span.blue,
|
|
#arch_body_div table tr td span.img_analysis_f_p a span.blue {
|
|
color: #1E88E5;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th span.span_navedbe a span.active, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_p a span.active, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f a span.active, #div_analiza_data:not(.anal_arch) table tr th span.img_analysis_f_p a span.active,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.span_navedbe a span.active,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_p a span.active,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f a span.active,
|
|
#div_analiza_data:not(.anal_arch) table tr td span.img_analysis_f_p a span.active,
|
|
#div_means_data table tr th span.span_navedbe a span.active,
|
|
#div_means_data table tr th span.img_analysis_p a span.active,
|
|
#div_means_data table tr th span.img_analysis_f a span.active,
|
|
#div_means_data table tr th span.img_analysis_f_p a span.active,
|
|
#div_means_data table tr td span.span_navedbe a span.active,
|
|
#div_means_data table tr td span.img_analysis_p a span.active,
|
|
#div_means_data table tr td span.img_analysis_f a span.active,
|
|
#div_means_data table tr td span.img_analysis_f_p a span.active,
|
|
#div_break_data table tr th span.span_navedbe a span.active,
|
|
#div_break_data table tr th span.img_analysis_p a span.active,
|
|
#div_break_data table tr th span.img_analysis_f a span.active,
|
|
#div_break_data table tr th span.img_analysis_f_p a span.active,
|
|
#div_break_data table tr td span.span_navedbe a span.active,
|
|
#div_break_data table tr td span.img_analysis_p a span.active,
|
|
#div_break_data table tr td span.img_analysis_f a span.active,
|
|
#div_break_data table tr td span.img_analysis_f_p a span.active,
|
|
#ttestResults table tr th span.span_navedbe a span.active,
|
|
#ttestResults table tr th span.img_analysis_p a span.active,
|
|
#ttestResults table tr th span.img_analysis_f a span.active,
|
|
#ttestResults table tr th span.img_analysis_f_p a span.active,
|
|
#ttestResults table tr td span.span_navedbe a span.active,
|
|
#ttestResults table tr td span.img_analysis_p a span.active,
|
|
#ttestResults table tr td span.img_analysis_f a span.active,
|
|
#ttestResults table tr td span.img_analysis_f_p a span.active,
|
|
.subpage_analysis_creport table tr th span.span_navedbe a span.active,
|
|
.subpage_analysis_creport table tr th span.img_analysis_p a span.active,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f a span.active,
|
|
.subpage_analysis_creport table tr th span.img_analysis_f_p a span.active,
|
|
.subpage_analysis_creport table tr td span.span_navedbe a span.active,
|
|
.subpage_analysis_creport table tr td span.img_analysis_p a span.active,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f a span.active,
|
|
.subpage_analysis_creport table tr td span.img_analysis_f_p a span.active,
|
|
.report_element_data table tr th span.span_navedbe a span.active,
|
|
.report_element_data table tr th span.img_analysis_p a span.active,
|
|
.report_element_data table tr th span.img_analysis_f a span.active,
|
|
.report_element_data table tr th span.img_analysis_f_p a span.active,
|
|
.report_element_data table tr td span.span_navedbe a span.active,
|
|
.report_element_data table tr td span.img_analysis_p a span.active,
|
|
.report_element_data table tr td span.img_analysis_f a span.active,
|
|
.report_element_data table tr td span.img_analysis_f_p a span.active,
|
|
#arch_body_div table tr th span.span_navedbe a span.active,
|
|
#arch_body_div table tr th span.img_analysis_p a span.active,
|
|
#arch_body_div table tr th span.img_analysis_f a span.active,
|
|
#arch_body_div table tr th span.img_analysis_f_p a span.active,
|
|
#arch_body_div table tr td span.span_navedbe a span.active,
|
|
#arch_body_div table tr td span.img_analysis_p a span.active,
|
|
#arch_body_div table tr td span.img_analysis_f a span.active,
|
|
#arch_body_div table tr td span.img_analysis_f_p a span.active {
|
|
font-weight: 600;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_icons,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_icons,
|
|
#div_means_data table tr th.cell_icons,
|
|
#div_means_data table tr td.cell_icons,
|
|
#div_break_data table tr th.cell_icons,
|
|
#div_break_data table tr td.cell_icons,
|
|
#ttestResults table tr th.cell_icons,
|
|
#ttestResults table tr td.cell_icons,
|
|
.subpage_analysis_creport table tr th.cell_icons,
|
|
.subpage_analysis_creport table tr td.cell_icons,
|
|
.report_element_data table tr th.cell_icons,
|
|
.report_element_data table tr td.cell_icons,
|
|
#arch_body_div table tr th.cell_icons,
|
|
#arch_body_div table tr td.cell_icons {
|
|
width: 110px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
text-align: center;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_var,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_var,
|
|
#div_means_data table tr th.cell_var,
|
|
#div_means_data table tr td.cell_var,
|
|
#div_break_data table tr th.cell_var,
|
|
#div_break_data table tr td.cell_var,
|
|
#ttestResults table tr th.cell_var,
|
|
#ttestResults table tr td.cell_var,
|
|
.subpage_analysis_creport table tr th.cell_var,
|
|
.subpage_analysis_creport table tr td.cell_var,
|
|
.report_element_data table tr th.cell_var,
|
|
.report_element_data table tr td.cell_var,
|
|
#arch_body_div table tr th.cell_var,
|
|
#arch_body_div table tr td.cell_var {
|
|
width: 110px;
|
|
min-width: 110px;
|
|
text-align: center;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_var a,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_var a,
|
|
#div_means_data table tr th.cell_var a,
|
|
#div_means_data table tr td.cell_var a,
|
|
#div_break_data table tr th.cell_var a,
|
|
#div_break_data table tr td.cell_var a,
|
|
#ttestResults table tr th.cell_var a,
|
|
#ttestResults table tr td.cell_var a,
|
|
.subpage_analysis_creport table tr th.cell_var a,
|
|
.subpage_analysis_creport table tr td.cell_var a,
|
|
.report_element_data table tr th.cell_var a,
|
|
.report_element_data table tr td.cell_var a,
|
|
#arch_body_div table tr th.cell_var a,
|
|
#arch_body_div table tr td.cell_var a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_question,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_question,
|
|
#div_means_data table tr th.cell_question,
|
|
#div_means_data table tr td.cell_question,
|
|
#div_break_data table tr th.cell_question,
|
|
#div_break_data table tr td.cell_question,
|
|
#ttestResults table tr th.cell_question,
|
|
#ttestResults table tr td.cell_question,
|
|
.subpage_analysis_creport table tr th.cell_question,
|
|
.subpage_analysis_creport table tr td.cell_question,
|
|
.report_element_data table tr th.cell_question,
|
|
.report_element_data table tr td.cell_question,
|
|
#arch_body_div table tr th.cell_question,
|
|
#arch_body_div table tr td.cell_question {
|
|
width: auto;
|
|
text-align: left;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_subquestion,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_subquestion,
|
|
#div_means_data table tr th.cell_subquestion,
|
|
#div_means_data table tr td.cell_subquestion,
|
|
#div_break_data table tr th.cell_subquestion,
|
|
#div_break_data table tr td.cell_subquestion,
|
|
#ttestResults table tr th.cell_subquestion,
|
|
#ttestResults table tr td.cell_subquestion,
|
|
.subpage_analysis_creport table tr th.cell_subquestion,
|
|
.subpage_analysis_creport table tr td.cell_subquestion,
|
|
.report_element_data table tr th.cell_subquestion,
|
|
.report_element_data table tr td.cell_subquestion,
|
|
#arch_body_div table tr th.cell_subquestion,
|
|
#arch_body_div table tr td.cell_subquestion {
|
|
width: 260px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_info,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_info,
|
|
#div_means_data table tr th.cell_info,
|
|
#div_means_data table tr td.cell_info,
|
|
#div_break_data table tr th.cell_info,
|
|
#div_break_data table tr td.cell_info,
|
|
#ttestResults table tr th.cell_info,
|
|
#ttestResults table tr td.cell_info,
|
|
.subpage_analysis_creport table tr th.cell_info,
|
|
.subpage_analysis_creport table tr td.cell_info,
|
|
.report_element_data table tr th.cell_info,
|
|
.report_element_data table tr td.cell_info,
|
|
#arch_body_div table tr th.cell_info,
|
|
#arch_body_div table tr td.cell_info {
|
|
width: 115px;
|
|
text-align: left;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_value,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_value,
|
|
#div_means_data table tr th.cell_value,
|
|
#div_means_data table tr td.cell_value,
|
|
#div_break_data table tr th.cell_value,
|
|
#div_break_data table tr td.cell_value,
|
|
#ttestResults table tr th.cell_value,
|
|
#ttestResults table tr td.cell_value,
|
|
.subpage_analysis_creport table tr th.cell_value,
|
|
.subpage_analysis_creport table tr td.cell_value,
|
|
.report_element_data table tr th.cell_value,
|
|
.report_element_data table tr td.cell_value,
|
|
#arch_body_div table tr th.cell_value,
|
|
#arch_body_div table tr td.cell_value {
|
|
width: 115px;
|
|
text-align: right;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_noVerBorder,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_noVerBorder,
|
|
#div_means_data table tr th.cell_noVerBorder,
|
|
#div_means_data table tr td.cell_noVerBorder,
|
|
#div_break_data table tr th.cell_noVerBorder,
|
|
#div_break_data table tr td.cell_noVerBorder,
|
|
#ttestResults table tr th.cell_noVerBorder,
|
|
#ttestResults table tr td.cell_noVerBorder,
|
|
.subpage_analysis_creport table tr th.cell_noVerBorder,
|
|
.subpage_analysis_creport table tr td.cell_noVerBorder,
|
|
.report_element_data table tr th.cell_noVerBorder,
|
|
.report_element_data table tr td.cell_noVerBorder,
|
|
#arch_body_div table tr th.cell_noVerBorder,
|
|
#arch_body_div table tr td.cell_noVerBorder {
|
|
border-top: 0 !important;
|
|
border-bottom: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_noBorder,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_noBorder,
|
|
#div_means_data table tr th.cell_noBorder,
|
|
#div_means_data table tr td.cell_noBorder,
|
|
#div_break_data table tr th.cell_noBorder,
|
|
#div_break_data table tr td.cell_noBorder,
|
|
#ttestResults table tr th.cell_noBorder,
|
|
#ttestResults table tr td.cell_noBorder,
|
|
.subpage_analysis_creport table tr th.cell_noBorder,
|
|
.subpage_analysis_creport table tr td.cell_noBorder,
|
|
.report_element_data table tr th.cell_noBorder,
|
|
.report_element_data table tr td.cell_noBorder,
|
|
#arch_body_div table tr th.cell_noBorder,
|
|
#arch_body_div table tr td.cell_noBorder {
|
|
border: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_empty,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_empty,
|
|
#div_means_data table tr th.cell_empty,
|
|
#div_means_data table tr td.cell_empty,
|
|
#div_break_data table tr th.cell_empty,
|
|
#div_break_data table tr td.cell_empty,
|
|
#ttestResults table tr th.cell_empty,
|
|
#ttestResults table tr td.cell_empty,
|
|
.subpage_analysis_creport table tr th.cell_empty,
|
|
.subpage_analysis_creport table tr td.cell_empty,
|
|
.report_element_data table tr th.cell_empty,
|
|
.report_element_data table tr td.cell_empty,
|
|
#arch_body_div table tr th.cell_empty,
|
|
#arch_body_div table tr td.cell_empty {
|
|
background-color: #FFFFFF !important;
|
|
border: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_space,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_space,
|
|
#div_means_data table tr th.cell_space,
|
|
#div_means_data table tr td.cell_space,
|
|
#div_break_data table tr th.cell_space,
|
|
#div_break_data table tr td.cell_space,
|
|
#ttestResults table tr th.cell_space,
|
|
#ttestResults table tr td.cell_space,
|
|
.subpage_analysis_creport table tr th.cell_space,
|
|
.subpage_analysis_creport table tr td.cell_space,
|
|
.report_element_data table tr th.cell_space,
|
|
.report_element_data table tr td.cell_space,
|
|
#arch_body_div table tr th.cell_space,
|
|
#arch_body_div table tr td.cell_space {
|
|
padding: 0;
|
|
line-height: 8px;
|
|
background-color: #FFFFFF !important;
|
|
border: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th.cell_noPadding,
|
|
#div_analiza_data:not(.anal_arch) table tr td.cell_noPadding,
|
|
#div_means_data table tr th.cell_noPadding,
|
|
#div_means_data table tr td.cell_noPadding,
|
|
#div_break_data table tr th.cell_noPadding,
|
|
#div_break_data table tr td.cell_noPadding,
|
|
#ttestResults table tr th.cell_noPadding,
|
|
#ttestResults table tr td.cell_noPadding,
|
|
.subpage_analysis_creport table tr th.cell_noPadding,
|
|
.subpage_analysis_creport table tr td.cell_noPadding,
|
|
.report_element_data table tr th.cell_noPadding,
|
|
.report_element_data table tr td.cell_noPadding,
|
|
#arch_body_div table tr th.cell_noPadding,
|
|
#arch_body_div table tr td.cell_noPadding {
|
|
padding: 0 !important;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th table.cell_table,
|
|
#div_analiza_data:not(.anal_arch) table tr td table.cell_table,
|
|
#div_means_data table tr th table.cell_table,
|
|
#div_means_data table tr td table.cell_table,
|
|
#div_break_data table tr th table.cell_table,
|
|
#div_break_data table tr td table.cell_table,
|
|
#ttestResults table tr th table.cell_table,
|
|
#ttestResults table tr td table.cell_table,
|
|
.subpage_analysis_creport table tr th table.cell_table,
|
|
.subpage_analysis_creport table tr td table.cell_table,
|
|
.report_element_data table tr th table.cell_table,
|
|
.report_element_data table tr td table.cell_table,
|
|
#arch_body_div table tr th table.cell_table,
|
|
#arch_body_div table tr td table.cell_table {
|
|
width: 100%;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th table.cell_table tr td,
|
|
#div_analiza_data:not(.anal_arch) table tr td table.cell_table tr td,
|
|
#div_means_data table tr th table.cell_table tr td,
|
|
#div_means_data table tr td table.cell_table tr td,
|
|
#div_break_data table tr th table.cell_table tr td,
|
|
#div_break_data table tr td table.cell_table tr td,
|
|
#ttestResults table tr th table.cell_table tr td,
|
|
#ttestResults table tr td table.cell_table tr td,
|
|
.subpage_analysis_creport table tr th table.cell_table tr td,
|
|
.subpage_analysis_creport table tr td table.cell_table tr td,
|
|
.report_element_data table tr th table.cell_table tr td,
|
|
.report_element_data table tr td table.cell_table tr td,
|
|
#arch_body_div table tr th table.cell_table tr td,
|
|
#arch_body_div table tr td table.cell_table tr td {
|
|
padding: 4px 16px;
|
|
text-align: center;
|
|
border: 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#div_analiza_data:not(.anal_arch) table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#div_means_data table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#div_means_data table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#div_break_data table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#div_break_data table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#ttestResults table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#ttestResults table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
.subpage_analysis_creport table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
.subpage_analysis_creport table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
.report_element_data table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
.report_element_data table tr td table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#arch_body_div table tr th table.cell_table.percent_row.freq_row tr:first-of-type td,
|
|
#arch_body_div table tr td table.cell_table.percent_row.freq_row tr:first-of-type td {
|
|
border-bottom: 1px #E5E5E5 dashed;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row1 th,
|
|
#div_analiza_data:not(.anal_arch) table tr.row1 td,
|
|
#div_means_data table tr.row1 th,
|
|
#div_means_data table tr.row1 td,
|
|
#div_break_data table tr.row1 th,
|
|
#div_break_data table tr.row1 td,
|
|
#ttestResults table tr.row1 th,
|
|
#ttestResults table tr.row1 td,
|
|
.subpage_analysis_creport table tr.row1 th,
|
|
.subpage_analysis_creport table tr.row1 td,
|
|
.report_element_data table tr.row1 th,
|
|
.report_element_data table tr.row1 td,
|
|
#arch_body_div table tr.row1 th,
|
|
#arch_body_div table tr.row1 td {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row1 th span,
|
|
#div_analiza_data:not(.anal_arch) table tr.row1 td span,
|
|
#div_means_data table tr.row1 th span,
|
|
#div_means_data table tr.row1 td span,
|
|
#div_break_data table tr.row1 th span,
|
|
#div_break_data table tr.row1 td span,
|
|
#ttestResults table tr.row1 th span,
|
|
#ttestResults table tr.row1 td span,
|
|
.subpage_analysis_creport table tr.row1 th span,
|
|
.subpage_analysis_creport table tr.row1 td span,
|
|
.report_element_data table tr.row1 th span,
|
|
.report_element_data table tr.row1 td span,
|
|
#arch_body_div table tr.row1 th span,
|
|
#arch_body_div table tr.row1 td span {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 th,
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 td,
|
|
#div_means_data table tr.row2 th,
|
|
#div_means_data table tr.row2 td,
|
|
#div_break_data table tr.row2 th,
|
|
#div_break_data table tr.row2 td,
|
|
#ttestResults table tr.row2 th,
|
|
#ttestResults table tr.row2 td,
|
|
.subpage_analysis_creport table tr.row2 th,
|
|
.subpage_analysis_creport table tr.row2 td,
|
|
.report_element_data table tr.row2 th,
|
|
.report_element_data table tr.row2 td,
|
|
#arch_body_div table tr.row2 th,
|
|
#arch_body_div table tr.row2 td {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
line-height: 19px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 th span,
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 td span,
|
|
#div_means_data table tr.row2 th span,
|
|
#div_means_data table tr.row2 td span,
|
|
#div_break_data table tr.row2 th span,
|
|
#div_break_data table tr.row2 td span,
|
|
#ttestResults table tr.row2 th span,
|
|
#ttestResults table tr.row2 td span,
|
|
.subpage_analysis_creport table tr.row2 th span,
|
|
.subpage_analysis_creport table tr.row2 td span,
|
|
.report_element_data table tr.row2 th span,
|
|
.report_element_data table tr.row2 td span,
|
|
#arch_body_div table tr.row2 th span,
|
|
#arch_body_div table tr.row2 td span {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
line-height: 19px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 th.cell_value,
|
|
#div_analiza_data:not(.anal_arch) table tr.row2 td.cell_value,
|
|
#div_means_data table tr.row2 th.cell_value,
|
|
#div_means_data table tr.row2 td.cell_value,
|
|
#div_break_data table tr.row2 th.cell_value,
|
|
#div_break_data table tr.row2 td.cell_value,
|
|
#ttestResults table tr.row2 th.cell_value,
|
|
#ttestResults table tr.row2 td.cell_value,
|
|
.subpage_analysis_creport table tr.row2 th.cell_value,
|
|
.subpage_analysis_creport table tr.row2 td.cell_value,
|
|
.report_element_data table tr.row2 th.cell_value,
|
|
.report_element_data table tr.row2 td.cell_value,
|
|
#arch_body_div table tr.row2 th.cell_value,
|
|
#arch_body_div table tr.row2 td.cell_value {
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row3 th,
|
|
#div_analiza_data:not(.anal_arch) table tr.row3 td, #div_analiza_data:not(.anal_arch) table tr.row4 th,
|
|
#div_analiza_data:not(.anal_arch) table tr.row4 td,
|
|
#div_means_data table tr.row3 th,
|
|
#div_means_data table tr.row3 td,
|
|
#div_means_data table tr.row4 th,
|
|
#div_means_data table tr.row4 td,
|
|
#div_break_data table tr.row3 th,
|
|
#div_break_data table tr.row3 td,
|
|
#div_break_data table tr.row4 th,
|
|
#div_break_data table tr.row4 td,
|
|
#ttestResults table tr.row3 th,
|
|
#ttestResults table tr.row3 td,
|
|
#ttestResults table tr.row4 th,
|
|
#ttestResults table tr.row4 td,
|
|
.subpage_analysis_creport table tr.row3 th,
|
|
.subpage_analysis_creport table tr.row3 td,
|
|
.subpage_analysis_creport table tr.row4 th,
|
|
.subpage_analysis_creport table tr.row4 td,
|
|
.report_element_data table tr.row3 th,
|
|
.report_element_data table tr.row3 td,
|
|
.report_element_data table tr.row4 th,
|
|
.report_element_data table tr.row4 td,
|
|
#arch_body_div table tr.row3 th,
|
|
#arch_body_div table tr.row3 td,
|
|
#arch_body_div table tr.row4 th,
|
|
#arch_body_div table tr.row4 td {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row3 th.cell_grid,
|
|
#div_analiza_data:not(.anal_arch) table tr.row3 td.cell_grid, #div_analiza_data:not(.anal_arch) table tr.row4 th.cell_grid,
|
|
#div_analiza_data:not(.anal_arch) table tr.row4 td.cell_grid,
|
|
#div_means_data table tr.row3 th.cell_grid,
|
|
#div_means_data table tr.row3 td.cell_grid,
|
|
#div_means_data table tr.row4 th.cell_grid,
|
|
#div_means_data table tr.row4 td.cell_grid,
|
|
#div_break_data table tr.row3 th.cell_grid,
|
|
#div_break_data table tr.row3 td.cell_grid,
|
|
#div_break_data table tr.row4 th.cell_grid,
|
|
#div_break_data table tr.row4 td.cell_grid,
|
|
#ttestResults table tr.row3 th.cell_grid,
|
|
#ttestResults table tr.row3 td.cell_grid,
|
|
#ttestResults table tr.row4 th.cell_grid,
|
|
#ttestResults table tr.row4 td.cell_grid,
|
|
.subpage_analysis_creport table tr.row3 th.cell_grid,
|
|
.subpage_analysis_creport table tr.row3 td.cell_grid,
|
|
.subpage_analysis_creport table tr.row4 th.cell_grid,
|
|
.subpage_analysis_creport table tr.row4 td.cell_grid,
|
|
.report_element_data table tr.row3 th.cell_grid,
|
|
.report_element_data table tr.row3 td.cell_grid,
|
|
.report_element_data table tr.row4 th.cell_grid,
|
|
.report_element_data table tr.row4 td.cell_grid,
|
|
#arch_body_div table tr.row3 th.cell_grid,
|
|
#arch_body_div table tr.row3 td.cell_grid,
|
|
#arch_body_div table tr.row4 th.cell_grid,
|
|
#arch_body_div table tr.row4 td.cell_grid {
|
|
height: 52px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
text-align: center;
|
|
background-color: #F2F2F2;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_question td,
|
|
#div_means_data table tr.row_question td,
|
|
#div_break_data table tr.row_question td,
|
|
#ttestResults table tr.row_question td,
|
|
.subpage_analysis_creport table tr.row_question td,
|
|
.report_element_data table tr.row_question td,
|
|
#arch_body_div table tr.row_question td {
|
|
font-weight: 600;
|
|
background-color: #F2F2F2;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_missing td,
|
|
#div_means_data table tr.row_missing td,
|
|
#div_break_data table tr.row_missing td,
|
|
#ttestResults table tr.row_missing td,
|
|
.subpage_analysis_creport table tr.row_missing td,
|
|
.report_element_data table tr.row_missing td,
|
|
#arch_body_div table tr.row_missing td {
|
|
background: rgba(255, 199, 0, 0.05);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_missing.row_sum td,
|
|
#div_means_data table tr.row_missing.row_sum td,
|
|
#div_break_data table tr.row_missing.row_sum td,
|
|
#ttestResults table tr.row_missing.row_sum td,
|
|
.subpage_analysis_creport table tr.row_missing.row_sum td,
|
|
.report_element_data table tr.row_missing.row_sum td,
|
|
#arch_body_div table tr.row_missing.row_sum td {
|
|
background: rgba(255, 199, 0, 0.05);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td,
|
|
#div_means_data table tr.row_sum td,
|
|
#div_break_data table tr.row_sum td,
|
|
#ttestResults table tr.row_sum td,
|
|
.subpage_analysis_creport table tr.row_sum td,
|
|
.report_element_data table tr.row_sum td,
|
|
#arch_body_div table tr.row_sum td {
|
|
background: rgba(255, 199, 0, 0.05);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing,
|
|
#div_means_data table tr.row_sum td.cell_missing,
|
|
#div_break_data table tr.row_sum td.cell_missing,
|
|
#ttestResults table tr.row_sum td.cell_missing,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing,
|
|
.report_element_data table tr.row_sum td.cell_missing,
|
|
#arch_body_div table tr.row_sum td.cell_missing {
|
|
text-align: center;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing span,
|
|
#div_means_data table tr.row_sum td.cell_missing span,
|
|
#div_break_data table tr.row_sum td.cell_missing span,
|
|
#ttestResults table tr.row_sum td.cell_missing span,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing span,
|
|
.report_element_data table tr.row_sum td.cell_missing span,
|
|
#arch_body_div table tr.row_sum td.cell_missing span {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing span:hover,
|
|
#div_means_data table tr.row_sum td.cell_missing span:hover,
|
|
#div_break_data table tr.row_sum td.cell_missing span:hover,
|
|
#ttestResults table tr.row_sum td.cell_missing span:hover,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing span:hover,
|
|
.report_element_data table tr.row_sum td.cell_missing span:hover,
|
|
#arch_body_div table tr.row_sum td.cell_missing span:hover {
|
|
color: #0059ab;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
#div_means_data table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
#div_break_data table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
#ttestResults table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
.report_element_data table tr.row_sum td.cell_missing span:hover .faicon:before,
|
|
#arch_body_div table tr.row_sum td.cell_missing span:hover .faicon:before {
|
|
color: #0059ab;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing span .faicon,
|
|
#div_means_data table tr.row_sum td.cell_missing span .faicon,
|
|
#div_break_data table tr.row_sum td.cell_missing span .faicon,
|
|
#ttestResults table tr.row_sum td.cell_missing span .faicon,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing span .faicon,
|
|
.report_element_data table tr.row_sum td.cell_missing span .faicon,
|
|
#arch_body_div table tr.row_sum td.cell_missing span .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum td.cell_missing span .faicon:before,
|
|
#div_means_data table tr.row_sum td.cell_missing span .faicon:before,
|
|
#div_break_data table tr.row_sum td.cell_missing span .faicon:before,
|
|
#ttestResults table tr.row_sum td.cell_missing span .faicon:before,
|
|
.subpage_analysis_creport table tr.row_sum td.cell_missing span .faicon:before,
|
|
.report_element_data table tr.row_sum td.cell_missing span .faicon:before,
|
|
#arch_body_div table tr.row_sum td.cell_missing span .faicon:before {
|
|
font-size: 12px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum_all td,
|
|
#div_means_data table tr.row_sum_all td,
|
|
#div_break_data table tr.row_sum_all td,
|
|
#ttestResults table tr.row_sum_all td,
|
|
.subpage_analysis_creport table tr.row_sum_all td,
|
|
.report_element_data table tr.row_sum_all td,
|
|
#arch_body_div table tr.row_sum_all td {
|
|
background: rgba(255, 199, 0, 0.1);
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum_all td.cell_var,
|
|
#div_means_data table tr.row_sum_all td.cell_var,
|
|
#div_break_data table tr.row_sum_all td.cell_var,
|
|
#ttestResults table tr.row_sum_all td.cell_var,
|
|
.subpage_analysis_creport table tr.row_sum_all td.cell_var,
|
|
.report_element_data table tr.row_sum_all td.cell_var,
|
|
#arch_body_div table tr.row_sum_all td.cell_var {
|
|
border-right: 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_sum_all td.cell_question,
|
|
#div_means_data table tr.row_sum_all td.cell_question,
|
|
#div_break_data table tr.row_sum_all td.cell_question,
|
|
#ttestResults table tr.row_sum_all td.cell_question,
|
|
.subpage_analysis_creport table tr.row_sum_all td.cell_question,
|
|
.report_element_data table tr.row_sum_all td.cell_question,
|
|
#arch_body_div table tr.row_sum_all td.cell_question {
|
|
border-left: 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr.row_bottom td,
|
|
#div_means_data table tr.row_bottom td,
|
|
#div_break_data table tr.row_bottom td,
|
|
#ttestResults table tr.row_bottom td,
|
|
.subpage_analysis_creport table tr.row_bottom td,
|
|
.report_element_data table tr.row_bottom td,
|
|
#arch_body_div table tr.row_bottom td {
|
|
background-color: #F8F8F8;
|
|
}
|
|
|
|
.analysis_bottom_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 64px;
|
|
}
|
|
.analysis_bottom_settings .comment_holder {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-right: 8px;
|
|
margin-right: 8px;
|
|
height: 34px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.analysis_bottom_settings .comment_holder span {
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
}
|
|
.analysis_bottom_settings .comment_holder span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
.analysis_bottom_settings a {
|
|
margin: 0 8px;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
.analysis_bottom_settings a.comment {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 6px 16px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.analysis_bottom_settings a.comment:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
.analysis_bottom_settings a.comment .faicon:before {
|
|
margin-right: 8px;
|
|
}
|
|
.analysis_bottom_settings a .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 20px;
|
|
}
|
|
.analysis_bottom_settings a .faicon.arhiv_mail:before {
|
|
font-weight: 600;
|
|
}
|
|
.analysis_bottom_settings a .faicon.comments:before {
|
|
font-weight: 400;
|
|
}
|
|
.analysis_bottom_settings a .faicon.pdf:before {
|
|
color: #FF0000;
|
|
}
|
|
.analysis_bottom_settings a .faicon.xls:before {
|
|
color: #00C437;
|
|
}
|
|
.analysis_bottom_settings a .faicon.ppt:before {
|
|
color: #fa4913;
|
|
}
|
|
|
|
iframe#ifmcontentstoprint {
|
|
border: 0;
|
|
}
|
|
|
|
#srv_analiza_preview_div {
|
|
display: none;
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
z-index: 9997;
|
|
left: 307px;
|
|
top: 165px;
|
|
width: 700px;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub .title {
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-size: 14px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub .title .first {
|
|
font-size: 16px !important;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub .title .faicon {
|
|
font-size: 16px !important;
|
|
margin-right: 8px;
|
|
color: #1E88E5;
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub .content {
|
|
width: 100%;
|
|
}
|
|
#srv_analiza_preview_div .srv_analiza_preview_sub .content img {
|
|
width: 100%;
|
|
}
|
|
|
|
#div_analiza_data .row2 {
|
|
position: relative;
|
|
}
|
|
#div_analiza_data .options {
|
|
width: 220px;
|
|
z-index: 9999;
|
|
position: absolute;
|
|
left: 17px;
|
|
top: 40px;
|
|
}
|
|
#div_analiza_data .faicon.dots {
|
|
cursor: pointer;
|
|
color: #1e88e5;
|
|
}
|
|
#div_analiza_data .faicon.dots:hover {
|
|
color: #0059ab;
|
|
}
|
|
|
|
.cell_icons {
|
|
position: relative;
|
|
}
|
|
|
|
.analysis_icons_holder {
|
|
background-color: white;
|
|
border-radius: 2px;
|
|
box-shadow: 0px 0px 7px 0px #0000001F;
|
|
}
|
|
.analysis_icons_holder .icon_box {
|
|
margin-left: 16px;
|
|
padding-bottom: 12px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a {
|
|
display: flex;
|
|
text-decoration: none;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .icon_text {
|
|
color: #333333;
|
|
font-weight: 400;
|
|
margin-left: 14px;
|
|
margin-right: 16px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .icon_text_margin {
|
|
margin-left: 15px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .dop_frekv {
|
|
margin-left: 9px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .sum_frekv {
|
|
margin-left: 13px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .star_icon {
|
|
margin-left: 9px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .an_freq_text {
|
|
margin-left: 17px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .an_chart_bar_text {
|
|
margin-left: 10px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .faicon {
|
|
max-height: 17px;
|
|
background-color: unset;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .faicon:before {
|
|
font-size: 12px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a .faicon.an_freq:before, .analysis_icons_holder .icon_box > a .faicon.an_freqx:before, .analysis_icons_holder .icon_box > a .faicon.an_stat:before, .analysis_icons_holder .icon_box > a .faicon.an_sigma:before, .analysis_icons_holder .icon_box > a .faicon.an_sigmax:before {
|
|
font-size: 18px;
|
|
}
|
|
.analysis_icons_holder .icon_box:first-of-type {
|
|
padding-top: 16px;
|
|
}
|
|
.analysis_icons_holder .icon_box:last-of-type {
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
@media only screen and (max-width: 850px) {
|
|
.analysis_icons_holder {
|
|
display: block !important;
|
|
}
|
|
}
|
|
.cell_icons button::before {
|
|
font-weight: 700;
|
|
content: "";
|
|
}
|
|
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options div.button {
|
|
background-color: #f8f8f8 !important;
|
|
background: unset;
|
|
border: unset;
|
|
}
|
|
|
|
#div_analiza_data table.table_desc tr td,
|
|
.custom_report_elements table.table_desc tr td,
|
|
#arch_body_div table.table_desc tr td {
|
|
text-align: center;
|
|
}
|
|
#div_analiza_data table.table_desc tr td.cell_question,
|
|
.custom_report_elements table.table_desc tr td.cell_question,
|
|
#arch_body_div table.table_desc tr td.cell_question {
|
|
text-align: left;
|
|
}
|
|
#div_analiza_data table.table_desc tr.row_question td,
|
|
.custom_report_elements table.table_desc tr.row_question td,
|
|
#arch_body_div table.table_desc tr.row_question td {
|
|
background-color: #F2F2F2;
|
|
}
|
|
#div_analiza_data table.table_desc tr.row_question td.cell_value,
|
|
.custom_report_elements table.table_desc tr.row_question td.cell_value,
|
|
#arch_body_div table.table_desc tr.row_question td.cell_value {
|
|
font-weight: 400;
|
|
}
|
|
#div_analiza_data table.table_desc tr.row_grid td,
|
|
#div_analiza_data table.table_desc tr.row_var td,
|
|
.custom_report_elements table.table_desc tr.row_grid td,
|
|
.custom_report_elements table.table_desc tr.row_var td,
|
|
#arch_body_div table.table_desc tr.row_grid td,
|
|
#arch_body_div table.table_desc tr.row_var td {
|
|
height: 52px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
#div_analiza_data.crosstabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder {
|
|
display: flex;
|
|
align-self: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 16px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns {
|
|
display: flex;
|
|
margin-right: 64px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder .title,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder .title {
|
|
margin-bottom: 4px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder .variabla_line,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder .variabla_line {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder .variabla_line .faicon,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder .variabla_line .faicon {
|
|
cursor: pointer;
|
|
margin-left: 8px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder .variabla_line .faicon::before,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder .variabla_line .faicon::before {
|
|
color: #1E88E5;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossLeftHolder button,
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossRightHolder button {
|
|
width: 190px;
|
|
margin-top: 16px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossImgHolder {
|
|
margin: 38px 32px 0 32px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossImgHolder .faicon {
|
|
cursor: pointer;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossImgHolder .faicon::before {
|
|
color: #1E88E5;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder #crosstab_drobdowns #crossImgHolder .faicon.gray::before {
|
|
color: #E5E5E5;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder .crosstab_settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder .crosstab_settings .setting_line {
|
|
margin-bottom: 6px;
|
|
}
|
|
#div_analiza_data.crosstabs .crosstab_top_holder .crosstab_settings#crosstab_settings_2 {
|
|
margin-left: 64px;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder {
|
|
margin-top: 16px;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .top_line {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .top_line .hi2 {
|
|
font-weight: 600;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .top_line .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .table_crosstab_div {
|
|
overflow-x: auto;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab td.cell_var {
|
|
width: 260px;
|
|
text-align: left;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab td.cell_question a {
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab td.cell_value {
|
|
text-align: center;
|
|
padding: 4px 8px;
|
|
border: 0;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab table.cell_table > tbody > tr {
|
|
border-bottom: 1px #E5E5E5 dashed;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab table.cell_table > tbody > tr:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab table.cell_table > tbody > tr table.cell_table tr td {
|
|
border-right: 1px #FFC700 solid;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder table.table_crosstab table.cell_table > tbody > tr table.cell_table tr td:last-child {
|
|
border-right: 0;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .crosstab_chart_holder {
|
|
margin: 16px auto 0 auto;
|
|
}
|
|
|
|
#crosstab_legend {
|
|
display: flex;
|
|
align-items: center;
|
|
width: fit-content;
|
|
margin-top: 16px;
|
|
padding: 8px 16px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
#crosstab_legend .crosstab_legend_line {
|
|
display: flex;
|
|
}
|
|
#crosstab_legend .crosstab_legend_line:nth-child(2) {
|
|
margin-left: 32px;
|
|
}
|
|
#crosstab_legend .crosstab_legend_line .title {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
#crosstab_legend .crosstab_legend_line .trak {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
#crosstab_legend .crosstab_legend_line .trak div {
|
|
width: 22px;
|
|
height: 22px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.ctbChck_sp0 {
|
|
background-color: #fcfcfc !important;
|
|
}
|
|
|
|
.ctbChck_sp1 {
|
|
background-color: #FEFFE3 !important;
|
|
}
|
|
|
|
.ctbChck_sp2 {
|
|
background-color: #FCFFC2 !important;
|
|
}
|
|
|
|
.ctbChck_sp3 {
|
|
background-color: #FBFFA8 !important;
|
|
}
|
|
|
|
.crossCheck_EC {
|
|
background-color: #FFFAE8 !important;
|
|
}
|
|
|
|
.crossCheck_RE {
|
|
background-color: #FFF6D1 !important;
|
|
}
|
|
|
|
.crossCheck_SR {
|
|
background-color: #FFECA2 !important;
|
|
}
|
|
|
|
.crossCheck_AR {
|
|
background-color: #FFDA46 !important;
|
|
}
|
|
|
|
.rsdl_bck0 {
|
|
background-color: white !important;
|
|
}
|
|
|
|
.rsdl_bck1 {
|
|
background-color: #fae2e2 !important;
|
|
}
|
|
|
|
.rsdl_bck2 {
|
|
background-color: #ff9d9d !important;
|
|
}
|
|
|
|
.rsdl_bck3 {
|
|
background-color: #f84242 !important;
|
|
}
|
|
|
|
.rsdl_bck4 {
|
|
background-color: #E8F1FF !important;
|
|
}
|
|
|
|
.rsdl_bck5 {
|
|
background-color: #B9D5FF !important;
|
|
}
|
|
|
|
.rsdl_bck6 {
|
|
background-color: #74ACFF !important;
|
|
}
|
|
|
|
#anketa_edit.subpage_multicrosstabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links {
|
|
align-self: center;
|
|
display: flex;
|
|
position: relative;
|
|
width: auto;
|
|
margin-bottom: 32px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_list {
|
|
display: flex;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_list .table_item {
|
|
cursor: pointer;
|
|
padding: 4px 32px;
|
|
margin-right: 16px;
|
|
line-height: 20px;
|
|
color: #C4C4C4;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
transition: 0.2s;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_list .table_item.active, #anketa_edit.subpage_multicrosstabs .mc_settings_links .table_list .table_item:hover {
|
|
color: #1E88E5;
|
|
border-bottom: 1px #1E88E5 solid;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_settings .faicon:before {
|
|
cursor: pointer;
|
|
margin-left: 16px;
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs .mc_settings_links .table_settings .faicon:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list {
|
|
box-sizing: border-box;
|
|
margin-bottom: 50px;
|
|
padding: 4px;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list ul li.mc_draggable {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
width: 210px;
|
|
margin: 4px;
|
|
padding: 8px;
|
|
list-style: none;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list ul li.mc_draggable:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list ul li.mc_draggable .strong {
|
|
font-weight: 600;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder #spr_list ul li.mc_draggable .strong .faicon:before {
|
|
margin-right: 8px;
|
|
color: #C4C4C4;
|
|
font-size: 14px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_title {
|
|
display: none;
|
|
width: 70%;
|
|
min-height: 15px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_title.mc_table_title.writing {
|
|
background-color: #E5E5E5;
|
|
outline: 1px dashed #E5E5E5;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_title:hover {
|
|
cursor: text;
|
|
background-color: #E5E5E5;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_title .multicrosstab_title_inline:focus {
|
|
outline: none;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr {
|
|
height: 40px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
padding: 8px;
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td table.mc_inner_cell {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-collapse: collapse;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td table.mc_inner_cell tr {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td table.mc_inner_cell tr td {
|
|
width: 100%;
|
|
border: 0;
|
|
border-top: 1px dashed #E5E5E5;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td table.mc_inner_cell tr:first-child td {
|
|
border: 0;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td .delete_var {
|
|
display: none;
|
|
position: absolute;
|
|
margin: -30px -8px;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td .delete_var .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.borderless {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.spr {
|
|
cursor: pointer;
|
|
padding: 16px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.var {
|
|
background-color: #F2F2F2;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.var.horizontal {
|
|
background-color: #FFFFFF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.sums {
|
|
font-weight: 600;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.data {
|
|
padding: 0;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.crossCheck_EC {
|
|
background-color: #FFFAE8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.crossCheck_RE {
|
|
background-color: #FFFAE8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.crossCheck_SR {
|
|
background-color: #FFECA2;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.crossCheck_AR {
|
|
background-color: #FFDA46;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck0 {
|
|
background-color: white;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck1 {
|
|
background-color: #FFE8E8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck2 {
|
|
background-color: #FFD1D1;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck3 {
|
|
background-color: #FF8B8B;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck4 {
|
|
background-color: #E8F1FF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck5 {
|
|
background-color: #B9D5FF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.rsdl_bck6 {
|
|
background-color: #74ACFF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.white {
|
|
background-color: white;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.red {
|
|
background-color: #FFD1D1;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.blue {
|
|
background-color: #E8F1FF;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.empty {
|
|
background-color: #F8F8F8;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.empty.droppable {
|
|
border: 1px dashed #FFC700;
|
|
background-color: rgba(255, 199, 0, 0.05);
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table tr td.drophover {
|
|
background-color: rgba(255, 199, 0, 0.2) !important;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_top_settings {
|
|
display: flex;
|
|
justify-content: end;
|
|
margin-bottom: 8px;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_top_settings .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
#anketa_edit.subpage_multicrosstabs #mc_holder .mc_table_bottom_settings .mc_table_legend {
|
|
border-collapse: collapse;
|
|
line-height: 18px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #F9F9F7;
|
|
}
|
|
|
|
.report_element_data table.mc_table {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.report_element_data .mc_table tr td.spr {
|
|
cursor: auto;
|
|
}
|
|
.report_element_data .mc_table tr td.drophover {
|
|
background-color: #FFC700 !important;
|
|
}
|
|
.report_element_data .mc_table tr td.empty {
|
|
display: none;
|
|
}
|
|
.report_element_data .mc_table tr.last {
|
|
display: none;
|
|
}
|
|
|
|
#ttest_variables {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#ttest_variables .title {
|
|
margin-bottom: 4px;
|
|
}
|
|
#ttest_variables .ttestLeftHolder,
|
|
#ttest_variables .ttestRightHolder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 64px;
|
|
}
|
|
#ttest_variables .ttestLeftHolder button,
|
|
#ttest_variables .ttestRightHolder button {
|
|
width: 190px;
|
|
margin-top: 16px;
|
|
}
|
|
#ttest_variables #ttestVariablesSpan {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 16px;
|
|
padding: 8px;
|
|
max-width: 400px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#ttest_variables #ttestVariablesSpan span {
|
|
margin-bottom: 8px;
|
|
color: #333333;
|
|
}
|
|
#ttest_variables #ttestVariablesSpan span label {
|
|
font-size: 14px;
|
|
}
|
|
#ttest_variables #ttestVariablesSpan span.gray {
|
|
color: #C4C4C4;
|
|
}
|
|
#ttest_variables #ttestVariablesSpan span:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#ttest_variables .ttestSubSetting {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#ttest_variables .ttestSubSetting .setting_line {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
#ttestResults {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 64px;
|
|
}
|
|
#ttestResults .means_table_holder {
|
|
margin-bottom: 48px;
|
|
}
|
|
#ttestResults .means_table_holder:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
#ttestResults .tableChart {
|
|
margin: 16px auto 0 auto;
|
|
}
|
|
#ttestResults .custom_report_include {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 8px;
|
|
}
|
|
#ttestResults .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
#ttestResults table.table_ttest {
|
|
margin: 0 0 16px 0;
|
|
padding: 0;
|
|
}
|
|
#ttestResults table.table_ttest tr.row2 td.cell_value {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
background-color: #F2F2F2;
|
|
}
|
|
#ttestResults table.table_ttest tr.row2 td.cell_value span {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
#ttestResults table.table_ttest tr td {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#ttestResults table.table_ttest tr td.cell_var {
|
|
width: 260px;
|
|
text-align: left;
|
|
}
|
|
#ttestResults table.table_ttest tr td.cell_question a {
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
#ttestResults table.table_ttest tr td.cell_value {
|
|
text-align: center;
|
|
}
|
|
|
|
#div_means_dropdowns {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#div_means_dropdowns .title {
|
|
margin-bottom: 4px;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder,
|
|
#div_means_dropdowns #meansRightHolder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 64px;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder #meansLeftDropdowns,
|
|
#div_means_dropdowns #meansLeftHolder #meansRightDropdowns,
|
|
#div_means_dropdowns #meansRightHolder #meansLeftDropdowns,
|
|
#div_means_dropdowns #meansRightHolder #meansRightDropdowns {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder #meansLeftDropdowns .variabla_line,
|
|
#div_means_dropdowns #meansLeftHolder #meansRightDropdowns .variabla_line,
|
|
#div_means_dropdowns #meansRightHolder #meansLeftDropdowns .variabla_line,
|
|
#div_means_dropdowns #meansRightHolder #meansRightDropdowns .variabla_line {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder #meansLeftDropdowns .variabla_line .faicon,
|
|
#div_means_dropdowns #meansLeftHolder #meansRightDropdowns .variabla_line .faicon,
|
|
#div_means_dropdowns #meansRightHolder #meansLeftDropdowns .variabla_line .faicon,
|
|
#div_means_dropdowns #meansRightHolder #meansRightDropdowns .variabla_line .faicon {
|
|
cursor: pointer;
|
|
margin-left: 8px;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder #meansLeftDropdowns .variabla_line .faicon::before,
|
|
#div_means_dropdowns #meansLeftHolder #meansRightDropdowns .variabla_line .faicon::before,
|
|
#div_means_dropdowns #meansRightHolder #meansLeftDropdowns .variabla_line .faicon::before,
|
|
#div_means_dropdowns #meansRightHolder #meansRightDropdowns .variabla_line .faicon::before {
|
|
color: #1E88E5;
|
|
}
|
|
#div_means_dropdowns #meansLeftHolder button,
|
|
#div_means_dropdowns #meansRightHolder button {
|
|
width: 190px;
|
|
margin-top: 16px;
|
|
}
|
|
#div_means_dropdowns #meansSubSetting {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#div_means_dropdowns #meansSubSetting .setting_line {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
#div_means_data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 64px;
|
|
}
|
|
#div_means_data .means_table_holder {
|
|
margin-bottom: 48px;
|
|
}
|
|
#div_means_data .means_table_holder:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
#div_means_data .tableChart {
|
|
margin: 0 auto 16px auto;
|
|
}
|
|
#div_means_data .custom_report_include {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_means_data .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
#div_means_data table.table_means {
|
|
margin: 0 0 16px 0;
|
|
padding: 0;
|
|
}
|
|
#div_means_data table.table_means tr.row2 td.cell_value {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
background-color: #F2F2F2;
|
|
}
|
|
#div_means_data table.table_means tr td {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#div_means_data table.table_means tr td.cell_var {
|
|
width: 260px;
|
|
text-align: left;
|
|
}
|
|
#div_means_data table.table_means tr td.cell_question a {
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
#div_means_data table.table_means tr td.cell_value {
|
|
text-align: center;
|
|
}
|
|
|
|
#break_variables {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#break_variables .title {
|
|
margin-bottom: 4px;
|
|
}
|
|
#break_variables .breakDropdownHolder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 64px;
|
|
}
|
|
#break_variables .breakDropdownHolder button {
|
|
width: 190px;
|
|
margin-top: 16px;
|
|
}
|
|
#break_variables .breakSubSetting {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#break_variables .breakSubSetting .setting_line {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
#breakResults {
|
|
margin-top: 64px;
|
|
}
|
|
#breakResults #crosstab_legend {
|
|
display: none;
|
|
}
|
|
#breakResults .table_holder {
|
|
margin-bottom: 64px;
|
|
}
|
|
#breakResults .table_holder table tr.row2 td.cell_grid {
|
|
background-color: #F2F2F2;
|
|
}
|
|
#breakResults .table_holder table td.cell_var {
|
|
width: 260px;
|
|
text-align: left;
|
|
}
|
|
#breakResults .table_holder table td.cell_question a {
|
|
text-decoration: none;
|
|
color: #333333;
|
|
}
|
|
#breakResults .table_holder table td.cell_value {
|
|
text-align: center;
|
|
}
|
|
#breakResults .tableChart {
|
|
margin: 0 auto 16px auto;
|
|
}
|
|
#breakResults .table_title {
|
|
position: absolute;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
#breakResults .custom_report_include {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 8px;
|
|
}
|
|
#breakResults .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/*
|
|
Grafi v analizi
|
|
*/
|
|
.chart_holder,
|
|
.tableChart {
|
|
width: 1060px;
|
|
margin: 0 auto;
|
|
padding-top: 36px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
.chart_holder.chart_holder:first-child,
|
|
.tableChart.chart_holder:first-child {
|
|
padding-top: 6px;
|
|
}
|
|
.chart_holder .chart_title,
|
|
.tableChart .chart_title {
|
|
width: 800px;
|
|
margin: 0 0 16px 0;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
text-align: left;
|
|
}
|
|
.chart_holder .chart_title .subtitle,
|
|
.tableChart .chart_title .subtitle {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
}
|
|
.chart_holder .chart_title span.numerus,
|
|
.tableChart .chart_title span.numerus {
|
|
font-weight: normal;
|
|
color: #333333;
|
|
padding-left: 10px;
|
|
}
|
|
.chart_holder .chart_img,
|
|
.tableChart .chart_img {
|
|
float: left;
|
|
min-height: 260px;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
.chart_holder .chart_img img,
|
|
.tableChart .chart_img img {
|
|
width: 800px;
|
|
}
|
|
.chart_holder .chart_bottom_info,
|
|
.tableChart .chart_bottom_info {
|
|
clear: both;
|
|
width: auto;
|
|
height: 20px;
|
|
padding: 5px;
|
|
text-align: left;
|
|
}
|
|
.chart_holder .chart_bottom_info ul,
|
|
.tableChart .chart_bottom_info ul {
|
|
list-style: none;
|
|
}
|
|
.chart_holder .chart_bottom_info ul li,
|
|
.tableChart .chart_bottom_info ul li {
|
|
display: inline;
|
|
margin-right: 2px;
|
|
}
|
|
.chart_holder .chart_other_text,
|
|
.tableChart .chart_other_text {
|
|
margin-top: 10px;
|
|
float: left;
|
|
width: 770px;
|
|
min-height: 150px;
|
|
padding-left: 30px;
|
|
}
|
|
.chart_holder .chart_settings,
|
|
.tableChart .chart_settings {
|
|
float: right;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 230px;
|
|
margin-top: -45px;
|
|
opacity: 0;
|
|
}
|
|
.chart_holder .chart_settings.table_settings,
|
|
.tableChart .chart_settings.table_settings {
|
|
margin-top: -5px;
|
|
}
|
|
.chart_holder .chart_settings.table_settings .tab,
|
|
.tableChart .chart_settings.table_settings .tab {
|
|
width: 100% !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks,
|
|
.tableChart .chart_settings .chart_setting_exportLinks {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks a,
|
|
.tableChart .chart_settings .chart_setting_exportLinks a {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks a:first-child,
|
|
.tableChart .chart_settings .chart_setting_exportLinks a:first-child {
|
|
margin-left: 0;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks button,
|
|
.tableChart .chart_settings .chart_setting_exportLinks button {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 0;
|
|
width: auto;
|
|
margin-left: 16px;
|
|
padding: 4px 14px;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #333333;
|
|
border-radius: 2px;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks button .faicon,
|
|
.tableChart .chart_settings .chart_setting_exportLinks button .faicon {
|
|
margin-right: 8px;
|
|
margin-top: -2px;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks button .faicon:before,
|
|
.tableChart .chart_settings .chart_setting_exportLinks button .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content,
|
|
.tableChart .chart_settings .chart_settings_content {
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 2px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .tab_holder,
|
|
.tableChart .chart_settings .chart_settings_content .tab_holder {
|
|
display: flex;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .tab_holder .tab,
|
|
.tableChart .chart_settings .chart_settings_content .tab_holder .tab {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 50%;
|
|
height: 40px;
|
|
font-size: 13px;
|
|
color: #333333;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .tab_holder .tab.non-active,
|
|
.tableChart .chart_settings .chart_settings_content .tab_holder .tab.non-active {
|
|
cursor: pointer;
|
|
color: #777777;
|
|
background-color: #F8F8F8 !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding: 0 16px 16px 16px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
margin: 16px 0 0 0;
|
|
text-align: left;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting label,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting label {
|
|
text-align: left;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting select,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting select {
|
|
width: 124px;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
padding: 0 8px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #D3D3D3;
|
|
border-radius: 4px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .faicon.refresh:before,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .faicon.refresh:before {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom {
|
|
display: inline-block;
|
|
height: 24px;
|
|
vertical-align: 1px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button {
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
padding: 0 16px;
|
|
margin: 0;
|
|
height: 24px;
|
|
width: auto;
|
|
min-width: auto;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 15px;
|
|
color: #A9A9A9;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:first-child,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:first-child {
|
|
border-radius: 2px 0px 0px 2px;
|
|
border-right: 1px #1E88E5 solid !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:nth-child(2),
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:nth-child(2) {
|
|
border-radius: 0px 2px 2px 0px;
|
|
border-left: 0 !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button.active, .chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:hover,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button.active,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button:hover {
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
border-color: #1E88E5;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button.active,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting .scale_ordnom button.active {
|
|
cursor: default;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .monitor:before,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .monitor:before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .variable,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .variable {
|
|
margin-right: 16px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .icon_box,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_setting_icons .icon_box {
|
|
height: auto !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner fieldset.chart_num_limits,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner fieldset.chart_num_limits {
|
|
padding: 0;
|
|
margin: 0 !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content .chart_settings_inner .chart_num_limits legend,
|
|
.tableChart .chart_settings .chart_settings_content .chart_settings_inner .chart_num_limits legend {
|
|
color: black;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content span.title,
|
|
.tableChart .chart_settings .chart_settings_content span.title {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content span.edit,
|
|
.tableChart .chart_settings .chart_settings_content span.edit {
|
|
cursor: pointer;
|
|
display: block;
|
|
margin: 10px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
color: #1E88E5;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content span.edit:hover,
|
|
.tableChart .chart_settings .chart_settings_content span.edit:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_content input[type=text],
|
|
.tableChart .chart_settings .chart_settings_content input[type=text] {
|
|
width: 50px;
|
|
float: right;
|
|
}
|
|
.chart_holder .other_settings,
|
|
.tableChart .other_settings {
|
|
margin-top: 70px;
|
|
margin-bottom: 20px;
|
|
/*height: 60px;*/
|
|
}
|
|
.chart_holder .other_settings .tab,
|
|
.tableChart .other_settings .tab {
|
|
width: 100% !important;
|
|
}
|
|
.chart_holder .other_settings .chart_settings_inner,
|
|
.tableChart .other_settings .chart_settings_inner {
|
|
margin-top: 0px;
|
|
}
|
|
.chart_holder .anl_bl,
|
|
.tableChart .anl_bl {
|
|
border-left: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_br,
|
|
.tableChart .anl_br {
|
|
border-right: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_bt,
|
|
.tableChart .anl_bt {
|
|
border-top: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_bb,
|
|
.tableChart .anl_bb {
|
|
border-bottom: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.tableChart {
|
|
position: relative;
|
|
padding-bottom: 24px;
|
|
}
|
|
.tableChart .custom_report_include {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: 0 !important;
|
|
}
|
|
.tableChart .custom_report_include a {
|
|
text-decoration: none;
|
|
}
|
|
.tableChart .custom_report_include a .faicon:before {
|
|
vertical-align: 1px;
|
|
}
|
|
.tableChart .custom_report_include {
|
|
display: none !important;
|
|
}
|
|
.tableChart .chart_setting_exportLinks {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
/*editing chart labels in popup*/
|
|
table#grids td {
|
|
padding: 0 5px;
|
|
text-align: center;
|
|
}
|
|
table#grids input {
|
|
width: 100%;
|
|
}
|
|
|
|
ul.vrednost_sort {
|
|
padding: 0;
|
|
}
|
|
ul.vrednost_sort li {
|
|
list-style: none;
|
|
border: 1px solid #E5E5E5;
|
|
margin: 5px 0px 5px 0px;
|
|
padding: 2px 3px 2px 3px;
|
|
width: 100%;
|
|
}
|
|
ul.vrednost_sort input[type=text] {
|
|
width: 50%;
|
|
}
|
|
|
|
#chart_hq_setting {
|
|
width: auto;
|
|
display: inline-block;
|
|
margin-left: 20px;
|
|
padding: 2px 5px 0px 5px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid silver;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 4px 4px 4px 4px;
|
|
-webkit-border-radius: 4px;
|
|
}
|
|
#chart_hq_setting ul {
|
|
margin: 0px !important;
|
|
padding: 0px;
|
|
}
|
|
#chart_hq_setting ul li {
|
|
display: block;
|
|
margin: 0px !important;
|
|
padding: 3px;
|
|
list-style: none;
|
|
}
|
|
#chart_hq_setting ul li span.as_link {
|
|
font-weight: 500;
|
|
color: #1E88E5 !important;
|
|
}
|
|
#chart_hq_setting ul li span.as_link.gray {
|
|
font-weight: normal;
|
|
color: #1E88E5 !important;
|
|
}
|
|
#chart_hq_setting ul li span.advanced {
|
|
display: block;
|
|
font-weight: normal;
|
|
}
|
|
#chart_hq_setting ul li.space {
|
|
display: none;
|
|
display: none;
|
|
}
|
|
|
|
.chart_other_text .chart_title {
|
|
margin-top: 20px;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
.chart_other_text table tr.hidden {
|
|
display: none;
|
|
}
|
|
.chart_other_text table td.anl_ac {
|
|
text-align: center;
|
|
}
|
|
|
|
.freq_chart_table {
|
|
width: 800px;
|
|
float: left;
|
|
color: black;
|
|
}
|
|
.freq_chart_table .chart_title {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
.freq_chart_table table tr.hidden {
|
|
display: none;
|
|
}
|
|
.freq_chart_table table tr td.anl_ac {
|
|
text-align: center;
|
|
}
|
|
|
|
.anl_user_text_more_charts {
|
|
float: left;
|
|
padding: 0px 5px;
|
|
text-indent: 0px;
|
|
}
|
|
|
|
#chart_custom_skin_cover {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#chart_settings_profiles_middle #div_chart_skin_previews {
|
|
position: fixed;
|
|
top: 19.8%;
|
|
left: 7%;
|
|
width: 200px;
|
|
padding: 16px;
|
|
background-color: white;
|
|
}
|
|
#chart_settings_profiles_middle .div_chart_skin_preview {
|
|
display: none;
|
|
width: 200px;
|
|
height: 120px;
|
|
}
|
|
#chart_settings_profiles_middle .div_chart_skin_preview table tr td {
|
|
width: 50px;
|
|
height: 18px;
|
|
}
|
|
|
|
#newChartSkin {
|
|
display: none;
|
|
position: absolute;
|
|
left: 50px;
|
|
top: 100px;
|
|
z-index: 20;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
|
|
#renameChartSkin {
|
|
display: none;
|
|
position: absolute;
|
|
left: 50px;
|
|
top: 100px;
|
|
z-index: 20;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
|
|
#deleteChartSkin {
|
|
display: none;
|
|
position: absolute;
|
|
left: 50px;
|
|
top: 100px;
|
|
z-index: 20;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
|
|
/*
|
|
Porocilo po meri
|
|
*/
|
|
.subpage_analysis_creport #anketa_custom_report {
|
|
/*popups for custom reports*/
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 25px;
|
|
margin-bottom: 32px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_list {
|
|
display: flex;
|
|
align-items: center;
|
|
border-right: 1px #E5E5E5 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_list .list_item {
|
|
cursor: pointer;
|
|
height: 25px;
|
|
min-width: 175px;
|
|
padding: 0 16px;
|
|
margin-right: 16px;
|
|
text-align: center;
|
|
color: #A0A0A0;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
transition: 0.2s;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_list .list_item.active, .subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_list .list_item:hover {
|
|
color: #1E88E5;
|
|
border-bottom: 1px #1E88E5 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .faicon {
|
|
cursor: pointer;
|
|
margin-left: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
transition: 0.2s;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .faicon:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_base {
|
|
margin-left: 16px;
|
|
font-size: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_top .custom_report_base select {
|
|
margin: 0 0 0 4px;
|
|
width: auto;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_view {
|
|
display: flex;
|
|
margin-bottom: 8px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_view a {
|
|
margin-right: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_view a .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements {
|
|
box-sizing: border-box;
|
|
padding: 16px 32px 32px 32px;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .custom_report_title .creport_title_inline {
|
|
padding: 8px 16px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
border: 1px solid #FFFFFF;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .custom_report_title .creport_title_inline:hover {
|
|
cursor: text;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .custom_report_title.writing .creport_title_inline {
|
|
border: 1px solid #1E88E5;
|
|
outline: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable {
|
|
list-style-type: none !important;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element:hover {
|
|
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element.active {
|
|
border-color: #1E88E5;
|
|
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.07);
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element.active .report_element_head {
|
|
background-color: #FFFFFF;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_head {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
padding: 8px 8px 8px 16px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_head .report_element_title {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_head .report_element_icons {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_head .report_element_icons .faicon:before {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_head .report_element_icons .faicon:hover:before {
|
|
color: #0059ab;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 16px 8px 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings select {
|
|
margin: 0 16px 0 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings #ttestVariablesSpan {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 8px;
|
|
max-width: 300px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings #ttestVariablesSpan span {
|
|
margin-bottom: 8px;
|
|
color: #333333;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings #ttestVariablesSpan span label {
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings #ttestVariablesSpan span.gray {
|
|
color: #C4C4C4;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_settings #ttestVariablesSpan span:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_data {
|
|
padding: 16px 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text {
|
|
position: relative;
|
|
padding: 16px 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text:hover .faicon.edit, .subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text.writing .faicon.edit {
|
|
opacity: 1;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text .faicon.edit {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: 24px;
|
|
top: 22px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text .faicon.edit:before {
|
|
color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text .creport_text_inline {
|
|
cursor: text;
|
|
box-sizing: border-box;
|
|
min-height: 30px;
|
|
padding: 4px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
outline: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
transition: 0.1s;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text .creport_text_inline[contenteditable=true]:focus, .subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text .creport_text_inline[contenteditable=true]:hover {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text.report_element_comment .faicon.edit {
|
|
top: 40px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_standard .report_element .report_element_text.report_element_comment .title {
|
|
font-weight: 600;
|
|
margin-bottom: 4px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_break .report_element {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_break .report_element .pb_text {
|
|
cursor: pointer;
|
|
width: 170px;
|
|
font-size: 14px;
|
|
color: #A0A0A0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_break .report_element .pb_line {
|
|
width: 100%;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator {
|
|
margin: 8px 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element {
|
|
display: flex;
|
|
align-items: center;
|
|
opacity: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element > span,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element > span {
|
|
cursor: pointer;
|
|
margin-right: 16px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element > span .faicon,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element > span .faicon {
|
|
margin-right: 4px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element > span .faicon:before,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element > span .faicon:before {
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element > span:hover,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element > span:hover {
|
|
color: #0059ab;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li.report_element_separator .add_element > span:hover .faicon::before,
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements ul#custom_report_sortable li .report_element_separator .add_element > span:hover .faicon::before {
|
|
color: #0059ab;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .first_element_text {
|
|
margin-top: 16px;
|
|
text-align: center;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .add_element.bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 32px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_elements .add_element.bottom button {
|
|
margin: 0 8px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report .custom_report_include {
|
|
clear: both;
|
|
margin: 5px 10px;
|
|
text-align: left;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report .custom_report_include a {
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_alert {
|
|
display: none;
|
|
margin-left: -200px;
|
|
width: 280px;
|
|
height: 100px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #custom_report_alert .buttons {
|
|
position: absolute;
|
|
right: 10px;
|
|
bottom: 15px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report table.analysis_reports {
|
|
width: 100%;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report table.analysis_reports tr td {
|
|
vertical-align: top;
|
|
width: 30%;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report table.analysis_reports tr td fieldset {
|
|
padding: 0px 10px 10px 10px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report table.analysis_reports tr td span.subtitle {
|
|
font-weight: 600;
|
|
display: block;
|
|
padding: 10px 0 5px 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report table.analysis_reports tr td a {
|
|
line-height: 24px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: fixed;
|
|
left: calc(50% - 210px);
|
|
top: 45vh;
|
|
z-index: 999;
|
|
margin: 10px;
|
|
width: 420px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile h2,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile h2 span.faicon,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile h2 span.fa-brands,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .divPopUp_top span.faicon,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile h2 span.faicon:before,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile h2 span.fa-brands:before,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .divPopUp_top span.faicon:before,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile p {
|
|
line-height: 20px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_note,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left .list .list-item.active, .subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .setting_line label,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .settings_block label,
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #newCReportProfile.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #renameCReportProfile {
|
|
display: none;
|
|
position: fixed;
|
|
left: 250px;
|
|
top: 200px;
|
|
z-index: 999;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #shareCReportProfile {
|
|
display: none;
|
|
position: fixed;
|
|
left: 250px;
|
|
top: 200px;
|
|
z-index: 999;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
width: 550px;
|
|
height: auto;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #deleteCReportProfile {
|
|
display: none;
|
|
position: fixed;
|
|
left: 250px;
|
|
top: 200px;
|
|
z-index: 999;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
width: 550px;
|
|
background-color: white;
|
|
border: 4px solid #E5E5E5;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #div_creport_settings_profiles {
|
|
display: none;
|
|
width: 350px;
|
|
height: 350px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #div_creport_settings_profiles #creport_settings_profiles_left {
|
|
margin-bottom: 10px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #div_creport_settings_profiles #creport_settings_profiles_comment {
|
|
clear: both;
|
|
margin-top: 40px;
|
|
}
|
|
.subpage_analysis_creport #anketa_custom_report #div_creport_settings_profiles #creport_settings_profiles_comment textarea {
|
|
width: 98%;
|
|
height: 30px;
|
|
}
|
|
|
|
div.reports_holder {
|
|
display: flex;
|
|
flex: row;
|
|
justify-content: space-between;
|
|
gap: 32px;
|
|
}
|
|
div.reports_holder fieldset {
|
|
flex-basis: 100%;
|
|
}
|
|
div.reports_holder fieldset ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
div.reports_holder fieldset ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.reports_holder fieldset ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.reports_holder fieldset ul li.title {
|
|
font-weight: 800;
|
|
}
|
|
div.reports_holder fieldset ul li a:not(.hasline) {
|
|
text-decoration: none;
|
|
}
|
|
div.reports_holder fieldset ul li span.faicon {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
/*
|
|
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
|
|
*/
|
|
#zoom_profiles_right .settings_block .setting_line.indent {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
#dsp_inspect_cover {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
}
|
|
#dsp_inspect_cover .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#dsp_inspect_cover .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#dsp_inspect_cover .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#dsp_inspect_cover .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#dsp_inspect_cover h2,
|
|
#dsp_inspect_cover .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#dsp_inspect_cover h2 span.faicon,
|
|
#dsp_inspect_cover h2 span.fa-brands,
|
|
#dsp_inspect_cover .divPopUp_top span.faicon,
|
|
#dsp_inspect_cover .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#dsp_inspect_cover h2 span.faicon:before,
|
|
#dsp_inspect_cover h2 span.fa-brands:before,
|
|
#dsp_inspect_cover .divPopUp_top span.faicon:before,
|
|
#dsp_inspect_cover .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover p {
|
|
line-height: 20px;
|
|
}
|
|
#dsp_inspect_cover .popup_note,
|
|
#dsp_inspect_cover .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#dsp_inspect_cover .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#dsp_inspect_cover .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#dsp_inspect_cover .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left .list .list-item.active, #dsp_inspect_cover .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#dsp_inspect_cover .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#dsp_inspect_cover .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#dsp_inspect_cover .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#dsp_inspect_cover .popup_main .setting_line label,
|
|
#dsp_inspect_cover .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#dsp_inspect_cover .popup_main .settings_block label,
|
|
#dsp_inspect_cover .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#dsp_inspect_cover .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#dsp_inspect_cover.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#fade .popup_holder #fullscreen.z-index200 {
|
|
position: absolute;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
#div_missing_profiles {
|
|
display: none;
|
|
}
|
|
|
|
.fs_container {
|
|
height: 280px;
|
|
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: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
#fs_list_1 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_1 li.dds_move {
|
|
background: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#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: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
#fs_list_2 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_2 li.dds_move {
|
|
background: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#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: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
#fs_list_3 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_3 li.dds_move {
|
|
background: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#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: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
#fs_list_4 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_4 li.dds_move {
|
|
background: #EAF9FE;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
#tbl_color_ersidual {
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
border-collapse: collapse;
|
|
margin: 0px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
input#startDate {
|
|
width: 80px;
|
|
}
|
|
|
|
input#endDate {
|
|
width: 80px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
#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);
|
|
}
|
|
|
|
/*table settings popup*/
|
|
.mc_table_settings {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: fixed;
|
|
top: 200px;
|
|
left: calc(50% - 200px);
|
|
z-index: 999;
|
|
width: 400px;
|
|
}
|
|
.mc_table_settings .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
.mc_table_settings .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
.mc_table_settings .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
.mc_table_settings .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
.mc_table_settings h2,
|
|
.mc_table_settings .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
.mc_table_settings h2 span.faicon,
|
|
.mc_table_settings h2 span.fa-brands,
|
|
.mc_table_settings .divPopUp_top span.faicon,
|
|
.mc_table_settings .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
.mc_table_settings h2 span.faicon:before,
|
|
.mc_table_settings h2 span.fa-brands:before,
|
|
.mc_table_settings .divPopUp_top span.faicon:before,
|
|
.mc_table_settings .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings p {
|
|
line-height: 20px;
|
|
}
|
|
.mc_table_settings .popup_note,
|
|
.mc_table_settings .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
.mc_table_settings .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
.mc_table_settings .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
.mc_table_settings .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left .list .list-item.active, .mc_table_settings .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
.mc_table_settings .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
.mc_table_settings .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
.mc_table_settings .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
.mc_table_settings .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
.mc_table_settings .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.mc_table_settings .popup_main .setting_line label,
|
|
.mc_table_settings .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
.mc_table_settings .popup_main .settings_block label,
|
|
.mc_table_settings .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
.mc_table_settings .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.mc_table_settings.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
.mc_table_settings #mcSettingsButtons {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
right: 10px;
|
|
}
|
|
.mc_table_settings #delez {
|
|
width: 300px;
|
|
margin: 5px 10px 0px 60px;
|
|
}
|
|
.mc_table_settings form {
|
|
padding: 10px;
|
|
}
|
|
.mc_table_settings fieldset {
|
|
margin: 0px 0px 10px 0px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
.mc_table_settings legend {
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
/*new table popup*/
|
|
#newMCTable {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 999;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: #FFFFFF;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
#newMCTable .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#newMCTable .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#newMCTable .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#newMCTable .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#newMCTable h2,
|
|
#newMCTable .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#newMCTable h2 span.faicon,
|
|
#newMCTable h2 span.fa-brands,
|
|
#newMCTable .divPopUp_top span.faicon,
|
|
#newMCTable .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#newMCTable h2 span.faicon:before,
|
|
#newMCTable h2 span.fa-brands:before,
|
|
#newMCTable .divPopUp_top span.faicon:before,
|
|
#newMCTable .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#newMCTable .popup_note,
|
|
#newMCTable .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#newMCTable .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#newMCTable .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#newMCTable .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#newMCTable .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#newMCTable .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#newMCTable .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#newMCTable .popup_main .popup_left .list .list-item.active, #newMCTable .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#newMCTable .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#newMCTable .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#newMCTable .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#newMCTable .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#newMCTable .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#newMCTable .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#newMCTable .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#newMCTable .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#newMCTable .popup_main .setting_line label,
|
|
#newMCTable .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#newMCTable .popup_main .settings_block label,
|
|
#newMCTable .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#newMCTable .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#newMCTable.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
/*rename table popup*/
|
|
#renameMCTable {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 999;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: #FFFFFF;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
#renameMCTable .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#renameMCTable .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#renameMCTable .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#renameMCTable .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#renameMCTable h2,
|
|
#renameMCTable .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#renameMCTable h2 span.faicon,
|
|
#renameMCTable h2 span.fa-brands,
|
|
#renameMCTable .divPopUp_top span.faicon,
|
|
#renameMCTable .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#renameMCTable h2 span.faicon:before,
|
|
#renameMCTable h2 span.fa-brands:before,
|
|
#renameMCTable .divPopUp_top span.faicon:before,
|
|
#renameMCTable .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#renameMCTable .popup_note,
|
|
#renameMCTable .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#renameMCTable .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#renameMCTable .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#renameMCTable .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#renameMCTable .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#renameMCTable .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#renameMCTable .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#renameMCTable .popup_main .popup_left .list .list-item.active, #renameMCTable .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#renameMCTable .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#renameMCTable .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#renameMCTable .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#renameMCTable .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#renameMCTable .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#renameMCTable .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#renameMCTable .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#renameMCTable .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#renameMCTable .popup_main .setting_line label,
|
|
#renameMCTable .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#renameMCTable .popup_main .settings_block label,
|
|
#renameMCTable .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#renameMCTable .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#renameMCTable.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
/*delete table popup*/
|
|
#deleteMCTable {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 999;
|
|
left: calc(50% - 300px);
|
|
top: 40%;
|
|
padding: 20px;
|
|
width: 550px;
|
|
background-color: #FFFFFF;
|
|
border-left: 6px #1E88E5 solid !important;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
|
|
}
|
|
#deleteMCTable .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#deleteMCTable .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#deleteMCTable .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#deleteMCTable .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#deleteMCTable h2,
|
|
#deleteMCTable .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#deleteMCTable h2 span.faicon,
|
|
#deleteMCTable h2 span.fa-brands,
|
|
#deleteMCTable .divPopUp_top span.faicon,
|
|
#deleteMCTable .divPopUp_top span.fa-brands {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#deleteMCTable h2 span.faicon:before,
|
|
#deleteMCTable h2 span.fa-brands:before,
|
|
#deleteMCTable .divPopUp_top span.faicon:before,
|
|
#deleteMCTable .divPopUp_top span.fa-brands:before {
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#deleteMCTable .popup_note,
|
|
#deleteMCTable .profile_right_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#deleteMCTable .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#deleteMCTable .popup_main.no_border {
|
|
border-bottom: none;
|
|
}
|
|
#deleteMCTable .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left {
|
|
box-sizing: border-box;
|
|
width: 216px;
|
|
min-width: 216px;
|
|
padding-right: 16px;
|
|
padding-bottom: 16px;
|
|
margin-right: 16px;
|
|
border-right: 1px #C4C4C4 solid;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left .list .list-item {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
border: 1px #E5E5E5 solid;
|
|
border-radius: 2px;
|
|
transition: 0.2s;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left .list .list-item.active, #deleteMCTable .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#deleteMCTable .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#deleteMCTable .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#deleteMCTable .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#deleteMCTable .popup_main fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 0 0 0;
|
|
margin-bottom: 16px;
|
|
border: 0;
|
|
border-top: 1px #E5E5E5 solid;
|
|
}
|
|
#deleteMCTable .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#deleteMCTable .popup_main .setting_line label,
|
|
#deleteMCTable .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#deleteMCTable .popup_main .settings_block label,
|
|
#deleteMCTable .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#deleteMCTable .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#deleteMCTable.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
/*tables list popup*/
|
|
#div_mc_tables {
|
|
display: none;
|
|
}
|
|
#div_mc_tables #mc_tables_left {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#mc_tables {
|
|
cursor: pointer;
|
|
width: 99%;
|
|
height: 160px;
|
|
display: inline-block;
|
|
border: 1px solid gray;
|
|
}
|
|
#mc_tables .option {
|
|
padding: 1px;
|
|
}
|
|
#mc_tables .active {
|
|
background-color: #1E88E5;
|
|
color: white;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
Popupi z nastavitvami grafov
|
|
*/
|
|
/* Nastavitve grafov */
|
|
#div_chart_settings_profiles {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
width: 850px;
|
|
}
|
|
#div_chart_settings_profiles .as_link {
|
|
color: #1E88E5 !important;
|
|
}
|
|
#div_chart_settings_profiles .graf_naknadno {
|
|
margin-bottom: 16px;
|
|
font-style: italic;
|
|
color: #777777;
|
|
}
|
|
#div_chart_settings_profiles #chart_skin_note {
|
|
width: auto;
|
|
padding: 10px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #F8F8F8;
|
|
border-radius: 2px;
|
|
margin-bottom: 16px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left {
|
|
width: 265px;
|
|
margin-right: 64px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder {
|
|
width: 100%;
|
|
border: 1px solid #E5E5E5;
|
|
height: 135px;
|
|
margin-top: 4px;
|
|
margin-bottom: 16px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles,
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles_custom {
|
|
width: 100%;
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: 100%;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles .option,
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles_custom .option {
|
|
padding: 4px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles .active,
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .chart_profiles_holder #chart_profiles_custom .active {
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .button_holder {
|
|
gap: 8px;
|
|
justify-content: space-between;
|
|
padding: 0 !important;
|
|
border: none !important;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_left .button_holder button {
|
|
min-width: 0;
|
|
margin: 0;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_middle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 200px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_middle .form-item {
|
|
width: 200px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_middle .form-item label {
|
|
margin-right: 8px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_middle .colorwell {
|
|
width: 70px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_wrap #chart_settings_profiles_right {
|
|
width: 385px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
#div_chart_settings_profiles .button_holder {
|
|
border-top: 1px solid #E5E5E5;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
#chart_skin_previews h2 {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
|
|
/* popup edit chart */
|
|
#chart_float_editing {
|
|
display: none;
|
|
width: 815px;
|
|
box-sizing: border-box;
|
|
}
|
|
#chart_float_editing .button_holder {
|
|
align-items: flex-end;
|
|
box-sizing: border-box;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsTabs {
|
|
box-sizing: border-box;
|
|
width: 160px;
|
|
padding: 0px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsTabs ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsTabs ul li {
|
|
width: 100%;
|
|
height: 20px;
|
|
padding: 10px 0;
|
|
cursor: pointer;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsTabs ul li.active {
|
|
color: #1E88E5;
|
|
background-color: #EAF9FE;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea {
|
|
overflow: auto;
|
|
box-sizing: border-box;
|
|
height: 400px;
|
|
width: 615px;
|
|
padding: 0 20px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea ul.vrednost_sort li {
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .chart_setting {
|
|
padding: 5px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea #chart_number_limits_advanced ul {
|
|
padding: 3px 20px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea #chart_number_limits_advanced ul li {
|
|
padding: 2px 0px 3px 0px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea #chart_number_limits_advanced ul li .chart_advanced_warning {
|
|
padding: 0px 10px;
|
|
color: red;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .new_labels {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .new_labels p {
|
|
margin-right: 8px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .chart_editing textarea {
|
|
width: 100%;
|
|
height: 40px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .chart_editing #vrednosti_holder ul li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .chart_editing #vrednosti_holder ul li textarea {
|
|
width: 90%;
|
|
margin-right: 8px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .form-item {
|
|
width: 200px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .form-item label {
|
|
margin-right: 8px;
|
|
}
|
|
#chart_float_editing .chart_settings_wrap .chartSettingsArea .colorwell {
|
|
width: 70px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/*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;
|
|
}
|
|
|
|
/*#custom_report_alert {
|
|
display: none;
|
|
|
|
margin-left: -200px;
|
|
width: 280px;
|
|
height: 100px;
|
|
|
|
.buttons {
|
|
position: absolute;
|
|
right: 10px;
|
|
bottom: 15px;
|
|
}
|
|
}*/
|
|
#arch_body_div .analysis_icons_holder {
|
|
display: none;
|
|
}
|
|
#arch_body_div h2 {
|
|
margin: 16px 0 16px 0;
|
|
}
|
|
#arch_body_div h3 {
|
|
margin: 0 0 32px 0;
|
|
}
|
|
#arch_body_div .analysis_bottom_settings {
|
|
margin-bottom: 32px;
|
|
}
|
|
#arch_body_div .analysis_bottom_settings .comment_holder,
|
|
#arch_body_div .analysis_bottom_settings a:nth-child(2),
|
|
#arch_body_div .analysis_bottom_settings a:nth-child(6) {
|
|
display: none;
|
|
}
|
|
|
|
.dt-buttons {
|
|
margin: 0 12px 16px 0;
|
|
}
|
|
|
|
.dataTables_length {
|
|
margin: 0 16px 16px 0 !important;
|
|
}
|
|
|
|
button.dt-button {
|
|
font-weight: 400;
|
|
padding: 0 16px;
|
|
height: 28px;
|
|
margin-right: 4px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
border-radius: 2px;
|
|
}
|
|
button.dt-button:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.dt-button.active {
|
|
border-color: #1E88E5;
|
|
}
|
|
button.dt-button span {
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
.dt-button-collection {
|
|
padding-top: 48px;
|
|
}
|
|
|
|
button.buttons-columnVisibility {
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
margin-bottom: 8px;
|
|
margin-right: 4px;
|
|
}
|
|
button.buttons-columnVisibility:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.buttons-columnVisibility.active {
|
|
border-color: #1E88E5;
|
|
}
|
|
|
|
.dataTables_length {
|
|
margin-left: 12px;
|
|
}
|
|
.dataTables_length select {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
padding: 3px 7px;
|
|
height: 28px;
|
|
}
|
|
.dataTables_length select option {
|
|
font-size: 16px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.dataTables_filter {
|
|
margin-bottom: 16px;
|
|
}
|
|
.dataTables_filter input {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
height: 28px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
|
|
.dataTables_info {
|
|
margin-top: 30px;
|
|
padding-top: 0 !important;
|
|
}
|
|
|
|
.select-info {
|
|
display: none;
|
|
}
|
|
|
|
table.usersTable {
|
|
margin-left: 14px;
|
|
margin-right: 14px;
|
|
width: calc(100% - 2*14px);
|
|
white-space: nowrap;
|
|
border-collapse: collapse !important;
|
|
}
|
|
table.usersTable thead th,
|
|
table.usersTable tbody th {
|
|
font-weight: 600 !important;
|
|
background-color: #F8F8F8 !important;
|
|
padding: 8px 10px !important;
|
|
}
|
|
table.usersTable thead td,
|
|
table.usersTable thead th,
|
|
table.usersTable tbody td,
|
|
table.usersTable tbody th {
|
|
border: 1px solid #E5E5E5;
|
|
vertical-align: middle;
|
|
border-collapse: collapse !important;
|
|
}
|
|
table.usersTable thead td,
|
|
table.usersTable tbody td {
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
table.dataTable {
|
|
/*tbody td.sorting_1 {
|
|
text-align: center;
|
|
}*/
|
|
}
|
|
table.dataTable.no-footer {
|
|
border-bottom: none !important;
|
|
}
|
|
table.dataTable thead th {
|
|
border-bottom: none !important;
|
|
font-weight: 600 !important;
|
|
background-color: #F8F8F8 !important;
|
|
padding: 8px 10px !important;
|
|
}
|
|
|
|
/* datatables popravki */
|
|
table.dataTable thead .sorting_asc {
|
|
background: url("/admin/survey/modules/mod_hierarhija/img/sort_asc.png") no-repeat center right !important;
|
|
}
|
|
|
|
table.dataTable thead .sorting_desc {
|
|
background: url("/admin/survey/modules/mod_hierarhija/img/sort_desc.png") no-repeat center right !important;
|
|
}
|
|
|
|
table.dataTable thead .sorting {
|
|
background: url("/admin/survey/modules/mod_hierarhija/img/sort_both.png") no-repeat center right !important;
|
|
}
|
|
|
|
table.dataTable thead .sorting_asc_disabled {
|
|
background: url("/admin/survey/modules/mod_hierarhija/img/sort_asc_disabled.png") no-repeat center right !important;
|
|
}
|
|
|
|
table.dataTable thead .sorting_desc_disabled {
|
|
background: url("/admin/survey/modules/mod_hierarhija/img/sort_desc_disabled.png") no-repeat center right !important;
|
|
}
|
|
|
|
.dataTables_paginate {
|
|
border-radius: 2px !important;
|
|
background-color: #F8F8F8 !important;
|
|
padding: 0 !important;
|
|
margin-top: 30px;
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
.paginate_button {
|
|
border: 1px solid #F8F8F8 !important;
|
|
background: #F8F8F8 !important;
|
|
padding: 0 !important;
|
|
height: 24px;
|
|
margin-right: 4px;
|
|
font-size: 14px !important;
|
|
}
|
|
.paginate_button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
.paginate_button:hover {
|
|
background-color: #ebebeb !important;
|
|
color: #333333 !important;
|
|
}
|
|
.paginate_button.current {
|
|
color: #FFFFFF !important;
|
|
border: 1px solid #1E88E5 !important;
|
|
background: #1E88E5 !important;
|
|
}
|
|
.paginate_button.current:hover {
|
|
background-color: #187bd1 !important;
|
|
}
|
|
.paginate_button.disabled {
|
|
border: 1px solid transparent !important;
|
|
background: transparent !important;
|
|
}
|
|
|
|
.dataTables_info,
|
|
.dataTables_length,
|
|
.dataTables_length select,
|
|
.dataTables_length select option,
|
|
.dataTables_filter {
|
|
font-size: 14px !important;
|
|
}
|
|
.dataTables_info label,
|
|
.dataTables_length label,
|
|
.dataTables_length select label,
|
|
.dataTables_length select option label,
|
|
.dataTables_filter label {
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
table.dataTable {
|
|
padding: 0 !important;
|
|
}
|
|
table.dataTable td:not(:first-of-type), table.dataTable th:not(:first-of-type) {
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
Custom modules
|
|
*/
|
|
.page_kolektor button.kolektor_create_response {
|
|
margin-bottom: 40px;
|
|
}
|
|
.page_kolektor table.kolektor_reponses {
|
|
width: 100%;
|
|
}
|
|
.page_kolektor table.kolektor_reponses tr td a,
|
|
.page_kolektor table.kolektor_reponses tr td span {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#kolektor_add_response {
|
|
max-height: 95vh;
|
|
overflow-y: auto;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form .error_messages {
|
|
margin-bottom: 16px;
|
|
font-weight: 600;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form .error_messages ul {
|
|
margin: 0;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form .kolektor_setting {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 8px;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form .kolektor_setting.error {
|
|
color: #FF0000;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form .kolektor_setting .setting_line {
|
|
margin-top: 8px;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form #kolektor_respondent_settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#kolektor_add_response #kolektor_add_response_form textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
#kolektor_send_respondent_notification {
|
|
max-height: 95vh;
|
|
overflow-y: auto;
|
|
}
|
|
#kolektor_send_respondent_notification textarea {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
|
|
@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: 1100px) {
|
|
div.wrap1360 {
|
|
justify-content: center !important;
|
|
}
|
|
div.wrap1360 div.section {
|
|
flex: 0 !important;
|
|
width: fit-content;
|
|
border: none !important;
|
|
}
|
|
div.wrap1360.subpage_advanced div#one,
|
|
div.wrap1360.subpage_advanced div#two {
|
|
display: none !important;
|
|
}
|
|
div.wrap1360.subpage_breaks div#one,
|
|
div.wrap1360.subpage_breaks div#three {
|
|
display: none !important;
|
|
}
|
|
div.wrap1360.subpage_ div#two,
|
|
div.wrap1360.subpage_ div#three {
|
|
display: none !important;
|
|
}
|
|
}
|
|
@media (max-width: 1100px) {
|
|
.no_survey_title {
|
|
font-size: 24px !important;
|
|
width: 92vw !important;
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
@media (max-width: 1100px) {
|
|
.no_survey_box,
|
|
#no_survey_features {
|
|
width: 92vw !important;
|
|
}
|
|
}
|
|
@media (max-width: 1100px) {
|
|
#no_survey_video {
|
|
width: 92vw !important;
|
|
aspect-ratio: 16/9;
|
|
}
|
|
#no_survey_video p {
|
|
height: 100%;
|
|
}
|
|
#no_survey_video p iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
@media (max-width: 850px) {
|
|
body #main_holder #main {
|
|
margin: 70px 0 0 0;
|
|
padding: 0;
|
|
/*overflow-x: scroll;*/
|
|
}
|
|
body #main_holder #main #placeholder {
|
|
width: auto;
|
|
}
|
|
body #main_holder #main .fullwidth,
|
|
body #main_holder #main .narrow,
|
|
body #main_holder #main .wide {
|
|
box-sizing: border-box !important;
|
|
width: 100%;
|
|
padding: 32px 16px;
|
|
}
|
|
body #main_holder #main .menu_left {
|
|
flex-direction: column-reverse;
|
|
}
|
|
body #main_holder #main .menu_left .layout_left_item {
|
|
width: 100%;
|
|
margin: 32px 0 0 0;
|
|
box-shadow: none;
|
|
}
|
|
body #main_holder #main .menu_left .layout_right_item {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
fieldset {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
padding: 12px 16px 16px;
|
|
}
|
|
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;
|
|
}
|
|
|
|
.setting_horizontal_wrapper {
|
|
flex-direction: column !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;
|
|
}
|
|
|
|
button.small, submit.small {
|
|
min-width: auto;
|
|
padding: 5px 16px;
|
|
}
|
|
|
|
button.medium, submit.medium {
|
|
min-width: auto;
|
|
padding: 10px 24px;
|
|
}
|
|
|
|
button.large, submit.large {
|
|
min-width: auto;
|
|
padding: 12px 32px;
|
|
}
|
|
|
|
.top_note {
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
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: 17px;
|
|
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: 15px;
|
|
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: 15px;
|
|
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: 15px;
|
|
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: 15px;
|
|
font-weight: 500;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div form span,
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
|
|
font-size: 15px;
|
|
text-decoration: none;
|
|
}
|
|
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: 15px;
|
|
text-decoration: none;
|
|
}
|
|
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;
|
|
}
|
|
|
|
footer#srv_footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: auto;
|
|
margin-top: 0;
|
|
padding: 16px;
|
|
}
|
|
footer#srv_footer .footer_left {
|
|
margin-bottom: 8px;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line:nth-child(1) {
|
|
margin-bottom: 16px;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line:nth-child(2) {
|
|
flex-direction: column;
|
|
}
|
|
footer#srv_footer .footer_left .footer_line:nth-child(2) .footer_item {
|
|
margin-bottom: 8px;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
.divPopUp {
|
|
width: calc(100% - 32px) !important;
|
|
max-width: calc(100% - 32px) !important;
|
|
box-sizing: border-box;
|
|
margin: 0 16px;
|
|
}
|
|
.divPopUp.PopUpNarrow {
|
|
width: calc(100% - 32px) !important;
|
|
max-width: calc(100% - 32px) !important;
|
|
}
|
|
|
|
/* Vse povezano s paketi in placili */
|
|
.dt-buttons {
|
|
display: none;
|
|
}
|
|
|
|
#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: 0 0 32px 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .first_line button.large {
|
|
padding: 12px 24px;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .first_line .button_quick_create {
|
|
margin-left: 24px;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line #searchMySurveys {
|
|
align-self: flex-start;
|
|
width: 100%;
|
|
margin: 0 0 32px 0;
|
|
padding: 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line #searchMySurveys form {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line #searchMySurveys form input[type=text] {
|
|
width: 100%;
|
|
padding: 5px 0 5px 7px;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line .pagination.top {
|
|
max-width: 100%;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .second_line .filters {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .div_sl_new table#surveyList_new td {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .div_sl_new table#surveyList_new td:nth-child(1), #main #moje_ankete_edit #survey_list .div_sl_new table#surveyList_new td:nth-child(4) {
|
|
display: table-cell;
|
|
}
|
|
#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.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;
|
|
}
|
|
|
|
.dashboard_top_settings {
|
|
flex-direction: column;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters {
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
}
|
|
.dashboard_top_settings .dashboard_top_filters .filter_setting {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.dashboard_boxes {
|
|
flex-direction: column;
|
|
}
|
|
.dashboard_boxes .dashboard_box {
|
|
margin: 0 0 32px 0;
|
|
}
|
|
|
|
.locked .add-variable-mobile,
|
|
.spremenljivka_content .add-variable {
|
|
display: none !important;
|
|
}
|
|
|
|
#branching {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
#branching li {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 0 !important;
|
|
padding-left: 0 !important;
|
|
}
|
|
#branching li .pm {
|
|
margin-left: 0 !important;
|
|
}
|
|
#branching li .pb_page {
|
|
font-size: 14px !important;
|
|
}
|
|
#branching .spr_edit {
|
|
display: none !important;
|
|
}
|
|
#branching .content_div_normalmode {
|
|
padding-bottom: 40px;
|
|
}
|
|
#branching .add-variable-mobile {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
visibility: visible;
|
|
margin-left: 16px;
|
|
margin-bottom: -10px;
|
|
font-size: 14px;
|
|
}
|
|
#branching .add-variable-mobile a {
|
|
color: #1E88E5;
|
|
text-decoration: none;
|
|
}
|
|
#branching .add-variable-mobile a:hover {
|
|
color: #0059ab;
|
|
}
|
|
#branching .add-variable-mobile a .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#branching .add-variable-mobile a .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#branching .add-variable-mobile .tip_6 {
|
|
left: 52px;
|
|
}
|
|
#branching .add-variable-mobile .tip_16 {
|
|
left: 52px;
|
|
}
|
|
#branching .add-variable-mobile .tip_19 {
|
|
left: 52px;
|
|
}
|
|
#branching .add-variable-mobile .tip_20 {
|
|
left: 52px;
|
|
}
|
|
#branching .empty_vrivanje {
|
|
padding: 32px 16px !important;
|
|
margin: 16px 0 !important;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_title {
|
|
display: none;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_buttons {
|
|
display: none;
|
|
}
|
|
#branching .empty_vrivanje .mobile_add_question {
|
|
position: relative;
|
|
bottom: auto;
|
|
}
|
|
#branching .comment_container_inline {
|
|
flex-wrap: wrap;
|
|
height: auto;
|
|
}
|
|
#branching .comment_container_inline button {
|
|
margin: 4px 0 4px 8px;
|
|
}
|
|
#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 0 20px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
#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;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner button {
|
|
margin: 0;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.toolbox_holder {
|
|
display: none;
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 25px;
|
|
left: calc(50% - 105px);
|
|
width: 210px;
|
|
}
|
|
.mobile_add_question button {
|
|
display: flex !important;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 210px;
|
|
}
|
|
.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 .vprasanje_edit_holder {
|
|
position: fixed;
|
|
z-index: 99999;
|
|
width: 100vw;
|
|
height: calc(100% - 70px);
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
margin: 0 !important;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
box-shadow: 0px 0px 100px 100px #333;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_edit {
|
|
top: 0;
|
|
margin-bottom: 32px;
|
|
max-height: none;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs {
|
|
position: absolute;
|
|
top: 42px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs a.tab_link {
|
|
height: auto;
|
|
padding: 10px 9px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .tab {
|
|
padding-top: 64px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .tab h2 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_buttons {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
position: relative;
|
|
bottom: 30px;
|
|
padding: 0 15px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #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;
|
|
}
|
|
#main #anketa #globalSetingsList fieldset span.charalimit#anketa_polnoIme_chars,
|
|
#main #anketa #globalSetingsList fieldset span.charalimit#anketa_akronim_chars,
|
|
#main #anketa #globalSetingsList fieldset span.charalimit#anketa_note_chars {
|
|
width: 100%;
|
|
}
|
|
|
|
/* NASTAVITVE in ARHIVI */
|
|
/* 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;
|
|
}
|
|
|
|
div.page_tema .theme_list {
|
|
flex-wrap: wrap;
|
|
}
|
|
div.page_tema .theme_list .theme {
|
|
margin-bottom: 8px;
|
|
}
|
|
div.page_tema .theme_list .options {
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
}
|
|
div.page_tema .theme_list .options .button {
|
|
margin-bottom: 4px;
|
|
}
|
|
div.page_tema div#theme_grid_holder {
|
|
padding: 0;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options {
|
|
justify-content: flex-start;
|
|
}
|
|
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options .button {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.page_theme-editor #theme-preview {
|
|
display: none;
|
|
}
|
|
.page_theme-editor #theme-editor .columns {
|
|
width: 100% !important;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
.lastnosti_wrapper {
|
|
flex-direction: column !important;
|
|
}
|
|
.lastnosti_wrapper .lastnosti_left,
|
|
.lastnosti_wrapper .lastnosti_right {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.page_vabila #vabila .button_holder {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
.page_vabila #vabila .button_holder .copy_survey_url_holder {
|
|
width: 100%;
|
|
}
|
|
.page_vabila #vabila .button_holder .copy_survey_url_holder .input_box {
|
|
max-width: 300px;
|
|
}
|
|
.page_vabila #vabila .button_holder #nice_url_button {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.page_vabila #vabila .button_holder #nice_url_holder {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.page_vabila #vabila .button_holder #nice_url_holder .buttons {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
.page_vabila #vabila .more_block {
|
|
width: 100%;
|
|
}
|
|
|
|
.page_invitations #inv_top_navi {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin-bottom: 32px;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_nav_settings {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_nav_settings .inv_step {
|
|
text-align: right;
|
|
}
|
|
.page_invitations #inv_top_navi .inv_step {
|
|
margin-bottom: 4px;
|
|
}
|
|
.page_invitations .invitations_holder.fullwidth {
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
.page_invitations .invitations_holder.half-half {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations .invitations_holder.half-half .left_holder,
|
|
.page_invitations .invitations_holder.half-half .right_holder {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
.page_invitations .invitations_holder.left-menu {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations .invitations_holder.three-part {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations .invitations_holder.three-part fieldset {
|
|
width: 100% !important;
|
|
min-width: 100% !important;
|
|
}
|
|
.page_invitations .invitations_holder #inv_recipients_profiles_holder,
|
|
.page_invitations .invitations_holder #inv_messages_profiles_holder {
|
|
min-height: auto !important;
|
|
}
|
|
.page_invitations .invitations_holder .setting_line.inv_sample {
|
|
word-break: break-all;
|
|
}
|
|
.page_invitations .invitations_holder #inv_field_container ul li {
|
|
width: 100%;
|
|
}
|
|
.page_invitations .setting_holder.half-half {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations .setting_holder.half-half .setting_item {
|
|
width: 100%;
|
|
margin: 0 0 8px 0 !important;
|
|
}
|
|
.page_invitations #inv_msg_preview .setting_row {
|
|
flex-direction: column;
|
|
}
|
|
.page_invitations #inv_msg_preview .setting_row .setting_item {
|
|
width: 100%;
|
|
margin: 0 0 8px 0 !important;
|
|
}
|
|
.page_invitations .button_holder {
|
|
flex-wrap: wrap;
|
|
}
|
|
.page_invitations .button_holder button {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#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%;
|
|
}
|
|
|
|
/* grafika ko ni podatkov */
|
|
div.no_data_alert img {
|
|
width: 100%;
|
|
}
|
|
div.no_data_alert h2 {
|
|
text-align: center;
|
|
}
|
|
div.no_data_alert div#buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.page_data .data_table_top_holder {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin-bottom: 32px;
|
|
padding: 8px;
|
|
}
|
|
.page_data .data_table_top_holder .dataFullscreen {
|
|
width: 100%;
|
|
margin: 0 0 16px 0;
|
|
border: 0;
|
|
}
|
|
.page_data .data_table_top_holder .dataSettingsBasic {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 0 0 16px 0;
|
|
border: 0;
|
|
}
|
|
.page_data .data_table_top_holder #dataSettingsCheckboxes {
|
|
top: 80px;
|
|
left: 8px;
|
|
}
|
|
.page_data .data_table_top_holder #data_search_filter {
|
|
display: flex;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 0 0 16px 0;
|
|
border: 0;
|
|
}
|
|
.page_data .data_table_top_holder #data_search_filter input {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
.page_data .data_table_top_holder #vnosi_paginacija {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin: 0 0 16px 0;
|
|
right: 0;
|
|
border: 0;
|
|
}
|
|
.page_data .data_table_top_holder #vnosi_paginacija #div_paginacija_vnosov {
|
|
margin: 0 0 16px 0;
|
|
}
|
|
.page_data .data_table_top_holder #vnosi_paginacija #div_paginacija_vprasanj {
|
|
margin: 0;
|
|
}
|
|
.page_data .data_table_top_holder #vnosi_paginacija label {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.page_data .data_table_top_holder #vnosi_paginacija select {
|
|
margin: 0 16px 0 8px;
|
|
}
|
|
.page_data #div_vnosi_data {
|
|
margin-bottom: 32px;
|
|
}
|
|
.page_data #div_vnosi_data #dataTableScroller {
|
|
display: none;
|
|
}
|
|
.page_data #div_vnosi_data #tableContainer {
|
|
overflow-y: hidden;
|
|
}
|
|
.page_data .data_table_bottom_holder {
|
|
flex-direction: column;
|
|
}
|
|
.page_data .data_table_bottom_holder .legend_box {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
body.data_fullscreen #analiza_data {
|
|
top: 68px;
|
|
}
|
|
|
|
.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 .layout_left_item,
|
|
.subpage_merge .layout_left_item,
|
|
.subpage_calculation .layout_left_item,
|
|
.subpage_coding_auto .layout_left_item,
|
|
.subpage_recoding .layout_left_item,
|
|
.subpage_coding .layout_left_item,
|
|
.page_export .layout_left_item {
|
|
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;
|
|
}
|
|
|
|
.subpage_quick_edit #quick_edit_top_line {
|
|
flex-direction: column-reverse;
|
|
}
|
|
.subpage_quick_edit #quick_edit_top_line .quick_edit_icons {
|
|
position: relative;
|
|
margin-top: 16px;
|
|
}
|
|
.subpage_quick_edit #edit_survey_data {
|
|
flex-direction: column;
|
|
}
|
|
.subpage_quick_edit #edit_survey_data .quick_edit_meta_holder {
|
|
width: 100%;
|
|
min-width: 100%;
|
|
max-width: 100%;
|
|
margin: 32px 0 0 0;
|
|
}
|
|
.subpage_quick_edit .quick_edit_container .quick_edit_bottom_line {
|
|
justify-content: center;
|
|
}
|
|
|
|
.analysis_bottom_settings {
|
|
flex-wrap: wrap;
|
|
}
|
|
.analysis_bottom_settings .comment_holder {
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 0 0 16px 0 !important;
|
|
border: 0;
|
|
}
|
|
|
|
.div_analiza_icons,
|
|
.div_analiza_scale {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.analysis_icons_holder {
|
|
display: none;
|
|
}
|
|
|
|
.chart_holder {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.chart_holder .chart_title {
|
|
width: 100%;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
.reports_holder {
|
|
flex-direction: column;
|
|
}
|
|
.reports_holder fieldset {
|
|
width: 100%;
|
|
}
|
|
|
|
.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 .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 */
|