22891 lines
492 KiB
CSS
22891 lines
492 KiB
CSS
@charset "UTF-8";
|
|
/*
|
|
Main scss with includes
|
|
*/
|
|
/*
|
|
Basic scss - variables, layout, colors, font...
|
|
*/
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
.fa,
|
|
.fas,
|
|
.far,
|
|
.fal,
|
|
.fab {
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
display: inline-block;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
text-rendering: auto;
|
|
line-height: 1;
|
|
}
|
|
|
|
.fa-lg {
|
|
font-size: 1.3333333333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -0.0667em;
|
|
}
|
|
|
|
.fa-xs {
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.fa-sm {
|
|
font-size: 0.875em;
|
|
}
|
|
|
|
.fa-1x {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.fa-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-3x {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.fa-4x {
|
|
font-size: 4em;
|
|
}
|
|
|
|
.fa-5x {
|
|
font-size: 5em;
|
|
}
|
|
|
|
.fa-6x {
|
|
font-size: 6em;
|
|
}
|
|
|
|
.fa-7x {
|
|
font-size: 7em;
|
|
}
|
|
|
|
.fa-8x {
|
|
font-size: 8em;
|
|
}
|
|
|
|
.fa-9x {
|
|
font-size: 9em;
|
|
}
|
|
|
|
.fa-10x {
|
|
font-size: 10em;
|
|
}
|
|
|
|
.fa-fw {
|
|
text-align: center;
|
|
width: 1.25em;
|
|
}
|
|
|
|
.fa-ul {
|
|
list-style-type: none;
|
|
margin-left: 2.5em;
|
|
padding-left: 0;
|
|
}
|
|
.fa-ul > li {
|
|
position: relative;
|
|
}
|
|
|
|
.fa-li {
|
|
left: -2em;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 2em;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.fa-border {
|
|
border: solid 0.08em #eee;
|
|
border-radius: 0.1em;
|
|
padding: 0.2em 0.25em 0.15em;
|
|
}
|
|
|
|
.fa-pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.fa-pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.fa.fa-pull-left,
|
|
.fas.fa-pull-left,
|
|
.far.fa-pull-left,
|
|
.fal.fa-pull-left,
|
|
.fab.fa-pull-left {
|
|
margin-right: 0.3em;
|
|
}
|
|
.fa.fa-pull-right,
|
|
.fas.fa-pull-right,
|
|
.far.fa-pull-right,
|
|
.fal.fa-pull-right,
|
|
.fab.fa-pull-right {
|
|
margin-left: 0.3em;
|
|
}
|
|
|
|
.fa-spin {
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.fa-pulse {
|
|
animation: fa-spin 1s infinite steps(8);
|
|
}
|
|
|
|
@keyframes fa-spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
.fa-rotate-90 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.fa-rotate-180 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.fa-rotate-270 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.fa-flip-horizontal {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.fa-flip-vertical {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.fa-flip-horizontal.fa-flip-vertical {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
transform: scale(-1, -1);
|
|
}
|
|
|
|
:root .fa-rotate-90,
|
|
:root .fa-rotate-180,
|
|
:root .fa-rotate-270,
|
|
:root .fa-flip-horizontal,
|
|
:root .fa-flip-vertical {
|
|
filter: none;
|
|
}
|
|
|
|
.fa-stack {
|
|
display: inline-block;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
width: 2em;
|
|
}
|
|
|
|
.fa-stack-1x,
|
|
.fa-stack-2x {
|
|
left: 0;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.fa-stack-1x {
|
|
line-height: inherit;
|
|
}
|
|
|
|
.fa-stack-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-inverse {
|
|
color: #fff;
|
|
}
|
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
readers do not read off random characters that represent icons */
|
|
.fa-500px:before {
|
|
content: "\f26e";
|
|
}
|
|
|
|
.fa-accessible-icon:before {
|
|
content: "\f368";
|
|
}
|
|
|
|
.fa-accusoft:before {
|
|
content: "\f369";
|
|
}
|
|
|
|
.fa-ad:before {
|
|
content: "\f641";
|
|
}
|
|
|
|
.fa-address-book:before {
|
|
content: "\f2b9";
|
|
}
|
|
|
|
.fa-address-card:before {
|
|
content: "\f2bb";
|
|
}
|
|
|
|
.fa-adjust:before {
|
|
content: "\f042";
|
|
}
|
|
|
|
.fa-adn:before {
|
|
content: "\f170";
|
|
}
|
|
|
|
.fa-adversal:before {
|
|
content: "\f36a";
|
|
}
|
|
|
|
.fa-affiliatetheme:before {
|
|
content: "\f36b";
|
|
}
|
|
|
|
.fa-air-freshener:before {
|
|
content: "\f5d0";
|
|
}
|
|
|
|
.fa-algolia:before {
|
|
content: "\f36c";
|
|
}
|
|
|
|
.fa-align-center:before {
|
|
content: "\f037";
|
|
}
|
|
|
|
.fa-align-justify:before {
|
|
content: "\f039";
|
|
}
|
|
|
|
.fa-align-left:before {
|
|
content: "\f036";
|
|
}
|
|
|
|
.fa-align-right:before {
|
|
content: "\f038";
|
|
}
|
|
|
|
.fa-alipay:before {
|
|
content: "\f642";
|
|
}
|
|
|
|
.fa-allergies:before {
|
|
content: "\f461";
|
|
}
|
|
|
|
.fa-amazon:before {
|
|
content: "\f270";
|
|
}
|
|
|
|
.fa-amazon-pay:before {
|
|
content: "\f42c";
|
|
}
|
|
|
|
.fa-ambulance:before {
|
|
content: "\f0f9";
|
|
}
|
|
|
|
.fa-american-sign-language-interpreting:before {
|
|
content: "\f2a3";
|
|
}
|
|
|
|
.fa-amilia:before {
|
|
content: "\f36d";
|
|
}
|
|
|
|
.fa-anchor:before {
|
|
content: "\f13d";
|
|
}
|
|
|
|
.fa-android:before {
|
|
content: "\f17b";
|
|
}
|
|
|
|
.fa-angellist:before {
|
|
content: "\f209";
|
|
}
|
|
|
|
.fa-angle-double-down:before {
|
|
content: "\f103";
|
|
}
|
|
|
|
.fa-angle-double-left:before {
|
|
content: "\f100";
|
|
}
|
|
|
|
.fa-angle-double-right:before {
|
|
content: "\f101";
|
|
}
|
|
|
|
.fa-angle-double-up:before {
|
|
content: "\f102";
|
|
}
|
|
|
|
.fa-angle-down:before {
|
|
content: "\f107";
|
|
}
|
|
|
|
.fa-angle-left:before {
|
|
content: "\f104";
|
|
}
|
|
|
|
.fa-angle-right:before {
|
|
content: "\f105";
|
|
}
|
|
|
|
.fa-angle-up:before {
|
|
content: "\f106";
|
|
}
|
|
|
|
.fa-angry:before {
|
|
content: "\f556";
|
|
}
|
|
|
|
.fa-angrycreative:before {
|
|
content: "\f36e";
|
|
}
|
|
|
|
.fa-angular:before {
|
|
content: "\f420";
|
|
}
|
|
|
|
.fa-ankh:before {
|
|
content: "\f644";
|
|
}
|
|
|
|
.fa-app-store:before {
|
|
content: "\f36f";
|
|
}
|
|
|
|
.fa-app-store-ios:before {
|
|
content: "\f370";
|
|
}
|
|
|
|
.fa-apper:before {
|
|
content: "\f371";
|
|
}
|
|
|
|
.fa-apple:before {
|
|
content: "\f179";
|
|
}
|
|
|
|
.fa-apple-alt:before {
|
|
content: "\f5d1";
|
|
}
|
|
|
|
.fa-apple-pay:before {
|
|
content: "\f415";
|
|
}
|
|
|
|
.fa-archive:before {
|
|
content: "\f187";
|
|
}
|
|
|
|
.fa-archway:before {
|
|
content: "\f557";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-down:before {
|
|
content: "\f358";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-left:before {
|
|
content: "\f359";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-right:before {
|
|
content: "\f35a";
|
|
}
|
|
|
|
.fa-arrow-alt-circle-up:before {
|
|
content: "\f35b";
|
|
}
|
|
|
|
.fa-arrow-circle-down:before {
|
|
content: "\f0ab";
|
|
}
|
|
|
|
.fa-arrow-circle-left:before {
|
|
content: "\f0a8";
|
|
}
|
|
|
|
.fa-arrow-circle-right:before {
|
|
content: "\f0a9";
|
|
}
|
|
|
|
.fa-arrow-circle-up:before {
|
|
content: "\f0aa";
|
|
}
|
|
|
|
.fa-arrow-down:before {
|
|
content: "\f063";
|
|
}
|
|
|
|
.fa-arrow-left:before {
|
|
content: "\f060";
|
|
}
|
|
|
|
.fa-arrow-right:before {
|
|
content: "\f061";
|
|
}
|
|
|
|
.fa-arrow-up:before {
|
|
content: "\f062";
|
|
}
|
|
|
|
.fa-arrows-alt:before {
|
|
content: "\f0b2";
|
|
}
|
|
|
|
.fa-arrows-alt-h:before {
|
|
content: "\f337";
|
|
}
|
|
|
|
.fa-arrows-alt-v:before {
|
|
content: "\f338";
|
|
}
|
|
|
|
.fa-assistive-listening-systems:before {
|
|
content: "\f2a2";
|
|
}
|
|
|
|
.fa-asterisk:before {
|
|
content: "\f069";
|
|
}
|
|
|
|
.fa-asymmetrik:before {
|
|
content: "\f372";
|
|
}
|
|
|
|
.fa-at:before {
|
|
content: "\f1fa";
|
|
}
|
|
|
|
.fa-atlas:before {
|
|
content: "\f558";
|
|
}
|
|
|
|
.fa-atom:before {
|
|
content: "\f5d2";
|
|
}
|
|
|
|
.fa-audible:before {
|
|
content: "\f373";
|
|
}
|
|
|
|
.fa-audio-description:before {
|
|
content: "\f29e";
|
|
}
|
|
|
|
.fa-autoprefixer:before {
|
|
content: "\f41c";
|
|
}
|
|
|
|
.fa-avianex:before {
|
|
content: "\f374";
|
|
}
|
|
|
|
.fa-aviato:before {
|
|
content: "\f421";
|
|
}
|
|
|
|
.fa-award:before {
|
|
content: "\f559";
|
|
}
|
|
|
|
.fa-aws:before {
|
|
content: "\f375";
|
|
}
|
|
|
|
.fa-backspace:before {
|
|
content: "\f55a";
|
|
}
|
|
|
|
.fa-backward:before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.fa-balance-scale:before {
|
|
content: "\f24e";
|
|
}
|
|
|
|
.fa-ban:before {
|
|
content: "\f05e";
|
|
}
|
|
|
|
.fa-band-aid:before {
|
|
content: "\f462";
|
|
}
|
|
|
|
.fa-bandcamp:before {
|
|
content: "\f2d5";
|
|
}
|
|
|
|
.fa-barcode:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.fa-bars:before {
|
|
content: "\f0c9";
|
|
}
|
|
|
|
.fa-baseball-ball:before {
|
|
content: "\f433";
|
|
}
|
|
|
|
.fa-basketball-ball:before {
|
|
content: "\f434";
|
|
}
|
|
|
|
.fa-bath:before {
|
|
content: "\f2cd";
|
|
}
|
|
|
|
.fa-battery-empty:before {
|
|
content: "\f244";
|
|
}
|
|
|
|
.fa-battery-full:before {
|
|
content: "\f240";
|
|
}
|
|
|
|
.fa-battery-half:before {
|
|
content: "\f242";
|
|
}
|
|
|
|
.fa-battery-quarter:before {
|
|
content: "\f243";
|
|
}
|
|
|
|
.fa-battery-three-quarters:before {
|
|
content: "\f241";
|
|
}
|
|
|
|
.fa-bed:before {
|
|
content: "\f236";
|
|
}
|
|
|
|
.fa-beer:before {
|
|
content: "\f0fc";
|
|
}
|
|
|
|
.fa-behance:before {
|
|
content: "\f1b4";
|
|
}
|
|
|
|
.fa-behance-square:before {
|
|
content: "\f1b5";
|
|
}
|
|
|
|
.fa-bell:before {
|
|
content: "\f0f3";
|
|
}
|
|
|
|
.fa-bell-slash:before {
|
|
content: "\f1f6";
|
|
}
|
|
|
|
.fa-bezier-curve:before {
|
|
content: "\f55b";
|
|
}
|
|
|
|
.fa-bible:before {
|
|
content: "\f647";
|
|
}
|
|
|
|
.fa-bicycle:before {
|
|
content: "\f206";
|
|
}
|
|
|
|
.fa-bimobject:before {
|
|
content: "\f378";
|
|
}
|
|
|
|
.fa-binoculars:before {
|
|
content: "\f1e5";
|
|
}
|
|
|
|
.fa-birthday-cake:before {
|
|
content: "\f1fd";
|
|
}
|
|
|
|
.fa-bitbucket:before {
|
|
content: "\f171";
|
|
}
|
|
|
|
.fa-bitcoin:before {
|
|
content: "\f379";
|
|
}
|
|
|
|
.fa-bity:before {
|
|
content: "\f37a";
|
|
}
|
|
|
|
.fa-black-tie:before {
|
|
content: "\f27e";
|
|
}
|
|
|
|
.fa-blackberry:before {
|
|
content: "\f37b";
|
|
}
|
|
|
|
.fa-blender:before {
|
|
content: "\f517";
|
|
}
|
|
|
|
.fa-blind:before {
|
|
content: "\f29d";
|
|
}
|
|
|
|
.fa-blogger:before {
|
|
content: "\f37c";
|
|
}
|
|
|
|
.fa-blogger-b:before {
|
|
content: "\f37d";
|
|
}
|
|
|
|
.fa-bluetooth:before {
|
|
content: "\f293";
|
|
}
|
|
|
|
.fa-bluetooth-b:before {
|
|
content: "\f294";
|
|
}
|
|
|
|
.fa-bold:before {
|
|
content: "\f032";
|
|
}
|
|
|
|
.fa-bolt:before {
|
|
content: "\f0e7";
|
|
}
|
|
|
|
.fa-bomb:before {
|
|
content: "\f1e2";
|
|
}
|
|
|
|
.fa-bone:before {
|
|
content: "\f5d7";
|
|
}
|
|
|
|
.fa-bong:before {
|
|
content: "\f55c";
|
|
}
|
|
|
|
.fa-book:before {
|
|
content: "\f02d";
|
|
}
|
|
|
|
.fa-book-open:before {
|
|
content: "\f518";
|
|
}
|
|
|
|
.fa-book-reader:before {
|
|
content: "\f5da";
|
|
}
|
|
|
|
.fa-bookmark:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.fa-bowling-ball:before {
|
|
content: "\f436";
|
|
}
|
|
|
|
.fa-box:before {
|
|
content: "\f466";
|
|
}
|
|
|
|
.fa-box-open:before {
|
|
content: "\f49e";
|
|
}
|
|
|
|
.fa-boxes:before {
|
|
content: "\f468";
|
|
}
|
|
|
|
.fa-braille:before {
|
|
content: "\f2a1";
|
|
}
|
|
|
|
.fa-brain:before {
|
|
content: "\f5dc";
|
|
}
|
|
|
|
.fa-briefcase:before {
|
|
content: "\f0b1";
|
|
}
|
|
|
|
.fa-briefcase-medical:before {
|
|
content: "\f469";
|
|
}
|
|
|
|
.fa-broadcast-tower:before {
|
|
content: "\f519";
|
|
}
|
|
|
|
.fa-broom:before {
|
|
content: "\f51a";
|
|
}
|
|
|
|
.fa-brush:before {
|
|
content: "\f55d";
|
|
}
|
|
|
|
.fa-btc:before {
|
|
content: "\f15a";
|
|
}
|
|
|
|
.fa-bug:before {
|
|
content: "\f188";
|
|
}
|
|
|
|
.fa-building:before {
|
|
content: "\f1ad";
|
|
}
|
|
|
|
.fa-bullhorn:before {
|
|
content: "\f0a1";
|
|
}
|
|
|
|
.fa-bullseye:before {
|
|
content: "\f140";
|
|
}
|
|
|
|
.fa-burn:before {
|
|
content: "\f46a";
|
|
}
|
|
|
|
.fa-buromobelexperte:before {
|
|
content: "\f37f";
|
|
}
|
|
|
|
.fa-bus:before {
|
|
content: "\f207";
|
|
}
|
|
|
|
.fa-bus-alt:before {
|
|
content: "\f55e";
|
|
}
|
|
|
|
.fa-business-time:before {
|
|
content: "\f64a";
|
|
}
|
|
|
|
.fa-buysellads:before {
|
|
content: "\f20d";
|
|
}
|
|
|
|
.fa-calculator:before {
|
|
content: "\f1ec";
|
|
}
|
|
|
|
.fa-calendar:before {
|
|
content: "\f133";
|
|
}
|
|
|
|
.fa-calendar-alt:before {
|
|
content: "\f073";
|
|
}
|
|
|
|
.fa-calendar-check:before {
|
|
content: "\f274";
|
|
}
|
|
|
|
.fa-calendar-minus:before {
|
|
content: "\f272";
|
|
}
|
|
|
|
.fa-calendar-plus:before {
|
|
content: "\f271";
|
|
}
|
|
|
|
.fa-calendar-times:before {
|
|
content: "\f273";
|
|
}
|
|
|
|
.fa-camera:before {
|
|
content: "\f030";
|
|
}
|
|
|
|
.fa-camera-retro:before {
|
|
content: "\f083";
|
|
}
|
|
|
|
.fa-cannabis:before {
|
|
content: "\f55f";
|
|
}
|
|
|
|
.fa-capsules:before {
|
|
content: "\f46b";
|
|
}
|
|
|
|
.fa-car:before {
|
|
content: "\f1b9";
|
|
}
|
|
|
|
.fa-car-alt:before {
|
|
content: "\f5de";
|
|
}
|
|
|
|
.fa-car-battery:before {
|
|
content: "\f5df";
|
|
}
|
|
|
|
.fa-car-crash:before {
|
|
content: "\f5e1";
|
|
}
|
|
|
|
.fa-car-side:before {
|
|
content: "\f5e4";
|
|
}
|
|
|
|
.fa-caret-down:before {
|
|
content: "\f0d7";
|
|
}
|
|
|
|
.fa-caret-left:before {
|
|
content: "\f0d9";
|
|
}
|
|
|
|
.fa-caret-right:before {
|
|
content: "\f0da";
|
|
}
|
|
|
|
.fa-caret-square-down:before {
|
|
content: "\f150";
|
|
}
|
|
|
|
.fa-caret-square-left:before {
|
|
content: "\f191";
|
|
}
|
|
|
|
.fa-caret-square-right:before {
|
|
content: "\f152";
|
|
}
|
|
|
|
.fa-caret-square-up:before {
|
|
content: "\f151";
|
|
}
|
|
|
|
.fa-caret-up:before {
|
|
content: "\f0d8";
|
|
}
|
|
|
|
.fa-cart-arrow-down:before {
|
|
content: "\f218";
|
|
}
|
|
|
|
.fa-cart-plus:before {
|
|
content: "\f217";
|
|
}
|
|
|
|
.fa-cc-amazon-pay:before {
|
|
content: "\f42d";
|
|
}
|
|
|
|
.fa-cc-amex:before {
|
|
content: "\f1f3";
|
|
}
|
|
|
|
.fa-cc-apple-pay:before {
|
|
content: "\f416";
|
|
}
|
|
|
|
.fa-cc-diners-club:before {
|
|
content: "\f24c";
|
|
}
|
|
|
|
.fa-cc-discover:before {
|
|
content: "\f1f2";
|
|
}
|
|
|
|
.fa-cc-jcb:before {
|
|
content: "\f24b";
|
|
}
|
|
|
|
.fa-cc-mastercard:before {
|
|
content: "\f1f1";
|
|
}
|
|
|
|
.fa-cc-paypal:before {
|
|
content: "\f1f4";
|
|
}
|
|
|
|
.fa-cc-stripe:before {
|
|
content: "\f1f5";
|
|
}
|
|
|
|
.fa-cc-visa:before {
|
|
content: "\f1f0";
|
|
}
|
|
|
|
.fa-centercode:before {
|
|
content: "\f380";
|
|
}
|
|
|
|
.fa-certificate:before {
|
|
content: "\f0a3";
|
|
}
|
|
|
|
.fa-chalkboard:before {
|
|
content: "\f51b";
|
|
}
|
|
|
|
.fa-chalkboard-teacher:before {
|
|
content: "\f51c";
|
|
}
|
|
|
|
.fa-charging-station:before {
|
|
content: "\f5e7";
|
|
}
|
|
|
|
.fa-chart-area:before {
|
|
content: "\f1fe";
|
|
}
|
|
|
|
.fa-chart-bar:before {
|
|
content: "\f080";
|
|
}
|
|
|
|
.fa-chart-line:before {
|
|
content: "\f201";
|
|
}
|
|
|
|
.fa-chart-pie:before {
|
|
content: "\f200";
|
|
}
|
|
|
|
.fa-check:before {
|
|
content: "\f00c";
|
|
}
|
|
|
|
.fa-check-circle:before {
|
|
content: "\f058";
|
|
}
|
|
|
|
.fa-check-double:before {
|
|
content: "\f560";
|
|
}
|
|
|
|
.fa-check-square:before {
|
|
content: "\f14a";
|
|
}
|
|
|
|
.fa-chess:before {
|
|
content: "\f439";
|
|
}
|
|
|
|
.fa-chess-bishop:before {
|
|
content: "\f43a";
|
|
}
|
|
|
|
.fa-chess-board:before {
|
|
content: "\f43c";
|
|
}
|
|
|
|
.fa-chess-king:before {
|
|
content: "\f43f";
|
|
}
|
|
|
|
.fa-chess-knight:before {
|
|
content: "\f441";
|
|
}
|
|
|
|
.fa-chess-pawn:before {
|
|
content: "\f443";
|
|
}
|
|
|
|
.fa-chess-queen:before {
|
|
content: "\f445";
|
|
}
|
|
|
|
.fa-chess-rook:before {
|
|
content: "\f447";
|
|
}
|
|
|
|
.fa-chevron-circle-down:before {
|
|
content: "\f13a";
|
|
}
|
|
|
|
.fa-chevron-circle-left:before {
|
|
content: "\f137";
|
|
}
|
|
|
|
.fa-chevron-circle-right:before {
|
|
content: "\f138";
|
|
}
|
|
|
|
.fa-chevron-circle-up:before {
|
|
content: "\f139";
|
|
}
|
|
|
|
.fa-chevron-down:before {
|
|
content: "\f078";
|
|
}
|
|
|
|
.fa-chevron-left:before {
|
|
content: "\f053";
|
|
}
|
|
|
|
.fa-chevron-right:before {
|
|
content: "\f054";
|
|
}
|
|
|
|
.fa-chevron-up:before {
|
|
content: "\f077";
|
|
}
|
|
|
|
.fa-child:before {
|
|
content: "\f1ae";
|
|
}
|
|
|
|
.fa-chrome:before {
|
|
content: "\f268";
|
|
}
|
|
|
|
.fa-church:before {
|
|
content: "\f51d";
|
|
}
|
|
|
|
.fa-circle:before {
|
|
content: "\f111";
|
|
}
|
|
|
|
.fa-circle-notch:before {
|
|
content: "\f1ce";
|
|
}
|
|
|
|
.fa-city:before {
|
|
content: "\f64f";
|
|
}
|
|
|
|
.fa-clipboard:before {
|
|
content: "\f328";
|
|
}
|
|
|
|
.fa-clipboard-check:before {
|
|
content: "\f46c";
|
|
}
|
|
|
|
.fa-clipboard-list:before {
|
|
content: "\f46d";
|
|
}
|
|
|
|
.fa-clock:before {
|
|
content: "\f017";
|
|
}
|
|
|
|
.fa-clone:before {
|
|
content: "\f24d";
|
|
}
|
|
|
|
.fa-closed-captioning:before {
|
|
content: "\f20a";
|
|
}
|
|
|
|
.fa-cloud:before {
|
|
content: "\f0c2";
|
|
}
|
|
|
|
.fa-cloud-download-alt:before {
|
|
content: "\f381";
|
|
}
|
|
|
|
.fa-cloud-upload-alt:before {
|
|
content: "\f382";
|
|
}
|
|
|
|
.fa-cloudscale:before {
|
|
content: "\f383";
|
|
}
|
|
|
|
.fa-cloudsmith:before {
|
|
content: "\f384";
|
|
}
|
|
|
|
.fa-cloudversify:before {
|
|
content: "\f385";
|
|
}
|
|
|
|
.fa-cocktail:before {
|
|
content: "\f561";
|
|
}
|
|
|
|
.fa-code:before {
|
|
content: "\f121";
|
|
}
|
|
|
|
.fa-code-branch:before {
|
|
content: "\f126";
|
|
}
|
|
|
|
.fa-codepen:before {
|
|
content: "\f1cb";
|
|
}
|
|
|
|
.fa-codiepie:before {
|
|
content: "\f284";
|
|
}
|
|
|
|
.fa-coffee:before {
|
|
content: "\f0f4";
|
|
}
|
|
|
|
.fa-cog:before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.fa-cogs:before {
|
|
content: "\f085";
|
|
}
|
|
|
|
.fa-coins:before {
|
|
content: "\f51e";
|
|
}
|
|
|
|
.fa-columns:before {
|
|
content: "\f0db";
|
|
}
|
|
|
|
.fa-comment:before {
|
|
content: "\f075";
|
|
}
|
|
|
|
.fa-comment-alt:before {
|
|
content: "\f27a";
|
|
}
|
|
|
|
.fa-comment-dollar:before {
|
|
content: "\f651";
|
|
}
|
|
|
|
.fa-comment-dots:before {
|
|
content: "\f4ad";
|
|
}
|
|
|
|
.fa-comment-slash:before {
|
|
content: "\f4b3";
|
|
}
|
|
|
|
.fa-comments:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.fa-comments-dollar:before {
|
|
content: "\f653";
|
|
}
|
|
|
|
.fa-compact-disc:before {
|
|
content: "\f51f";
|
|
}
|
|
|
|
.fa-compass:before {
|
|
content: "\f14e";
|
|
}
|
|
|
|
.fa-compress:before {
|
|
content: "\f066";
|
|
}
|
|
|
|
.fa-concierge-bell:before {
|
|
content: "\f562";
|
|
}
|
|
|
|
.fa-connectdevelop:before {
|
|
content: "\f20e";
|
|
}
|
|
|
|
.fa-contao:before {
|
|
content: "\f26d";
|
|
}
|
|
|
|
.fa-cookie:before {
|
|
content: "\f563";
|
|
}
|
|
|
|
.fa-cookie-bite:before {
|
|
content: "\f564";
|
|
}
|
|
|
|
.fa-copy:before {
|
|
content: "\f0c5";
|
|
}
|
|
|
|
.fa-copyright:before {
|
|
content: "\f1f9";
|
|
}
|
|
|
|
.fa-couch:before {
|
|
content: "\f4b8";
|
|
}
|
|
|
|
.fa-cpanel:before {
|
|
content: "\f388";
|
|
}
|
|
|
|
.fa-creative-commons:before {
|
|
content: "\f25e";
|
|
}
|
|
|
|
.fa-creative-commons-by:before {
|
|
content: "\f4e7";
|
|
}
|
|
|
|
.fa-creative-commons-nc:before {
|
|
content: "\f4e8";
|
|
}
|
|
|
|
.fa-creative-commons-nc-eu:before {
|
|
content: "\f4e9";
|
|
}
|
|
|
|
.fa-creative-commons-nc-jp:before {
|
|
content: "\f4ea";
|
|
}
|
|
|
|
.fa-creative-commons-nd:before {
|
|
content: "\f4eb";
|
|
}
|
|
|
|
.fa-creative-commons-pd:before {
|
|
content: "\f4ec";
|
|
}
|
|
|
|
.fa-creative-commons-pd-alt:before {
|
|
content: "\f4ed";
|
|
}
|
|
|
|
.fa-creative-commons-remix:before {
|
|
content: "\f4ee";
|
|
}
|
|
|
|
.fa-creative-commons-sa:before {
|
|
content: "\f4ef";
|
|
}
|
|
|
|
.fa-creative-commons-sampling:before {
|
|
content: "\f4f0";
|
|
}
|
|
|
|
.fa-creative-commons-sampling-plus:before {
|
|
content: "\f4f1";
|
|
}
|
|
|
|
.fa-creative-commons-share:before {
|
|
content: "\f4f2";
|
|
}
|
|
|
|
.fa-credit-card:before {
|
|
content: "\f09d";
|
|
}
|
|
|
|
.fa-crop:before {
|
|
content: "\f125";
|
|
}
|
|
|
|
.fa-crop-alt:before {
|
|
content: "\f565";
|
|
}
|
|
|
|
.fa-cross:before {
|
|
content: "\f654";
|
|
}
|
|
|
|
.fa-crosshairs:before {
|
|
content: "\f05b";
|
|
}
|
|
|
|
.fa-crow:before {
|
|
content: "\f520";
|
|
}
|
|
|
|
.fa-crown:before {
|
|
content: "\f521";
|
|
}
|
|
|
|
.fa-css3:before {
|
|
content: "\f13c";
|
|
}
|
|
|
|
.fa-css3-alt:before {
|
|
content: "\f38b";
|
|
}
|
|
|
|
.fa-cube:before {
|
|
content: "\f1b2";
|
|
}
|
|
|
|
.fa-cubes:before {
|
|
content: "\f1b3";
|
|
}
|
|
|
|
.fa-cut:before {
|
|
content: "\f0c4";
|
|
}
|
|
|
|
.fa-cuttlefish:before {
|
|
content: "\f38c";
|
|
}
|
|
|
|
.fa-d-and-d:before {
|
|
content: "\f38d";
|
|
}
|
|
|
|
.fa-dashcube:before {
|
|
content: "\f210";
|
|
}
|
|
|
|
.fa-database:before {
|
|
content: "\f1c0";
|
|
}
|
|
|
|
.fa-deaf:before {
|
|
content: "\f2a4";
|
|
}
|
|
|
|
.fa-delicious:before {
|
|
content: "\f1a5";
|
|
}
|
|
|
|
.fa-deploydog:before {
|
|
content: "\f38e";
|
|
}
|
|
|
|
.fa-deskpro:before {
|
|
content: "\f38f";
|
|
}
|
|
|
|
.fa-desktop:before {
|
|
content: "\f108";
|
|
}
|
|
|
|
.fa-deviantart:before {
|
|
content: "\f1bd";
|
|
}
|
|
|
|
.fa-dharmachakra:before {
|
|
content: "\f655";
|
|
}
|
|
|
|
.fa-diagnoses:before {
|
|
content: "\f470";
|
|
}
|
|
|
|
.fa-dice:before {
|
|
content: "\f522";
|
|
}
|
|
|
|
.fa-dice-five:before {
|
|
content: "\f523";
|
|
}
|
|
|
|
.fa-dice-four:before {
|
|
content: "\f524";
|
|
}
|
|
|
|
.fa-dice-one:before {
|
|
content: "\f525";
|
|
}
|
|
|
|
.fa-dice-six:before {
|
|
content: "\f526";
|
|
}
|
|
|
|
.fa-dice-three:before {
|
|
content: "\f527";
|
|
}
|
|
|
|
.fa-dice-two:before {
|
|
content: "\f528";
|
|
}
|
|
|
|
.fa-digg:before {
|
|
content: "\f1a6";
|
|
}
|
|
|
|
.fa-digital-ocean:before {
|
|
content: "\f391";
|
|
}
|
|
|
|
.fa-digital-tachograph:before {
|
|
content: "\f566";
|
|
}
|
|
|
|
.fa-directions:before {
|
|
content: "\f5eb";
|
|
}
|
|
|
|
.fa-discord:before {
|
|
content: "\f392";
|
|
}
|
|
|
|
.fa-discourse:before {
|
|
content: "\f393";
|
|
}
|
|
|
|
.fa-divide:before {
|
|
content: "\f529";
|
|
}
|
|
|
|
.fa-dizzy:before {
|
|
content: "\f567";
|
|
}
|
|
|
|
.fa-dna:before {
|
|
content: "\f471";
|
|
}
|
|
|
|
.fa-dochub:before {
|
|
content: "\f394";
|
|
}
|
|
|
|
.fa-docker:before {
|
|
content: "\f395";
|
|
}
|
|
|
|
.fa-dollar-sign:before {
|
|
content: "\f155";
|
|
}
|
|
|
|
.fa-dolly:before {
|
|
content: "\f472";
|
|
}
|
|
|
|
.fa-dolly-flatbed:before {
|
|
content: "\f474";
|
|
}
|
|
|
|
.fa-donate:before {
|
|
content: "\f4b9";
|
|
}
|
|
|
|
.fa-door-closed:before {
|
|
content: "\f52a";
|
|
}
|
|
|
|
.fa-door-open:before {
|
|
content: "\f52b";
|
|
}
|
|
|
|
.fa-dot-circle:before {
|
|
content: "\f192";
|
|
}
|
|
|
|
.fa-dove:before {
|
|
content: "\f4ba";
|
|
}
|
|
|
|
.fa-download:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.fa-draft2digital:before {
|
|
content: "\f396";
|
|
}
|
|
|
|
.fa-drafting-compass:before {
|
|
content: "\f568";
|
|
}
|
|
|
|
.fa-draw-polygon:before {
|
|
content: "\f5ee";
|
|
}
|
|
|
|
.fa-dribbble:before {
|
|
content: "\f17d";
|
|
}
|
|
|
|
.fa-dribbble-square:before {
|
|
content: "\f397";
|
|
}
|
|
|
|
.fa-dropbox:before {
|
|
content: "\f16b";
|
|
}
|
|
|
|
.fa-drum:before {
|
|
content: "\f569";
|
|
}
|
|
|
|
.fa-drum-steelpan:before {
|
|
content: "\f56a";
|
|
}
|
|
|
|
.fa-drupal:before {
|
|
content: "\f1a9";
|
|
}
|
|
|
|
.fa-dumbbell:before {
|
|
content: "\f44b";
|
|
}
|
|
|
|
.fa-dyalog:before {
|
|
content: "\f399";
|
|
}
|
|
|
|
.fa-earlybirds:before {
|
|
content: "\f39a";
|
|
}
|
|
|
|
.fa-ebay:before {
|
|
content: "\f4f4";
|
|
}
|
|
|
|
.fa-edge:before {
|
|
content: "\f282";
|
|
}
|
|
|
|
.fa-edit:before {
|
|
content: "\f044";
|
|
}
|
|
|
|
.fa-eject:before {
|
|
content: "\f052";
|
|
}
|
|
|
|
.fa-elementor:before {
|
|
content: "\f430";
|
|
}
|
|
|
|
.fa-ellipsis-h:before {
|
|
content: "\f141";
|
|
}
|
|
|
|
.fa-ellipsis-v:before {
|
|
content: "\f142";
|
|
}
|
|
|
|
.fa-ello:before {
|
|
content: "\f5f1";
|
|
}
|
|
|
|
.fa-ember:before {
|
|
content: "\f423";
|
|
}
|
|
|
|
.fa-empire:before {
|
|
content: "\f1d1";
|
|
}
|
|
|
|
.fa-envelope:before {
|
|
content: "\f0e0";
|
|
}
|
|
|
|
.fa-envelope-open:before {
|
|
content: "\f2b6";
|
|
}
|
|
|
|
.fa-envelope-open-text:before {
|
|
content: "\f658";
|
|
}
|
|
|
|
.fa-envelope-square:before {
|
|
content: "\f199";
|
|
}
|
|
|
|
.fa-envira:before {
|
|
content: "\f299";
|
|
}
|
|
|
|
.fa-equals:before {
|
|
content: "\f52c";
|
|
}
|
|
|
|
.fa-eraser:before {
|
|
content: "\f12d";
|
|
}
|
|
|
|
.fa-erlang:before {
|
|
content: "\f39d";
|
|
}
|
|
|
|
.fa-ethereum:before {
|
|
content: "\f42e";
|
|
}
|
|
|
|
.fa-etsy:before {
|
|
content: "\f2d7";
|
|
}
|
|
|
|
.fa-euro-sign:before {
|
|
content: "\f153";
|
|
}
|
|
|
|
.fa-exchange-alt:before {
|
|
content: "\f362";
|
|
}
|
|
|
|
.fa-exclamation:before {
|
|
content: "\f12a";
|
|
}
|
|
|
|
.fa-exclamation-circle:before {
|
|
content: "\f06a";
|
|
}
|
|
|
|
.fa-exclamation-triangle:before {
|
|
content: "\f071";
|
|
}
|
|
|
|
.fa-expand:before {
|
|
content: "\f065";
|
|
}
|
|
|
|
.fa-expand-arrows-alt:before {
|
|
content: "\f31e";
|
|
}
|
|
|
|
.fa-expeditedssl:before {
|
|
content: "\f23e";
|
|
}
|
|
|
|
.fa-external-link-alt:before {
|
|
content: "\f35d";
|
|
}
|
|
|
|
.fa-external-link-square-alt:before {
|
|
content: "\f360";
|
|
}
|
|
|
|
.fa-eye:before {
|
|
content: "\f06e";
|
|
}
|
|
|
|
.fa-eye-dropper:before {
|
|
content: "\f1fb";
|
|
}
|
|
|
|
.fa-eye-slash:before {
|
|
content: "\f070";
|
|
}
|
|
|
|
.fa-facebook:before {
|
|
content: "\f09a";
|
|
}
|
|
|
|
.fa-facebook-f:before {
|
|
content: "\f39e";
|
|
}
|
|
|
|
.fa-facebook-messenger:before {
|
|
content: "\f39f";
|
|
}
|
|
|
|
.fa-facebook-square:before {
|
|
content: "\f082";
|
|
}
|
|
|
|
.fa-fast-backward:before {
|
|
content: "\f049";
|
|
}
|
|
|
|
.fa-fast-forward:before {
|
|
content: "\f050";
|
|
}
|
|
|
|
.fa-fax:before {
|
|
content: "\f1ac";
|
|
}
|
|
|
|
.fa-feather:before {
|
|
content: "\f52d";
|
|
}
|
|
|
|
.fa-feather-alt:before {
|
|
content: "\f56b";
|
|
}
|
|
|
|
.fa-female:before {
|
|
content: "\f182";
|
|
}
|
|
|
|
.fa-fighter-jet:before {
|
|
content: "\f0fb";
|
|
}
|
|
|
|
.fa-file:before {
|
|
content: "\f15b";
|
|
}
|
|
|
|
.fa-file-alt:before {
|
|
content: "\f15c";
|
|
}
|
|
|
|
.fa-file-archive:before {
|
|
content: "\f1c6";
|
|
}
|
|
|
|
.fa-file-audio:before {
|
|
content: "\f1c7";
|
|
}
|
|
|
|
.fa-file-code:before {
|
|
content: "\f1c9";
|
|
}
|
|
|
|
.fa-file-contract:before {
|
|
content: "\f56c";
|
|
}
|
|
|
|
.fa-file-download:before {
|
|
content: "\f56d";
|
|
}
|
|
|
|
.fa-file-excel:before {
|
|
content: "\f1c3";
|
|
}
|
|
|
|
.fa-file-export:before {
|
|
content: "\f56e";
|
|
}
|
|
|
|
.fa-file-image:before {
|
|
content: "\f1c5";
|
|
}
|
|
|
|
.fa-file-import:before {
|
|
content: "\f56f";
|
|
}
|
|
|
|
.fa-file-invoice:before {
|
|
content: "\f570";
|
|
}
|
|
|
|
.fa-file-invoice-dollar:before {
|
|
content: "\f571";
|
|
}
|
|
|
|
.fa-file-medical:before {
|
|
content: "\f477";
|
|
}
|
|
|
|
.fa-file-medical-alt:before {
|
|
content: "\f478";
|
|
}
|
|
|
|
.fa-file-pdf:before {
|
|
content: "\f1c1";
|
|
}
|
|
|
|
.fa-file-powerpoint:before {
|
|
content: "\f1c4";
|
|
}
|
|
|
|
.fa-file-prescription:before {
|
|
content: "\f572";
|
|
}
|
|
|
|
.fa-file-signature:before {
|
|
content: "\f573";
|
|
}
|
|
|
|
.fa-file-upload:before {
|
|
content: "\f574";
|
|
}
|
|
|
|
.fa-file-video:before {
|
|
content: "\f1c8";
|
|
}
|
|
|
|
.fa-file-word:before {
|
|
content: "\f1c2";
|
|
}
|
|
|
|
.fa-fill:before {
|
|
content: "\f575";
|
|
}
|
|
|
|
.fa-fill-drip:before {
|
|
content: "\f576";
|
|
}
|
|
|
|
.fa-film:before {
|
|
content: "\f008";
|
|
}
|
|
|
|
.fa-filter:before {
|
|
content: "\f0b0";
|
|
}
|
|
|
|
.fa-fingerprint:before {
|
|
content: "\f577";
|
|
}
|
|
|
|
.fa-fire:before {
|
|
content: "\f06d";
|
|
}
|
|
|
|
.fa-fire-extinguisher:before {
|
|
content: "\f134";
|
|
}
|
|
|
|
.fa-firefox:before {
|
|
content: "\f269";
|
|
}
|
|
|
|
.fa-first-aid:before {
|
|
content: "\f479";
|
|
}
|
|
|
|
.fa-first-order:before {
|
|
content: "\f2b0";
|
|
}
|
|
|
|
.fa-first-order-alt:before {
|
|
content: "\f50a";
|
|
}
|
|
|
|
.fa-firstdraft:before {
|
|
content: "\f3a1";
|
|
}
|
|
|
|
.fa-fish:before {
|
|
content: "\f578";
|
|
}
|
|
|
|
.fa-flag:before {
|
|
content: "\f024";
|
|
}
|
|
|
|
.fa-flag-checkered:before {
|
|
content: "\f11e";
|
|
}
|
|
|
|
.fa-flask:before {
|
|
content: "\f0c3";
|
|
}
|
|
|
|
.fa-flickr:before {
|
|
content: "\f16e";
|
|
}
|
|
|
|
.fa-flipboard:before {
|
|
content: "\f44d";
|
|
}
|
|
|
|
.fa-flushed:before {
|
|
content: "\f579";
|
|
}
|
|
|
|
.fa-fly:before {
|
|
content: "\f417";
|
|
}
|
|
|
|
.fa-folder:before {
|
|
content: "\f07b";
|
|
}
|
|
|
|
.fa-folder-minus:before {
|
|
content: "\f65d";
|
|
}
|
|
|
|
.fa-folder-open:before {
|
|
content: "\f07c";
|
|
}
|
|
|
|
.fa-folder-plus:before {
|
|
content: "\f65e";
|
|
}
|
|
|
|
.fa-font:before {
|
|
content: "\f031";
|
|
}
|
|
|
|
.fa-font-awesome:before {
|
|
content: "\f2b4";
|
|
}
|
|
|
|
.fa-font-awesome-alt:before {
|
|
content: "\f35c";
|
|
}
|
|
|
|
.fa-font-awesome-flag:before {
|
|
content: "\f425";
|
|
}
|
|
|
|
.fa-font-awesome-logo-full:before {
|
|
content: "\f4e6";
|
|
}
|
|
|
|
.fa-fonticons:before {
|
|
content: "\f280";
|
|
}
|
|
|
|
.fa-fonticons-fi:before {
|
|
content: "\f3a2";
|
|
}
|
|
|
|
.fa-football-ball:before {
|
|
content: "\f44e";
|
|
}
|
|
|
|
.fa-fort-awesome:before {
|
|
content: "\f286";
|
|
}
|
|
|
|
.fa-fort-awesome-alt:before {
|
|
content: "\f3a3";
|
|
}
|
|
|
|
.fa-forumbee:before {
|
|
content: "\f211";
|
|
}
|
|
|
|
.fa-forward:before {
|
|
content: "\f04e";
|
|
}
|
|
|
|
.fa-foursquare:before {
|
|
content: "\f180";
|
|
}
|
|
|
|
.fa-free-code-camp:before {
|
|
content: "\f2c5";
|
|
}
|
|
|
|
.fa-freebsd:before {
|
|
content: "\f3a4";
|
|
}
|
|
|
|
.fa-frog:before {
|
|
content: "\f52e";
|
|
}
|
|
|
|
.fa-frown:before {
|
|
content: "\f119";
|
|
}
|
|
|
|
.fa-frown-open:before {
|
|
content: "\f57a";
|
|
}
|
|
|
|
.fa-fulcrum:before {
|
|
content: "\f50b";
|
|
}
|
|
|
|
.fa-funnel-dollar:before {
|
|
content: "\f662";
|
|
}
|
|
|
|
.fa-futbol:before {
|
|
content: "\f1e3";
|
|
}
|
|
|
|
.fa-galactic-republic:before {
|
|
content: "\f50c";
|
|
}
|
|
|
|
.fa-galactic-senate:before {
|
|
content: "\f50d";
|
|
}
|
|
|
|
.fa-gamepad:before {
|
|
content: "\f11b";
|
|
}
|
|
|
|
.fa-gas-pump:before {
|
|
content: "\f52f";
|
|
}
|
|
|
|
.fa-gavel:before {
|
|
content: "\f0e3";
|
|
}
|
|
|
|
.fa-gem:before {
|
|
content: "\f3a5";
|
|
}
|
|
|
|
.fa-genderless:before {
|
|
content: "\f22d";
|
|
}
|
|
|
|
.fa-get-pocket:before {
|
|
content: "\f265";
|
|
}
|
|
|
|
.fa-gg:before {
|
|
content: "\f260";
|
|
}
|
|
|
|
.fa-gg-circle:before {
|
|
content: "\f261";
|
|
}
|
|
|
|
.fa-gift:before {
|
|
content: "\f06b";
|
|
}
|
|
|
|
.fa-git:before {
|
|
content: "\f1d3";
|
|
}
|
|
|
|
.fa-git-square:before {
|
|
content: "\f1d2";
|
|
}
|
|
|
|
.fa-github:before {
|
|
content: "\f09b";
|
|
}
|
|
|
|
.fa-github-alt:before {
|
|
content: "\f113";
|
|
}
|
|
|
|
.fa-github-square:before {
|
|
content: "\f092";
|
|
}
|
|
|
|
.fa-gitkraken:before {
|
|
content: "\f3a6";
|
|
}
|
|
|
|
.fa-gitlab:before {
|
|
content: "\f296";
|
|
}
|
|
|
|
.fa-gitter:before {
|
|
content: "\f426";
|
|
}
|
|
|
|
.fa-glass-martini:before {
|
|
content: "\f000";
|
|
}
|
|
|
|
.fa-glass-martini-alt:before {
|
|
content: "\f57b";
|
|
}
|
|
|
|
.fa-glasses:before {
|
|
content: "\f530";
|
|
}
|
|
|
|
.fa-glide:before {
|
|
content: "\f2a5";
|
|
}
|
|
|
|
.fa-glide-g:before {
|
|
content: "\f2a6";
|
|
}
|
|
|
|
.fa-globe:before {
|
|
content: "\f0ac";
|
|
}
|
|
|
|
.fa-globe-africa:before {
|
|
content: "\f57c";
|
|
}
|
|
|
|
.fa-globe-americas:before {
|
|
content: "\f57d";
|
|
}
|
|
|
|
.fa-globe-asia:before {
|
|
content: "\f57e";
|
|
}
|
|
|
|
.fa-gofore:before {
|
|
content: "\f3a7";
|
|
}
|
|
|
|
.fa-golf-ball:before {
|
|
content: "\f450";
|
|
}
|
|
|
|
.fa-goodreads:before {
|
|
content: "\f3a8";
|
|
}
|
|
|
|
.fa-goodreads-g:before {
|
|
content: "\f3a9";
|
|
}
|
|
|
|
.fa-google:before {
|
|
content: "\f1a0";
|
|
}
|
|
|
|
.fa-google-drive:before {
|
|
content: "\f3aa";
|
|
}
|
|
|
|
.fa-google-play:before {
|
|
content: "\f3ab";
|
|
}
|
|
|
|
.fa-google-plus:before {
|
|
content: "\f2b3";
|
|
}
|
|
|
|
.fa-google-plus-g:before {
|
|
content: "\f0d5";
|
|
}
|
|
|
|
.fa-google-plus-square:before {
|
|
content: "\f0d4";
|
|
}
|
|
|
|
.fa-google-wallet:before {
|
|
content: "\f1ee";
|
|
}
|
|
|
|
.fa-gopuram:before {
|
|
content: "\f664";
|
|
}
|
|
|
|
.fa-graduation-cap:before {
|
|
content: "\f19d";
|
|
}
|
|
|
|
.fa-gratipay:before {
|
|
content: "\f184";
|
|
}
|
|
|
|
.fa-grav:before {
|
|
content: "\f2d6";
|
|
}
|
|
|
|
.fa-greater-than:before {
|
|
content: "\f531";
|
|
}
|
|
|
|
.fa-greater-than-equal:before {
|
|
content: "\f532";
|
|
}
|
|
|
|
.fa-grimace:before {
|
|
content: "\f57f";
|
|
}
|
|
|
|
.fa-grin:before {
|
|
content: "\f580";
|
|
}
|
|
|
|
.fa-grin-alt:before {
|
|
content: "\f581";
|
|
}
|
|
|
|
.fa-grin-beam:before {
|
|
content: "\f582";
|
|
}
|
|
|
|
.fa-grin-beam-sweat:before {
|
|
content: "\f583";
|
|
}
|
|
|
|
.fa-grin-hearts:before {
|
|
content: "\f584";
|
|
}
|
|
|
|
.fa-grin-squint:before {
|
|
content: "\f585";
|
|
}
|
|
|
|
.fa-grin-squint-tears:before {
|
|
content: "\f586";
|
|
}
|
|
|
|
.fa-grin-stars:before {
|
|
content: "\f587";
|
|
}
|
|
|
|
.fa-grin-tears:before {
|
|
content: "\f588";
|
|
}
|
|
|
|
.fa-grin-tongue:before {
|
|
content: "\f589";
|
|
}
|
|
|
|
.fa-grin-tongue-squint:before {
|
|
content: "\f58a";
|
|
}
|
|
|
|
.fa-grin-tongue-wink:before {
|
|
content: "\f58b";
|
|
}
|
|
|
|
.fa-grin-wink:before {
|
|
content: "\f58c";
|
|
}
|
|
|
|
.fa-grip-horizontal:before {
|
|
content: "\f58d";
|
|
}
|
|
|
|
.fa-grip-vertical:before {
|
|
content: "\f58e";
|
|
}
|
|
|
|
.fa-gripfire:before {
|
|
content: "\f3ac";
|
|
}
|
|
|
|
.fa-grunt:before {
|
|
content: "\f3ad";
|
|
}
|
|
|
|
.fa-gulp:before {
|
|
content: "\f3ae";
|
|
}
|
|
|
|
.fa-h-square:before {
|
|
content: "\f0fd";
|
|
}
|
|
|
|
.fa-hacker-news:before {
|
|
content: "\f1d4";
|
|
}
|
|
|
|
.fa-hacker-news-square:before {
|
|
content: "\f3af";
|
|
}
|
|
|
|
.fa-hackerrank:before {
|
|
content: "\f5f7";
|
|
}
|
|
|
|
.fa-hamsa:before {
|
|
content: "\f665";
|
|
}
|
|
|
|
.fa-hand-holding:before {
|
|
content: "\f4bd";
|
|
}
|
|
|
|
.fa-hand-holding-heart:before {
|
|
content: "\f4be";
|
|
}
|
|
|
|
.fa-hand-holding-usd:before {
|
|
content: "\f4c0";
|
|
}
|
|
|
|
.fa-hand-lizard:before {
|
|
content: "\f258";
|
|
}
|
|
|
|
.fa-hand-paper:before {
|
|
content: "\f256";
|
|
}
|
|
|
|
.fa-hand-peace:before {
|
|
content: "\f25b";
|
|
}
|
|
|
|
.fa-hand-point-down:before {
|
|
content: "\f0a7";
|
|
}
|
|
|
|
.fa-hand-point-left:before {
|
|
content: "\f0a5";
|
|
}
|
|
|
|
.fa-hand-point-right:before {
|
|
content: "\f0a4";
|
|
}
|
|
|
|
.fa-hand-point-up:before {
|
|
content: "\f0a6";
|
|
}
|
|
|
|
.fa-hand-pointer:before {
|
|
content: "\f25a";
|
|
}
|
|
|
|
.fa-hand-rock:before {
|
|
content: "\f255";
|
|
}
|
|
|
|
.fa-hand-scissors:before {
|
|
content: "\f257";
|
|
}
|
|
|
|
.fa-hand-spock:before {
|
|
content: "\f259";
|
|
}
|
|
|
|
.fa-hands:before {
|
|
content: "\f4c2";
|
|
}
|
|
|
|
.fa-hands-helping:before {
|
|
content: "\f4c4";
|
|
}
|
|
|
|
.fa-handshake:before {
|
|
content: "\f2b5";
|
|
}
|
|
|
|
.fa-hashtag:before {
|
|
content: "\f292";
|
|
}
|
|
|
|
.fa-haykal:before {
|
|
content: "\f666";
|
|
}
|
|
|
|
.fa-hdd:before {
|
|
content: "\f0a0";
|
|
}
|
|
|
|
.fa-heading:before {
|
|
content: "\f1dc";
|
|
}
|
|
|
|
.fa-headphones:before {
|
|
content: "\f025";
|
|
}
|
|
|
|
.fa-headphones-alt:before {
|
|
content: "\f58f";
|
|
}
|
|
|
|
.fa-headset:before {
|
|
content: "\f590";
|
|
}
|
|
|
|
.fa-heart:before {
|
|
content: "\f004";
|
|
}
|
|
|
|
.fa-heartbeat:before {
|
|
content: "\f21e";
|
|
}
|
|
|
|
.fa-helicopter:before {
|
|
content: "\f533";
|
|
}
|
|
|
|
.fa-highlighter:before {
|
|
content: "\f591";
|
|
}
|
|
|
|
.fa-hips:before {
|
|
content: "\f452";
|
|
}
|
|
|
|
.fa-hire-a-helper:before {
|
|
content: "\f3b0";
|
|
}
|
|
|
|
.fa-history:before {
|
|
content: "\f1da";
|
|
}
|
|
|
|
.fa-hockey-puck:before {
|
|
content: "\f453";
|
|
}
|
|
|
|
.fa-home:before {
|
|
content: "\f015";
|
|
}
|
|
|
|
.fa-hooli:before {
|
|
content: "\f427";
|
|
}
|
|
|
|
.fa-hornbill:before {
|
|
content: "\f592";
|
|
}
|
|
|
|
.fa-hospital:before {
|
|
content: "\f0f8";
|
|
}
|
|
|
|
.fa-hospital-alt:before {
|
|
content: "\f47d";
|
|
}
|
|
|
|
.fa-hospital-symbol:before {
|
|
content: "\f47e";
|
|
}
|
|
|
|
.fa-hot-tub:before {
|
|
content: "\f593";
|
|
}
|
|
|
|
.fa-hotel:before {
|
|
content: "\f594";
|
|
}
|
|
|
|
.fa-hotjar:before {
|
|
content: "\f3b1";
|
|
}
|
|
|
|
.fa-hourglass:before {
|
|
content: "\f254";
|
|
}
|
|
|
|
.fa-hourglass-end:before {
|
|
content: "\f253";
|
|
}
|
|
|
|
.fa-hourglass-half:before {
|
|
content: "\f252";
|
|
}
|
|
|
|
.fa-hourglass-start:before {
|
|
content: "\f251";
|
|
}
|
|
|
|
.fa-houzz:before {
|
|
content: "\f27c";
|
|
}
|
|
|
|
.fa-html5:before {
|
|
content: "\f13b";
|
|
}
|
|
|
|
.fa-hubspot:before {
|
|
content: "\f3b2";
|
|
}
|
|
|
|
.fa-i-cursor:before {
|
|
content: "\f246";
|
|
}
|
|
|
|
.fa-id-badge:before {
|
|
content: "\f2c1";
|
|
}
|
|
|
|
.fa-id-card:before {
|
|
content: "\f2c2";
|
|
}
|
|
|
|
.fa-id-card-alt:before {
|
|
content: "\f47f";
|
|
}
|
|
|
|
.fa-image:before {
|
|
content: "\f03e";
|
|
}
|
|
|
|
.fa-images:before {
|
|
content: "\f302";
|
|
}
|
|
|
|
.fa-imdb:before {
|
|
content: "\f2d8";
|
|
}
|
|
|
|
.fa-inbox:before {
|
|
content: "\f01c";
|
|
}
|
|
|
|
.fa-indent:before {
|
|
content: "\f03c";
|
|
}
|
|
|
|
.fa-industry:before {
|
|
content: "\f275";
|
|
}
|
|
|
|
.fa-infinity:before {
|
|
content: "\f534";
|
|
}
|
|
|
|
.fa-info:before {
|
|
content: "\f129";
|
|
}
|
|
|
|
.fa-info-circle:before {
|
|
content: "\f05a";
|
|
}
|
|
|
|
.fa-instagram:before {
|
|
content: "\f16d";
|
|
}
|
|
|
|
.fa-internet-explorer:before {
|
|
content: "\f26b";
|
|
}
|
|
|
|
.fa-ioxhost:before {
|
|
content: "\f208";
|
|
}
|
|
|
|
.fa-italic:before {
|
|
content: "\f033";
|
|
}
|
|
|
|
.fa-itunes:before {
|
|
content: "\f3b4";
|
|
}
|
|
|
|
.fa-itunes-note:before {
|
|
content: "\f3b5";
|
|
}
|
|
|
|
.fa-java:before {
|
|
content: "\f4e4";
|
|
}
|
|
|
|
.fa-jedi:before {
|
|
content: "\f669";
|
|
}
|
|
|
|
.fa-jedi-order:before {
|
|
content: "\f50e";
|
|
}
|
|
|
|
.fa-jenkins:before {
|
|
content: "\f3b6";
|
|
}
|
|
|
|
.fa-joget:before {
|
|
content: "\f3b7";
|
|
}
|
|
|
|
.fa-joint:before {
|
|
content: "\f595";
|
|
}
|
|
|
|
.fa-joomla:before {
|
|
content: "\f1aa";
|
|
}
|
|
|
|
.fa-journal-whills:before {
|
|
content: "\f66a";
|
|
}
|
|
|
|
.fa-js:before {
|
|
content: "\f3b8";
|
|
}
|
|
|
|
.fa-js-square:before {
|
|
content: "\f3b9";
|
|
}
|
|
|
|
.fa-jsfiddle:before {
|
|
content: "\f1cc";
|
|
}
|
|
|
|
.fa-kaaba:before {
|
|
content: "\f66b";
|
|
}
|
|
|
|
.fa-kaggle:before {
|
|
content: "\f5fa";
|
|
}
|
|
|
|
.fa-key:before {
|
|
content: "\f084";
|
|
}
|
|
|
|
.fa-keybase:before {
|
|
content: "\f4f5";
|
|
}
|
|
|
|
.fa-keyboard:before {
|
|
content: "\f11c";
|
|
}
|
|
|
|
.fa-keycdn:before {
|
|
content: "\f3ba";
|
|
}
|
|
|
|
.fa-khanda:before {
|
|
content: "\f66d";
|
|
}
|
|
|
|
.fa-kickstarter:before {
|
|
content: "\f3bb";
|
|
}
|
|
|
|
.fa-kickstarter-k:before {
|
|
content: "\f3bc";
|
|
}
|
|
|
|
.fa-kiss:before {
|
|
content: "\f596";
|
|
}
|
|
|
|
.fa-kiss-beam:before {
|
|
content: "\f597";
|
|
}
|
|
|
|
.fa-kiss-wink-heart:before {
|
|
content: "\f598";
|
|
}
|
|
|
|
.fa-kiwi-bird:before {
|
|
content: "\f535";
|
|
}
|
|
|
|
.fa-korvue:before {
|
|
content: "\f42f";
|
|
}
|
|
|
|
.fa-landmark:before {
|
|
content: "\f66f";
|
|
}
|
|
|
|
.fa-language:before {
|
|
content: "\f1ab";
|
|
}
|
|
|
|
.fa-laptop:before {
|
|
content: "\f109";
|
|
}
|
|
|
|
.fa-laptop-code:before {
|
|
content: "\f5fc";
|
|
}
|
|
|
|
.fa-laravel:before {
|
|
content: "\f3bd";
|
|
}
|
|
|
|
.fa-lastfm:before {
|
|
content: "\f202";
|
|
}
|
|
|
|
.fa-lastfm-square:before {
|
|
content: "\f203";
|
|
}
|
|
|
|
.fa-laugh:before {
|
|
content: "\f599";
|
|
}
|
|
|
|
.fa-laugh-beam:before {
|
|
content: "\f59a";
|
|
}
|
|
|
|
.fa-laugh-squint:before {
|
|
content: "\f59b";
|
|
}
|
|
|
|
.fa-laugh-wink:before {
|
|
content: "\f59c";
|
|
}
|
|
|
|
.fa-layer-group:before {
|
|
content: "\f5fd";
|
|
}
|
|
|
|
.fa-leaf:before {
|
|
content: "\f06c";
|
|
}
|
|
|
|
.fa-leanpub:before {
|
|
content: "\f212";
|
|
}
|
|
|
|
.fa-lemon:before {
|
|
content: "\f094";
|
|
}
|
|
|
|
.fa-less:before {
|
|
content: "\f41d";
|
|
}
|
|
|
|
.fa-less-than:before {
|
|
content: "\f536";
|
|
}
|
|
|
|
.fa-less-than-equal:before {
|
|
content: "\f537";
|
|
}
|
|
|
|
.fa-level-down-alt:before {
|
|
content: "\f3be";
|
|
}
|
|
|
|
.fa-level-up-alt:before {
|
|
content: "\f3bf";
|
|
}
|
|
|
|
.fa-life-ring:before {
|
|
content: "\f1cd";
|
|
}
|
|
|
|
.fa-lightbulb:before {
|
|
content: "\f0eb";
|
|
}
|
|
|
|
.fa-line:before {
|
|
content: "\f3c0";
|
|
}
|
|
|
|
.fa-link:before {
|
|
content: "\f0c1";
|
|
}
|
|
|
|
.fa-linkedin:before {
|
|
content: "\f08c";
|
|
}
|
|
|
|
.fa-linkedin-in:before {
|
|
content: "\f0e1";
|
|
}
|
|
|
|
.fa-linode:before {
|
|
content: "\f2b8";
|
|
}
|
|
|
|
.fa-linux:before {
|
|
content: "\f17c";
|
|
}
|
|
|
|
.fa-lira-sign:before {
|
|
content: "\f195";
|
|
}
|
|
|
|
.fa-list:before {
|
|
content: "\f03a";
|
|
}
|
|
|
|
.fa-list-alt:before {
|
|
content: "\f022";
|
|
}
|
|
|
|
.fa-list-ol:before {
|
|
content: "\f0cb";
|
|
}
|
|
|
|
.fa-list-ul:before {
|
|
content: "\f0ca";
|
|
}
|
|
|
|
.fa-location-arrow:before {
|
|
content: "\f124";
|
|
}
|
|
|
|
.fa-lock:before {
|
|
content: "\f023";
|
|
}
|
|
|
|
.fa-lock-open:before {
|
|
content: "\f3c1";
|
|
}
|
|
|
|
.fa-long-arrow-alt-down:before {
|
|
content: "\f309";
|
|
}
|
|
|
|
.fa-long-arrow-alt-left:before {
|
|
content: "\f30a";
|
|
}
|
|
|
|
.fa-long-arrow-alt-right:before {
|
|
content: "\f30b";
|
|
}
|
|
|
|
.fa-long-arrow-alt-up:before {
|
|
content: "\f30c";
|
|
}
|
|
|
|
.fa-low-vision:before {
|
|
content: "\f2a8";
|
|
}
|
|
|
|
.fa-luggage-cart:before {
|
|
content: "\f59d";
|
|
}
|
|
|
|
.fa-lyft:before {
|
|
content: "\f3c3";
|
|
}
|
|
|
|
.fa-magento:before {
|
|
content: "\f3c4";
|
|
}
|
|
|
|
.fa-magic:before {
|
|
content: "\f0d0";
|
|
}
|
|
|
|
.fa-magnet:before {
|
|
content: "\f076";
|
|
}
|
|
|
|
.fa-mail-bulk:before {
|
|
content: "\f674";
|
|
}
|
|
|
|
.fa-mailchimp:before {
|
|
content: "\f59e";
|
|
}
|
|
|
|
.fa-male:before {
|
|
content: "\f183";
|
|
}
|
|
|
|
.fa-mandalorian:before {
|
|
content: "\f50f";
|
|
}
|
|
|
|
.fa-map:before {
|
|
content: "\f279";
|
|
}
|
|
|
|
.fa-map-marked:before {
|
|
content: "\f59f";
|
|
}
|
|
|
|
.fa-map-marked-alt:before {
|
|
content: "\f5a0";
|
|
}
|
|
|
|
.fa-map-marker:before {
|
|
content: "\f041";
|
|
}
|
|
|
|
.fa-map-marker-alt:before {
|
|
content: "\f3c5";
|
|
}
|
|
|
|
.fa-map-pin:before {
|
|
content: "\f276";
|
|
}
|
|
|
|
.fa-map-signs:before {
|
|
content: "\f277";
|
|
}
|
|
|
|
.fa-markdown:before {
|
|
content: "\f60f";
|
|
}
|
|
|
|
.fa-marker:before {
|
|
content: "\f5a1";
|
|
}
|
|
|
|
.fa-mars:before {
|
|
content: "\f222";
|
|
}
|
|
|
|
.fa-mars-double:before {
|
|
content: "\f227";
|
|
}
|
|
|
|
.fa-mars-stroke:before {
|
|
content: "\f229";
|
|
}
|
|
|
|
.fa-mars-stroke-h:before {
|
|
content: "\f22b";
|
|
}
|
|
|
|
.fa-mars-stroke-v:before {
|
|
content: "\f22a";
|
|
}
|
|
|
|
.fa-mastodon:before {
|
|
content: "\f4f6";
|
|
}
|
|
|
|
.fa-maxcdn:before {
|
|
content: "\f136";
|
|
}
|
|
|
|
.fa-medal:before {
|
|
content: "\f5a2";
|
|
}
|
|
|
|
.fa-medapps:before {
|
|
content: "\f3c6";
|
|
}
|
|
|
|
.fa-medium:before {
|
|
content: "\f23a";
|
|
}
|
|
|
|
.fa-medium-m:before {
|
|
content: "\f3c7";
|
|
}
|
|
|
|
.fa-medkit:before {
|
|
content: "\f0fa";
|
|
}
|
|
|
|
.fa-medrt:before {
|
|
content: "\f3c8";
|
|
}
|
|
|
|
.fa-meetup:before {
|
|
content: "\f2e0";
|
|
}
|
|
|
|
.fa-megaport:before {
|
|
content: "\f5a3";
|
|
}
|
|
|
|
.fa-meh:before {
|
|
content: "\f11a";
|
|
}
|
|
|
|
.fa-meh-blank:before {
|
|
content: "\f5a4";
|
|
}
|
|
|
|
.fa-meh-rolling-eyes:before {
|
|
content: "\f5a5";
|
|
}
|
|
|
|
.fa-memory:before {
|
|
content: "\f538";
|
|
}
|
|
|
|
.fa-menorah:before {
|
|
content: "\f676";
|
|
}
|
|
|
|
.fa-mercury:before {
|
|
content: "\f223";
|
|
}
|
|
|
|
.fa-microchip:before {
|
|
content: "\f2db";
|
|
}
|
|
|
|
.fa-microphone:before {
|
|
content: "\f130";
|
|
}
|
|
|
|
.fa-microphone-alt:before {
|
|
content: "\f3c9";
|
|
}
|
|
|
|
.fa-microphone-alt-slash:before {
|
|
content: "\f539";
|
|
}
|
|
|
|
.fa-microphone-slash:before {
|
|
content: "\f131";
|
|
}
|
|
|
|
.fa-microscope:before {
|
|
content: "\f610";
|
|
}
|
|
|
|
.fa-microsoft:before {
|
|
content: "\f3ca";
|
|
}
|
|
|
|
.fa-minus:before {
|
|
content: "\f068";
|
|
}
|
|
|
|
.fa-minus-circle:before {
|
|
content: "\f056";
|
|
}
|
|
|
|
.fa-minus-square:before {
|
|
content: "\f146";
|
|
}
|
|
|
|
.fa-mix:before {
|
|
content: "\f3cb";
|
|
}
|
|
|
|
.fa-mixcloud:before {
|
|
content: "\f289";
|
|
}
|
|
|
|
.fa-mizuni:before {
|
|
content: "\f3cc";
|
|
}
|
|
|
|
.fa-mobile:before {
|
|
content: "\f10b";
|
|
}
|
|
|
|
.fa-mobile-alt:before {
|
|
content: "\f3cd";
|
|
}
|
|
|
|
.fa-modx:before {
|
|
content: "\f285";
|
|
}
|
|
|
|
.fa-monero:before {
|
|
content: "\f3d0";
|
|
}
|
|
|
|
.fa-money-bill:before {
|
|
content: "\f0d6";
|
|
}
|
|
|
|
.fa-money-bill-alt:before {
|
|
content: "\f3d1";
|
|
}
|
|
|
|
.fa-money-bill-wave:before {
|
|
content: "\f53a";
|
|
}
|
|
|
|
.fa-money-bill-wave-alt:before {
|
|
content: "\f53b";
|
|
}
|
|
|
|
.fa-money-check:before {
|
|
content: "\f53c";
|
|
}
|
|
|
|
.fa-money-check-alt:before {
|
|
content: "\f53d";
|
|
}
|
|
|
|
.fa-monument:before {
|
|
content: "\f5a6";
|
|
}
|
|
|
|
.fa-moon:before {
|
|
content: "\f186";
|
|
}
|
|
|
|
.fa-mortar-pestle:before {
|
|
content: "\f5a7";
|
|
}
|
|
|
|
.fa-mosque:before {
|
|
content: "\f678";
|
|
}
|
|
|
|
.fa-motorcycle:before {
|
|
content: "\f21c";
|
|
}
|
|
|
|
.fa-mouse-pointer:before {
|
|
content: "\f245";
|
|
}
|
|
|
|
.fa-music:before {
|
|
content: "\f001";
|
|
}
|
|
|
|
.fa-napster:before {
|
|
content: "\f3d2";
|
|
}
|
|
|
|
.fa-neos:before {
|
|
content: "\f612";
|
|
}
|
|
|
|
.fa-neuter:before {
|
|
content: "\f22c";
|
|
}
|
|
|
|
.fa-newspaper:before {
|
|
content: "\f1ea";
|
|
}
|
|
|
|
.fa-nimblr:before {
|
|
content: "\f5a8";
|
|
}
|
|
|
|
.fa-nintendo-switch:before {
|
|
content: "\f418";
|
|
}
|
|
|
|
.fa-node:before {
|
|
content: "\f419";
|
|
}
|
|
|
|
.fa-node-js:before {
|
|
content: "\f3d3";
|
|
}
|
|
|
|
.fa-not-equal:before {
|
|
content: "\f53e";
|
|
}
|
|
|
|
.fa-notes-medical:before {
|
|
content: "\f481";
|
|
}
|
|
|
|
.fa-npm:before {
|
|
content: "\f3d4";
|
|
}
|
|
|
|
.fa-ns8:before {
|
|
content: "\f3d5";
|
|
}
|
|
|
|
.fa-nutritionix:before {
|
|
content: "\f3d6";
|
|
}
|
|
|
|
.fa-object-group:before {
|
|
content: "\f247";
|
|
}
|
|
|
|
.fa-object-ungroup:before {
|
|
content: "\f248";
|
|
}
|
|
|
|
.fa-odnoklassniki:before {
|
|
content: "\f263";
|
|
}
|
|
|
|
.fa-odnoklassniki-square:before {
|
|
content: "\f264";
|
|
}
|
|
|
|
.fa-oil-can:before {
|
|
content: "\f613";
|
|
}
|
|
|
|
.fa-old-republic:before {
|
|
content: "\f510";
|
|
}
|
|
|
|
.fa-om:before {
|
|
content: "\f679";
|
|
}
|
|
|
|
.fa-opencart:before {
|
|
content: "\f23d";
|
|
}
|
|
|
|
.fa-openid:before {
|
|
content: "\f19b";
|
|
}
|
|
|
|
.fa-opera:before {
|
|
content: "\f26a";
|
|
}
|
|
|
|
.fa-optin-monster:before {
|
|
content: "\f23c";
|
|
}
|
|
|
|
.fa-osi:before {
|
|
content: "\f41a";
|
|
}
|
|
|
|
.fa-outdent:before {
|
|
content: "\f03b";
|
|
}
|
|
|
|
.fa-page4:before {
|
|
content: "\f3d7";
|
|
}
|
|
|
|
.fa-pagelines:before {
|
|
content: "\f18c";
|
|
}
|
|
|
|
.fa-paint-brush:before {
|
|
content: "\f1fc";
|
|
}
|
|
|
|
.fa-paint-roller:before {
|
|
content: "\f5aa";
|
|
}
|
|
|
|
.fa-palette:before {
|
|
content: "\f53f";
|
|
}
|
|
|
|
.fa-palfed:before {
|
|
content: "\f3d8";
|
|
}
|
|
|
|
.fa-pallet:before {
|
|
content: "\f482";
|
|
}
|
|
|
|
.fa-paper-plane:before {
|
|
content: "\f1d8";
|
|
}
|
|
|
|
.fa-paperclip:before {
|
|
content: "\f0c6";
|
|
}
|
|
|
|
.fa-parachute-box:before {
|
|
content: "\f4cd";
|
|
}
|
|
|
|
.fa-paragraph:before {
|
|
content: "\f1dd";
|
|
}
|
|
|
|
.fa-parking:before {
|
|
content: "\f540";
|
|
}
|
|
|
|
.fa-passport:before {
|
|
content: "\f5ab";
|
|
}
|
|
|
|
.fa-pastafarianism:before {
|
|
content: "\f67b";
|
|
}
|
|
|
|
.fa-paste:before {
|
|
content: "\f0ea";
|
|
}
|
|
|
|
.fa-patreon:before {
|
|
content: "\f3d9";
|
|
}
|
|
|
|
.fa-pause:before {
|
|
content: "\f04c";
|
|
}
|
|
|
|
.fa-pause-circle:before {
|
|
content: "\f28b";
|
|
}
|
|
|
|
.fa-paw:before {
|
|
content: "\f1b0";
|
|
}
|
|
|
|
.fa-paypal:before {
|
|
content: "\f1ed";
|
|
}
|
|
|
|
.fa-peace:before {
|
|
content: "\f67c";
|
|
}
|
|
|
|
.fa-pen:before {
|
|
content: "\f304";
|
|
}
|
|
|
|
.fa-pen-alt:before {
|
|
content: "\f305";
|
|
}
|
|
|
|
.fa-pen-fancy:before {
|
|
content: "\f5ac";
|
|
}
|
|
|
|
.fa-pen-nib:before {
|
|
content: "\f5ad";
|
|
}
|
|
|
|
.fa-pen-square:before {
|
|
content: "\f14b";
|
|
}
|
|
|
|
.fa-pencil-alt:before {
|
|
content: "\f303";
|
|
}
|
|
|
|
.fa-pencil-ruler:before {
|
|
content: "\f5ae";
|
|
}
|
|
|
|
.fa-people-carry:before {
|
|
content: "\f4ce";
|
|
}
|
|
|
|
.fa-percent:before {
|
|
content: "\f295";
|
|
}
|
|
|
|
.fa-percentage:before {
|
|
content: "\f541";
|
|
}
|
|
|
|
.fa-periscope:before {
|
|
content: "\f3da";
|
|
}
|
|
|
|
.fa-phabricator:before {
|
|
content: "\f3db";
|
|
}
|
|
|
|
.fa-phoenix-framework:before {
|
|
content: "\f3dc";
|
|
}
|
|
|
|
.fa-phoenix-squadron:before {
|
|
content: "\f511";
|
|
}
|
|
|
|
.fa-phone:before {
|
|
content: "\f095";
|
|
}
|
|
|
|
.fa-phone-slash:before {
|
|
content: "\f3dd";
|
|
}
|
|
|
|
.fa-phone-square:before {
|
|
content: "\f098";
|
|
}
|
|
|
|
.fa-phone-volume:before {
|
|
content: "\f2a0";
|
|
}
|
|
|
|
.fa-php:before {
|
|
content: "\f457";
|
|
}
|
|
|
|
.fa-pied-piper:before {
|
|
content: "\f2ae";
|
|
}
|
|
|
|
.fa-pied-piper-alt:before {
|
|
content: "\f1a8";
|
|
}
|
|
|
|
.fa-pied-piper-hat:before {
|
|
content: "\f4e5";
|
|
}
|
|
|
|
.fa-pied-piper-pp:before {
|
|
content: "\f1a7";
|
|
}
|
|
|
|
.fa-piggy-bank:before {
|
|
content: "\f4d3";
|
|
}
|
|
|
|
.fa-pills:before {
|
|
content: "\f484";
|
|
}
|
|
|
|
.fa-pinterest:before {
|
|
content: "\f0d2";
|
|
}
|
|
|
|
.fa-pinterest-p:before {
|
|
content: "\f231";
|
|
}
|
|
|
|
.fa-pinterest-square:before {
|
|
content: "\f0d3";
|
|
}
|
|
|
|
.fa-place-of-worship:before {
|
|
content: "\f67f";
|
|
}
|
|
|
|
.fa-plane:before {
|
|
content: "\f072";
|
|
}
|
|
|
|
.fa-plane-arrival:before {
|
|
content: "\f5af";
|
|
}
|
|
|
|
.fa-plane-departure:before {
|
|
content: "\f5b0";
|
|
}
|
|
|
|
.fa-play:before {
|
|
content: "\f04b";
|
|
}
|
|
|
|
.fa-play-circle:before {
|
|
content: "\f144";
|
|
}
|
|
|
|
.fa-playstation:before {
|
|
content: "\f3df";
|
|
}
|
|
|
|
.fa-plug:before {
|
|
content: "\f1e6";
|
|
}
|
|
|
|
.fa-plus:before {
|
|
content: "\f067";
|
|
}
|
|
|
|
.fa-plus-circle:before {
|
|
content: "\f055";
|
|
}
|
|
|
|
.fa-plus-square:before {
|
|
content: "\f0fe";
|
|
}
|
|
|
|
.fa-podcast:before {
|
|
content: "\f2ce";
|
|
}
|
|
|
|
.fa-poll:before {
|
|
content: "\f681";
|
|
}
|
|
|
|
.fa-poll-h:before {
|
|
content: "\f682";
|
|
}
|
|
|
|
.fa-poo:before {
|
|
content: "\f2fe";
|
|
}
|
|
|
|
.fa-poop:before {
|
|
content: "\f619";
|
|
}
|
|
|
|
.fa-portrait:before {
|
|
content: "\f3e0";
|
|
}
|
|
|
|
.fa-pound-sign:before {
|
|
content: "\f154";
|
|
}
|
|
|
|
.fa-power-off:before {
|
|
content: "\f011";
|
|
}
|
|
|
|
.fa-pray:before {
|
|
content: "\f683";
|
|
}
|
|
|
|
.fa-praying-hands:before {
|
|
content: "\f684";
|
|
}
|
|
|
|
.fa-prescription:before {
|
|
content: "\f5b1";
|
|
}
|
|
|
|
.fa-prescription-bottle:before {
|
|
content: "\f485";
|
|
}
|
|
|
|
.fa-prescription-bottle-alt:before {
|
|
content: "\f486";
|
|
}
|
|
|
|
.fa-print:before {
|
|
content: "\f02f";
|
|
}
|
|
|
|
.fa-procedures:before {
|
|
content: "\f487";
|
|
}
|
|
|
|
.fa-product-hunt:before {
|
|
content: "\f288";
|
|
}
|
|
|
|
.fa-project-diagram:before {
|
|
content: "\f542";
|
|
}
|
|
|
|
.fa-pushed:before {
|
|
content: "\f3e1";
|
|
}
|
|
|
|
.fa-puzzle-piece:before {
|
|
content: "\f12e";
|
|
}
|
|
|
|
.fa-python:before {
|
|
content: "\f3e2";
|
|
}
|
|
|
|
.fa-qq:before {
|
|
content: "\f1d6";
|
|
}
|
|
|
|
.fa-qrcode:before {
|
|
content: "\f029";
|
|
}
|
|
|
|
.fa-question:before {
|
|
content: "\f128";
|
|
}
|
|
|
|
.fa-question-circle:before {
|
|
content: "\f059";
|
|
}
|
|
|
|
.fa-quidditch:before {
|
|
content: "\f458";
|
|
}
|
|
|
|
.fa-quinscape:before {
|
|
content: "\f459";
|
|
}
|
|
|
|
.fa-quora:before {
|
|
content: "\f2c4";
|
|
}
|
|
|
|
.fa-quote-left:before {
|
|
content: "\f10d";
|
|
}
|
|
|
|
.fa-quote-right:before {
|
|
content: "\f10e";
|
|
}
|
|
|
|
.fa-quran:before {
|
|
content: "\f687";
|
|
}
|
|
|
|
.fa-r-project:before {
|
|
content: "\f4f7";
|
|
}
|
|
|
|
.fa-random:before {
|
|
content: "\f074";
|
|
}
|
|
|
|
.fa-ravelry:before {
|
|
content: "\f2d9";
|
|
}
|
|
|
|
.fa-react:before {
|
|
content: "\f41b";
|
|
}
|
|
|
|
.fa-readme:before {
|
|
content: "\f4d5";
|
|
}
|
|
|
|
.fa-rebel:before {
|
|
content: "\f1d0";
|
|
}
|
|
|
|
.fa-receipt:before {
|
|
content: "\f543";
|
|
}
|
|
|
|
.fa-recycle:before {
|
|
content: "\f1b8";
|
|
}
|
|
|
|
.fa-red-river:before {
|
|
content: "\f3e3";
|
|
}
|
|
|
|
.fa-reddit:before {
|
|
content: "\f1a1";
|
|
}
|
|
|
|
.fa-reddit-alien:before {
|
|
content: "\f281";
|
|
}
|
|
|
|
.fa-reddit-square:before {
|
|
content: "\f1a2";
|
|
}
|
|
|
|
.fa-redo:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.fa-redo-alt:before {
|
|
content: "\f2f9";
|
|
}
|
|
|
|
.fa-registered:before {
|
|
content: "\f25d";
|
|
}
|
|
|
|
.fa-rendact:before {
|
|
content: "\f3e4";
|
|
}
|
|
|
|
.fa-renren:before {
|
|
content: "\f18b";
|
|
}
|
|
|
|
.fa-reply:before {
|
|
content: "\f3e5";
|
|
}
|
|
|
|
.fa-reply-all:before {
|
|
content: "\f122";
|
|
}
|
|
|
|
.fa-replyd:before {
|
|
content: "\f3e6";
|
|
}
|
|
|
|
.fa-researchgate:before {
|
|
content: "\f4f8";
|
|
}
|
|
|
|
.fa-resolving:before {
|
|
content: "\f3e7";
|
|
}
|
|
|
|
.fa-retweet:before {
|
|
content: "\f079";
|
|
}
|
|
|
|
.fa-rev:before {
|
|
content: "\f5b2";
|
|
}
|
|
|
|
.fa-ribbon:before {
|
|
content: "\f4d6";
|
|
}
|
|
|
|
.fa-road:before {
|
|
content: "\f018";
|
|
}
|
|
|
|
.fa-robot:before {
|
|
content: "\f544";
|
|
}
|
|
|
|
.fa-rocket:before {
|
|
content: "\f135";
|
|
}
|
|
|
|
.fa-rocketchat:before {
|
|
content: "\f3e8";
|
|
}
|
|
|
|
.fa-rockrms:before {
|
|
content: "\f3e9";
|
|
}
|
|
|
|
.fa-route:before {
|
|
content: "\f4d7";
|
|
}
|
|
|
|
.fa-rss:before {
|
|
content: "\f09e";
|
|
}
|
|
|
|
.fa-rss-square:before {
|
|
content: "\f143";
|
|
}
|
|
|
|
.fa-ruble-sign:before {
|
|
content: "\f158";
|
|
}
|
|
|
|
.fa-ruler:before {
|
|
content: "\f545";
|
|
}
|
|
|
|
.fa-ruler-combined:before {
|
|
content: "\f546";
|
|
}
|
|
|
|
.fa-ruler-horizontal:before {
|
|
content: "\f547";
|
|
}
|
|
|
|
.fa-ruler-vertical:before {
|
|
content: "\f548";
|
|
}
|
|
|
|
.fa-rupee-sign:before {
|
|
content: "\f156";
|
|
}
|
|
|
|
.fa-sad-cry:before {
|
|
content: "\f5b3";
|
|
}
|
|
|
|
.fa-sad-tear:before {
|
|
content: "\f5b4";
|
|
}
|
|
|
|
.fa-safari:before {
|
|
content: "\f267";
|
|
}
|
|
|
|
.fa-sass:before {
|
|
content: "\f41e";
|
|
}
|
|
|
|
.fa-save:before {
|
|
content: "\f0c7";
|
|
}
|
|
|
|
.fa-schlix:before {
|
|
content: "\f3ea";
|
|
}
|
|
|
|
.fa-school:before {
|
|
content: "\f549";
|
|
}
|
|
|
|
.fa-screwdriver:before {
|
|
content: "\f54a";
|
|
}
|
|
|
|
.fa-scribd:before {
|
|
content: "\f28a";
|
|
}
|
|
|
|
.fa-search:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.fa-search-dollar:before {
|
|
content: "\f688";
|
|
}
|
|
|
|
.fa-search-location:before {
|
|
content: "\f689";
|
|
}
|
|
|
|
.fa-search-minus:before {
|
|
content: "\f010";
|
|
}
|
|
|
|
.fa-search-plus:before {
|
|
content: "\f00e";
|
|
}
|
|
|
|
.fa-searchengin:before {
|
|
content: "\f3eb";
|
|
}
|
|
|
|
.fa-seedling:before {
|
|
content: "\f4d8";
|
|
}
|
|
|
|
.fa-sellcast:before {
|
|
content: "\f2da";
|
|
}
|
|
|
|
.fa-sellsy:before {
|
|
content: "\f213";
|
|
}
|
|
|
|
.fa-server:before {
|
|
content: "\f233";
|
|
}
|
|
|
|
.fa-servicestack:before {
|
|
content: "\f3ec";
|
|
}
|
|
|
|
.fa-shapes:before {
|
|
content: "\f61f";
|
|
}
|
|
|
|
.fa-share:before {
|
|
content: "\f064";
|
|
}
|
|
|
|
.fa-share-alt:before {
|
|
content: "\f1e0";
|
|
}
|
|
|
|
.fa-share-alt-square:before {
|
|
content: "\f1e1";
|
|
}
|
|
|
|
.fa-share-square:before {
|
|
content: "\f14d";
|
|
}
|
|
|
|
.fa-shekel-sign:before {
|
|
content: "\f20b";
|
|
}
|
|
|
|
.fa-shield-alt:before {
|
|
content: "\f3ed";
|
|
}
|
|
|
|
.fa-ship:before {
|
|
content: "\f21a";
|
|
}
|
|
|
|
.fa-shipping-fast:before {
|
|
content: "\f48b";
|
|
}
|
|
|
|
.fa-shirtsinbulk:before {
|
|
content: "\f214";
|
|
}
|
|
|
|
.fa-shoe-prints:before {
|
|
content: "\f54b";
|
|
}
|
|
|
|
.fa-shopping-bag:before {
|
|
content: "\f290";
|
|
}
|
|
|
|
.fa-shopping-basket:before {
|
|
content: "\f291";
|
|
}
|
|
|
|
.fa-shopping-cart:before {
|
|
content: "\f07a";
|
|
}
|
|
|
|
.fa-shopware:before {
|
|
content: "\f5b5";
|
|
}
|
|
|
|
.fa-shower:before {
|
|
content: "\f2cc";
|
|
}
|
|
|
|
.fa-shuttle-van:before {
|
|
content: "\f5b6";
|
|
}
|
|
|
|
.fa-sign:before {
|
|
content: "\f4d9";
|
|
}
|
|
|
|
.fa-sign-in-alt:before {
|
|
content: "\f2f6";
|
|
}
|
|
|
|
.fa-sign-language:before {
|
|
content: "\f2a7";
|
|
}
|
|
|
|
.fa-sign-out-alt:before {
|
|
content: "\f2f5";
|
|
}
|
|
|
|
.fa-signal:before {
|
|
content: "\f012";
|
|
}
|
|
|
|
.fa-signature:before {
|
|
content: "\f5b7";
|
|
}
|
|
|
|
.fa-simplybuilt:before {
|
|
content: "\f215";
|
|
}
|
|
|
|
.fa-sistrix:before {
|
|
content: "\f3ee";
|
|
}
|
|
|
|
.fa-sitemap:before {
|
|
content: "\f0e8";
|
|
}
|
|
|
|
.fa-sith:before {
|
|
content: "\f512";
|
|
}
|
|
|
|
.fa-skull:before {
|
|
content: "\f54c";
|
|
}
|
|
|
|
.fa-skyatlas:before {
|
|
content: "\f216";
|
|
}
|
|
|
|
.fa-skype:before {
|
|
content: "\f17e";
|
|
}
|
|
|
|
.fa-slack:before {
|
|
content: "\f198";
|
|
}
|
|
|
|
.fa-slack-hash:before {
|
|
content: "\f3ef";
|
|
}
|
|
|
|
.fa-sliders-h:before {
|
|
content: "\f1de";
|
|
}
|
|
|
|
.fa-slideshare:before {
|
|
content: "\f1e7";
|
|
}
|
|
|
|
.fa-smile:before {
|
|
content: "\f118";
|
|
}
|
|
|
|
.fa-smile-beam:before {
|
|
content: "\f5b8";
|
|
}
|
|
|
|
.fa-smile-wink:before {
|
|
content: "\f4da";
|
|
}
|
|
|
|
.fa-smoking:before {
|
|
content: "\f48d";
|
|
}
|
|
|
|
.fa-smoking-ban:before {
|
|
content: "\f54d";
|
|
}
|
|
|
|
.fa-snapchat:before {
|
|
content: "\f2ab";
|
|
}
|
|
|
|
.fa-snapchat-ghost:before {
|
|
content: "\f2ac";
|
|
}
|
|
|
|
.fa-snapchat-square:before {
|
|
content: "\f2ad";
|
|
}
|
|
|
|
.fa-snowflake:before {
|
|
content: "\f2dc";
|
|
}
|
|
|
|
.fa-socks:before {
|
|
content: "\f696";
|
|
}
|
|
|
|
.fa-solar-panel:before {
|
|
content: "\f5ba";
|
|
}
|
|
|
|
.fa-sort:before {
|
|
content: "\f0dc";
|
|
}
|
|
|
|
.fa-sort-alpha-down:before {
|
|
content: "\f15d";
|
|
}
|
|
|
|
.fa-sort-alpha-up:before {
|
|
content: "\f15e";
|
|
}
|
|
|
|
.fa-sort-amount-down:before {
|
|
content: "\f160";
|
|
}
|
|
|
|
.fa-sort-amount-up:before {
|
|
content: "\f161";
|
|
}
|
|
|
|
.fa-sort-down:before {
|
|
content: "\f0dd";
|
|
}
|
|
|
|
.fa-sort-numeric-down:before {
|
|
content: "\f162";
|
|
}
|
|
|
|
.fa-sort-numeric-up:before {
|
|
content: "\f163";
|
|
}
|
|
|
|
.fa-sort-up:before {
|
|
content: "\f0de";
|
|
}
|
|
|
|
.fa-soundcloud:before {
|
|
content: "\f1be";
|
|
}
|
|
|
|
.fa-spa:before {
|
|
content: "\f5bb";
|
|
}
|
|
|
|
.fa-space-shuttle:before {
|
|
content: "\f197";
|
|
}
|
|
|
|
.fa-speakap:before {
|
|
content: "\f3f3";
|
|
}
|
|
|
|
.fa-spinner:before {
|
|
content: "\f110";
|
|
}
|
|
|
|
.fa-splotch:before {
|
|
content: "\f5bc";
|
|
}
|
|
|
|
.fa-spotify:before {
|
|
content: "\f1bc";
|
|
}
|
|
|
|
.fa-spray-can:before {
|
|
content: "\f5bd";
|
|
}
|
|
|
|
.fa-square:before {
|
|
content: "\f0c8";
|
|
}
|
|
|
|
.fa-square-full:before {
|
|
content: "\f45c";
|
|
}
|
|
|
|
.fa-square-root-alt:before {
|
|
content: "\f698";
|
|
}
|
|
|
|
.fa-squarespace:before {
|
|
content: "\f5be";
|
|
}
|
|
|
|
.fa-stack-exchange:before {
|
|
content: "\f18d";
|
|
}
|
|
|
|
.fa-stack-overflow:before {
|
|
content: "\f16c";
|
|
}
|
|
|
|
.fa-stamp:before {
|
|
content: "\f5bf";
|
|
}
|
|
|
|
.fa-star:before {
|
|
content: "\f005";
|
|
}
|
|
|
|
.fa-star-and-crescent:before {
|
|
content: "\f699";
|
|
}
|
|
|
|
.fa-star-half:before {
|
|
content: "\f089";
|
|
}
|
|
|
|
.fa-star-half-alt:before {
|
|
content: "\f5c0";
|
|
}
|
|
|
|
.fa-star-of-david:before {
|
|
content: "\f69a";
|
|
}
|
|
|
|
.fa-star-of-life:before {
|
|
content: "\f621";
|
|
}
|
|
|
|
.fa-staylinked:before {
|
|
content: "\f3f5";
|
|
}
|
|
|
|
.fa-steam:before {
|
|
content: "\f1b6";
|
|
}
|
|
|
|
.fa-steam-square:before {
|
|
content: "\f1b7";
|
|
}
|
|
|
|
.fa-steam-symbol:before {
|
|
content: "\f3f6";
|
|
}
|
|
|
|
.fa-step-backward:before {
|
|
content: "\f048";
|
|
}
|
|
|
|
.fa-step-forward:before {
|
|
content: "\f051";
|
|
}
|
|
|
|
.fa-stethoscope:before {
|
|
content: "\f0f1";
|
|
}
|
|
|
|
.fa-sticker-mule:before {
|
|
content: "\f3f7";
|
|
}
|
|
|
|
.fa-sticky-note:before {
|
|
content: "\f249";
|
|
}
|
|
|
|
.fa-stop:before {
|
|
content: "\f04d";
|
|
}
|
|
|
|
.fa-stop-circle:before {
|
|
content: "\f28d";
|
|
}
|
|
|
|
.fa-stopwatch:before {
|
|
content: "\f2f2";
|
|
}
|
|
|
|
.fa-store:before {
|
|
content: "\f54e";
|
|
}
|
|
|
|
.fa-store-alt:before {
|
|
content: "\f54f";
|
|
}
|
|
|
|
.fa-strava:before {
|
|
content: "\f428";
|
|
}
|
|
|
|
.fa-stream:before {
|
|
content: "\f550";
|
|
}
|
|
|
|
.fa-street-view:before {
|
|
content: "\f21d";
|
|
}
|
|
|
|
.fa-strikethrough:before {
|
|
content: "\f0cc";
|
|
}
|
|
|
|
.fa-stripe:before {
|
|
content: "\f429";
|
|
}
|
|
|
|
.fa-stripe-s:before {
|
|
content: "\f42a";
|
|
}
|
|
|
|
.fa-stroopwafel:before {
|
|
content: "\f551";
|
|
}
|
|
|
|
.fa-studiovinari:before {
|
|
content: "\f3f8";
|
|
}
|
|
|
|
.fa-stumbleupon:before {
|
|
content: "\f1a4";
|
|
}
|
|
|
|
.fa-stumbleupon-circle:before {
|
|
content: "\f1a3";
|
|
}
|
|
|
|
.fa-subscript:before {
|
|
content: "\f12c";
|
|
}
|
|
|
|
.fa-subway:before {
|
|
content: "\f239";
|
|
}
|
|
|
|
.fa-suitcase:before {
|
|
content: "\f0f2";
|
|
}
|
|
|
|
.fa-suitcase-rolling:before {
|
|
content: "\f5c1";
|
|
}
|
|
|
|
.fa-sun:before {
|
|
content: "\f185";
|
|
}
|
|
|
|
.fa-superpowers:before {
|
|
content: "\f2dd";
|
|
}
|
|
|
|
.fa-superscript:before {
|
|
content: "\f12b";
|
|
}
|
|
|
|
.fa-supple:before {
|
|
content: "\f3f9";
|
|
}
|
|
|
|
.fa-surprise:before {
|
|
content: "\f5c2";
|
|
}
|
|
|
|
.fa-swatchbook:before {
|
|
content: "\f5c3";
|
|
}
|
|
|
|
.fa-swimmer:before {
|
|
content: "\f5c4";
|
|
}
|
|
|
|
.fa-swimming-pool:before {
|
|
content: "\f5c5";
|
|
}
|
|
|
|
.fa-synagogue:before {
|
|
content: "\f69b";
|
|
}
|
|
|
|
.fa-sync:before {
|
|
content: "\f021";
|
|
}
|
|
|
|
.fa-sync-alt:before {
|
|
content: "\f2f1";
|
|
}
|
|
|
|
.fa-syringe:before {
|
|
content: "\f48e";
|
|
}
|
|
|
|
.fa-table:before {
|
|
content: "\f0ce";
|
|
}
|
|
|
|
.fa-table-tennis:before {
|
|
content: "\f45d";
|
|
}
|
|
|
|
.fa-tablet:before {
|
|
content: "\f10a";
|
|
}
|
|
|
|
.fa-tablet-alt:before {
|
|
content: "\f3fa";
|
|
}
|
|
|
|
.fa-tablets:before {
|
|
content: "\f490";
|
|
}
|
|
|
|
.fa-tachometer-alt:before {
|
|
content: "\f3fd";
|
|
}
|
|
|
|
.fa-tag:before {
|
|
content: "\f02b";
|
|
}
|
|
|
|
.fa-tags:before {
|
|
content: "\f02c";
|
|
}
|
|
|
|
.fa-tape:before {
|
|
content: "\f4db";
|
|
}
|
|
|
|
.fa-tasks:before {
|
|
content: "\f0ae";
|
|
}
|
|
|
|
.fa-taxi:before {
|
|
content: "\f1ba";
|
|
}
|
|
|
|
.fa-teamspeak:before {
|
|
content: "\f4f9";
|
|
}
|
|
|
|
.fa-teeth:before {
|
|
content: "\f62e";
|
|
}
|
|
|
|
.fa-teeth-open:before {
|
|
content: "\f62f";
|
|
}
|
|
|
|
.fa-telegram:before {
|
|
content: "\f2c6";
|
|
}
|
|
|
|
.fa-telegram-plane:before {
|
|
content: "\f3fe";
|
|
}
|
|
|
|
.fa-tencent-weibo:before {
|
|
content: "\f1d5";
|
|
}
|
|
|
|
.fa-terminal:before {
|
|
content: "\f120";
|
|
}
|
|
|
|
.fa-text-height:before {
|
|
content: "\f034";
|
|
}
|
|
|
|
.fa-text-width:before {
|
|
content: "\f035";
|
|
}
|
|
|
|
.fa-th:before {
|
|
content: "\f00a";
|
|
}
|
|
|
|
.fa-th-large:before {
|
|
content: "\f009";
|
|
}
|
|
|
|
.fa-th-list:before {
|
|
content: "\f00b";
|
|
}
|
|
|
|
.fa-the-red-yeti:before {
|
|
content: "\f69d";
|
|
}
|
|
|
|
.fa-theater-masks:before {
|
|
content: "\f630";
|
|
}
|
|
|
|
.fa-themeco:before {
|
|
content: "\f5c6";
|
|
}
|
|
|
|
.fa-themeisle:before {
|
|
content: "\f2b2";
|
|
}
|
|
|
|
.fa-thermometer:before {
|
|
content: "\f491";
|
|
}
|
|
|
|
.fa-thermometer-empty:before {
|
|
content: "\f2cb";
|
|
}
|
|
|
|
.fa-thermometer-full:before {
|
|
content: "\f2c7";
|
|
}
|
|
|
|
.fa-thermometer-half:before {
|
|
content: "\f2c9";
|
|
}
|
|
|
|
.fa-thermometer-quarter:before {
|
|
content: "\f2ca";
|
|
}
|
|
|
|
.fa-thermometer-three-quarters:before {
|
|
content: "\f2c8";
|
|
}
|
|
|
|
.fa-thumbs-down:before {
|
|
content: "\f165";
|
|
}
|
|
|
|
.fa-thumbs-up:before {
|
|
content: "\f164";
|
|
}
|
|
|
|
.fa-thumbtack:before {
|
|
content: "\f08d";
|
|
}
|
|
|
|
.fa-ticket-alt:before {
|
|
content: "\f3ff";
|
|
}
|
|
|
|
.fa-times:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.fa-times-circle:before {
|
|
content: "\f057";
|
|
}
|
|
|
|
.fa-tint:before {
|
|
content: "\f043";
|
|
}
|
|
|
|
.fa-tint-slash:before {
|
|
content: "\f5c7";
|
|
}
|
|
|
|
.fa-tired:before {
|
|
content: "\f5c8";
|
|
}
|
|
|
|
.fa-toggle-off:before {
|
|
content: "\f204";
|
|
}
|
|
|
|
.fa-toggle-on:before {
|
|
content: "\f205";
|
|
}
|
|
|
|
.fa-toolbox:before {
|
|
content: "\f552";
|
|
}
|
|
|
|
.fa-tooth:before {
|
|
content: "\f5c9";
|
|
}
|
|
|
|
.fa-torah:before {
|
|
content: "\f6a0";
|
|
}
|
|
|
|
.fa-torii-gate:before {
|
|
content: "\f6a1";
|
|
}
|
|
|
|
.fa-trade-federation:before {
|
|
content: "\f513";
|
|
}
|
|
|
|
.fa-trademark:before {
|
|
content: "\f25c";
|
|
}
|
|
|
|
.fa-traffic-light:before {
|
|
content: "\f637";
|
|
}
|
|
|
|
.fa-train:before {
|
|
content: "\f238";
|
|
}
|
|
|
|
.fa-transgender:before {
|
|
content: "\f224";
|
|
}
|
|
|
|
.fa-transgender-alt:before {
|
|
content: "\f225";
|
|
}
|
|
|
|
.fa-trash:before {
|
|
content: "\f1f8";
|
|
}
|
|
|
|
.fa-trash-alt:before {
|
|
content: "\f2ed";
|
|
}
|
|
|
|
.fa-tree:before {
|
|
content: "\f1bb";
|
|
}
|
|
|
|
.fa-trello:before {
|
|
content: "\f181";
|
|
}
|
|
|
|
.fa-tripadvisor:before {
|
|
content: "\f262";
|
|
}
|
|
|
|
.fa-trophy:before {
|
|
content: "\f091";
|
|
}
|
|
|
|
.fa-truck:before {
|
|
content: "\f0d1";
|
|
}
|
|
|
|
.fa-truck-loading:before {
|
|
content: "\f4de";
|
|
}
|
|
|
|
.fa-truck-monster:before {
|
|
content: "\f63b";
|
|
}
|
|
|
|
.fa-truck-moving:before {
|
|
content: "\f4df";
|
|
}
|
|
|
|
.fa-truck-pickup:before {
|
|
content: "\f63c";
|
|
}
|
|
|
|
.fa-tshirt:before {
|
|
content: "\f553";
|
|
}
|
|
|
|
.fa-tty:before {
|
|
content: "\f1e4";
|
|
}
|
|
|
|
.fa-tumblr:before {
|
|
content: "\f173";
|
|
}
|
|
|
|
.fa-tumblr-square:before {
|
|
content: "\f174";
|
|
}
|
|
|
|
.fa-tv:before {
|
|
content: "\f26c";
|
|
}
|
|
|
|
.fa-twitch:before {
|
|
content: "\f1e8";
|
|
}
|
|
|
|
.fa-twitter:before {
|
|
content: "\f099";
|
|
}
|
|
|
|
.fa-twitter-square:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.fa-typo3:before {
|
|
content: "\f42b";
|
|
}
|
|
|
|
.fa-uber:before {
|
|
content: "\f402";
|
|
}
|
|
|
|
.fa-uikit:before {
|
|
content: "\f403";
|
|
}
|
|
|
|
.fa-umbrella:before {
|
|
content: "\f0e9";
|
|
}
|
|
|
|
.fa-umbrella-beach:before {
|
|
content: "\f5ca";
|
|
}
|
|
|
|
.fa-underline:before {
|
|
content: "\f0cd";
|
|
}
|
|
|
|
.fa-undo:before {
|
|
content: "\f0e2";
|
|
}
|
|
|
|
.fa-undo-alt:before {
|
|
content: "\f2ea";
|
|
}
|
|
|
|
.fa-uniregistry:before {
|
|
content: "\f404";
|
|
}
|
|
|
|
.fa-universal-access:before {
|
|
content: "\f29a";
|
|
}
|
|
|
|
.fa-university:before {
|
|
content: "\f19c";
|
|
}
|
|
|
|
.fa-unlink:before {
|
|
content: "\f127";
|
|
}
|
|
|
|
.fa-unlock:before {
|
|
content: "\f09c";
|
|
}
|
|
|
|
.fa-unlock-alt:before {
|
|
content: "\f13e";
|
|
}
|
|
|
|
.fa-untappd:before {
|
|
content: "\f405";
|
|
}
|
|
|
|
.fa-upload:before {
|
|
content: "\f093";
|
|
}
|
|
|
|
.fa-usb:before {
|
|
content: "\f287";
|
|
}
|
|
|
|
.fa-user:before {
|
|
content: "\f007";
|
|
}
|
|
|
|
.fa-user-alt:before {
|
|
content: "\f406";
|
|
}
|
|
|
|
.fa-user-alt-slash:before {
|
|
content: "\f4fa";
|
|
}
|
|
|
|
.fa-user-astronaut:before {
|
|
content: "\f4fb";
|
|
}
|
|
|
|
.fa-user-check:before {
|
|
content: "\f4fc";
|
|
}
|
|
|
|
.fa-user-circle:before {
|
|
content: "\f2bd";
|
|
}
|
|
|
|
.fa-user-clock:before {
|
|
content: "\f4fd";
|
|
}
|
|
|
|
.fa-user-cog:before {
|
|
content: "\f4fe";
|
|
}
|
|
|
|
.fa-user-edit:before {
|
|
content: "\f4ff";
|
|
}
|
|
|
|
.fa-user-friends:before {
|
|
content: "\f500";
|
|
}
|
|
|
|
.fa-user-graduate:before {
|
|
content: "\f501";
|
|
}
|
|
|
|
.fa-user-lock:before {
|
|
content: "\f502";
|
|
}
|
|
|
|
.fa-user-md:before {
|
|
content: "\f0f0";
|
|
}
|
|
|
|
.fa-user-minus:before {
|
|
content: "\f503";
|
|
}
|
|
|
|
.fa-user-ninja:before {
|
|
content: "\f504";
|
|
}
|
|
|
|
.fa-user-plus:before {
|
|
content: "\f234";
|
|
}
|
|
|
|
.fa-user-secret:before {
|
|
content: "\f21b";
|
|
}
|
|
|
|
.fa-user-shield:before {
|
|
content: "\f505";
|
|
}
|
|
|
|
.fa-user-slash:before {
|
|
content: "\f506";
|
|
}
|
|
|
|
.fa-user-tag:before {
|
|
content: "\f507";
|
|
}
|
|
|
|
.fa-user-tie:before {
|
|
content: "\f508";
|
|
}
|
|
|
|
.fa-user-times:before {
|
|
content: "\f235";
|
|
}
|
|
|
|
.fa-users:before {
|
|
content: "\f0c0";
|
|
}
|
|
|
|
.fa-users-cog:before {
|
|
content: "\f509";
|
|
}
|
|
|
|
.fa-ussunnah:before {
|
|
content: "\f407";
|
|
}
|
|
|
|
.fa-utensil-spoon:before {
|
|
content: "\f2e5";
|
|
}
|
|
|
|
.fa-utensils:before {
|
|
content: "\f2e7";
|
|
}
|
|
|
|
.fa-vaadin:before {
|
|
content: "\f408";
|
|
}
|
|
|
|
.fa-vector-square:before {
|
|
content: "\f5cb";
|
|
}
|
|
|
|
.fa-venus:before {
|
|
content: "\f221";
|
|
}
|
|
|
|
.fa-venus-double:before {
|
|
content: "\f226";
|
|
}
|
|
|
|
.fa-venus-mars:before {
|
|
content: "\f228";
|
|
}
|
|
|
|
.fa-viacoin:before {
|
|
content: "\f237";
|
|
}
|
|
|
|
.fa-viadeo:before {
|
|
content: "\f2a9";
|
|
}
|
|
|
|
.fa-viadeo-square:before {
|
|
content: "\f2aa";
|
|
}
|
|
|
|
.fa-vial:before {
|
|
content: "\f492";
|
|
}
|
|
|
|
.fa-vials:before {
|
|
content: "\f493";
|
|
}
|
|
|
|
.fa-viber:before {
|
|
content: "\f409";
|
|
}
|
|
|
|
.fa-video:before {
|
|
content: "\f03d";
|
|
}
|
|
|
|
.fa-video-slash:before {
|
|
content: "\f4e2";
|
|
}
|
|
|
|
.fa-vihara:before {
|
|
content: "\f6a7";
|
|
}
|
|
|
|
.fa-vimeo:before {
|
|
content: "\f40a";
|
|
}
|
|
|
|
.fa-vimeo-square:before {
|
|
content: "\f194";
|
|
}
|
|
|
|
.fa-vimeo-v:before {
|
|
content: "\f27d";
|
|
}
|
|
|
|
.fa-vine:before {
|
|
content: "\f1ca";
|
|
}
|
|
|
|
.fa-vk:before {
|
|
content: "\f189";
|
|
}
|
|
|
|
.fa-vnv:before {
|
|
content: "\f40b";
|
|
}
|
|
|
|
.fa-volleyball-ball:before {
|
|
content: "\f45f";
|
|
}
|
|
|
|
.fa-volume-down:before {
|
|
content: "\f027";
|
|
}
|
|
|
|
.fa-volume-off:before {
|
|
content: "\f026";
|
|
}
|
|
|
|
.fa-volume-up:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.fa-vuejs:before {
|
|
content: "\f41f";
|
|
}
|
|
|
|
.fa-walking:before {
|
|
content: "\f554";
|
|
}
|
|
|
|
.fa-wallet:before {
|
|
content: "\f555";
|
|
}
|
|
|
|
.fa-warehouse:before {
|
|
content: "\f494";
|
|
}
|
|
|
|
.fa-weebly:before {
|
|
content: "\f5cc";
|
|
}
|
|
|
|
.fa-weibo:before {
|
|
content: "\f18a";
|
|
}
|
|
|
|
.fa-weight:before {
|
|
content: "\f496";
|
|
}
|
|
|
|
.fa-weight-hanging:before {
|
|
content: "\f5cd";
|
|
}
|
|
|
|
.fa-weixin:before {
|
|
content: "\f1d7";
|
|
}
|
|
|
|
.fa-whatsapp:before {
|
|
content: "\f232";
|
|
}
|
|
|
|
.fa-whatsapp-square:before {
|
|
content: "\f40c";
|
|
}
|
|
|
|
.fa-wheelchair:before {
|
|
content: "\f193";
|
|
}
|
|
|
|
.fa-whmcs:before {
|
|
content: "\f40d";
|
|
}
|
|
|
|
.fa-wifi:before {
|
|
content: "\f1eb";
|
|
}
|
|
|
|
.fa-wikipedia-w:before {
|
|
content: "\f266";
|
|
}
|
|
|
|
.fa-window-close:before {
|
|
content: "\f410";
|
|
}
|
|
|
|
.fa-window-maximize:before {
|
|
content: "\f2d0";
|
|
}
|
|
|
|
.fa-window-minimize:before {
|
|
content: "\f2d1";
|
|
}
|
|
|
|
.fa-window-restore:before {
|
|
content: "\f2d2";
|
|
}
|
|
|
|
.fa-windows:before {
|
|
content: "\f17a";
|
|
}
|
|
|
|
.fa-wine-glass:before {
|
|
content: "\f4e3";
|
|
}
|
|
|
|
.fa-wine-glass-alt:before {
|
|
content: "\f5ce";
|
|
}
|
|
|
|
.fa-wix:before {
|
|
content: "\f5cf";
|
|
}
|
|
|
|
.fa-wolf-pack-battalion:before {
|
|
content: "\f514";
|
|
}
|
|
|
|
.fa-won-sign:before {
|
|
content: "\f159";
|
|
}
|
|
|
|
.fa-wordpress:before {
|
|
content: "\f19a";
|
|
}
|
|
|
|
.fa-wordpress-simple:before {
|
|
content: "\f411";
|
|
}
|
|
|
|
.fa-wpbeginner:before {
|
|
content: "\f297";
|
|
}
|
|
|
|
.fa-wpexplorer:before {
|
|
content: "\f2de";
|
|
}
|
|
|
|
.fa-wpforms:before {
|
|
content: "\f298";
|
|
}
|
|
|
|
.fa-wrench:before {
|
|
content: "\f0ad";
|
|
}
|
|
|
|
.fa-x-ray:before {
|
|
content: "\f497";
|
|
}
|
|
|
|
.fa-xbox:before {
|
|
content: "\f412";
|
|
}
|
|
|
|
.fa-xing:before {
|
|
content: "\f168";
|
|
}
|
|
|
|
.fa-xing-square:before {
|
|
content: "\f169";
|
|
}
|
|
|
|
.fa-y-combinator:before {
|
|
content: "\f23b";
|
|
}
|
|
|
|
.fa-yahoo:before {
|
|
content: "\f19e";
|
|
}
|
|
|
|
.fa-yandex:before {
|
|
content: "\f413";
|
|
}
|
|
|
|
.fa-yandex-international:before {
|
|
content: "\f414";
|
|
}
|
|
|
|
.fa-yelp:before {
|
|
content: "\f1e9";
|
|
}
|
|
|
|
.fa-yen-sign:before {
|
|
content: "\f157";
|
|
}
|
|
|
|
.fa-yin-yang:before {
|
|
content: "\f6ad";
|
|
}
|
|
|
|
.fa-yoast:before {
|
|
content: "\f2b1";
|
|
}
|
|
|
|
.fa-youtube:before {
|
|
content: "\f167";
|
|
}
|
|
|
|
.fa-youtube-square:before {
|
|
content: "\f431";
|
|
}
|
|
|
|
.fa-zhihu:before {
|
|
content: "\f63f";
|
|
}
|
|
|
|
.sr-only {
|
|
border: 0;
|
|
clip: rect(0, 0, 0, 0);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
|
|
.sr-only-focusable:active, .sr-only-focusable:focus {
|
|
clip: auto;
|
|
height: auto;
|
|
margin: 0;
|
|
overflow: visible;
|
|
position: static;
|
|
width: auto;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url("../fonts/FontAwesome5/fa-regular-400.eot");
|
|
src: url("../fonts/FontAwesome5/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-regular-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-regular-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-regular-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-regular-400.svg#fontawesome") format("svg");
|
|
}
|
|
.far {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 400;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
src: url("../fonts/FontAwesome5/fa-solid-900.eot");
|
|
src: url("../fonts/FontAwesome5/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-solid-900.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-solid-900.woff") format("woff"), url("../fonts/FontAwesome5/fa-solid-900.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-solid-900.svg#fontawesome") format("svg");
|
|
}
|
|
.fa,
|
|
.fas {
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 900;
|
|
}
|
|
|
|
/*!
|
|
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
*/
|
|
@font-face {
|
|
font-family: "Font Awesome 5 Brands";
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url("../fonts/FontAwesome5/fa-brands-400.eot");
|
|
src: url("../fonts/FontAwesome5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-brands-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-brands-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-brands-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-brands-400.svg#fontawesome") format("svg");
|
|
}
|
|
.fab {
|
|
font-family: "Font Awesome 5 Brands";
|
|
}
|
|
|
|
body {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
|
|
/*
|
|
All colors
|
|
*/
|
|
p, span {
|
|
font-size: 16px;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|
|
p.bottom16, span.bottom16 {
|
|
margin-bottom: 16px;
|
|
}
|
|
p.top16, span.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
p.top32, span.top32 {
|
|
margin-top: 32px;
|
|
}
|
|
p.bottom8, span.bottom8 {
|
|
margin-bottom: 8px;
|
|
}
|
|
p.top8, span.top8 {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.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.faicon.empty,
|
|
a.faicon.empty {
|
|
font-weight: 400;
|
|
}
|
|
span.faicon.link-right,
|
|
a.faicon.link-right {
|
|
margin-right: 10px;
|
|
}
|
|
span.faicon.link-left,
|
|
a.faicon.link-left {
|
|
margin-left: 8px;
|
|
}
|
|
span.faicon.large::before,
|
|
a.faicon.large::before {
|
|
font-size: 32px !important;
|
|
}
|
|
span.faicon.medium::before,
|
|
a.faicon.medium::before {
|
|
font-size: 24px !important;
|
|
}
|
|
span.faicon.title20::before,
|
|
a.faicon.title20::before {
|
|
font-size: 20px !important;
|
|
margin-left: 16px;
|
|
}
|
|
span.faicon.normal::before,
|
|
a.faicon.normal::before {
|
|
font-size: 16px !important;
|
|
}
|
|
span.faicon.small::before,
|
|
a.faicon.small::before {
|
|
font-size: 10px !important;
|
|
}
|
|
span.faicon.yellow,
|
|
a.faicon.yellow {
|
|
color: #FFC700;
|
|
}
|
|
span.faicon.blue,
|
|
a.faicon.blue {
|
|
color: #1E88E5;
|
|
}
|
|
span.faicon.red,
|
|
a.faicon.red {
|
|
color: #FF0000;
|
|
}
|
|
span.faicon.ultra_dark_gray,
|
|
a.faicon.ultra_dark_gray {
|
|
color: #555555;
|
|
}
|
|
span.faicon.green,
|
|
a.faicon.green {
|
|
color: #00C437;
|
|
}
|
|
span.faicon.aslink,
|
|
a.faicon.aslink {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
span.faicon.aslink:hover,
|
|
a.faicon.aslink:hover {
|
|
color: #0059ab;
|
|
}
|
|
span.faicon.fa-stack,
|
|
a.faicon.fa-stack {
|
|
height: 1em;
|
|
line-height: 1em;
|
|
width: 1em;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
div.icon_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
}
|
|
div.icon_holder span.faicon,
|
|
div.icon_holder a.faicon,
|
|
div.icon_holder button.ui-datepicker-trigger {
|
|
margin-left: 12px;
|
|
}
|
|
div.icon_holder.multiple span.faicon,
|
|
div.icon_holder.multiple a.faicon {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
div.icon_holder.multiple span.faicon:last-of-type,
|
|
div.icon_holder.multiple a.faicon:last-of-type {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 21-Sep-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
.enka-custom-radio::before {
|
|
letter-spacing: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
.enka-custom-radio.star::before {
|
|
content: "\f005";
|
|
}
|
|
.enka-custom-radio.thumb::before {
|
|
content: "\f164";
|
|
}
|
|
.enka-custom-radio.smiley::before {
|
|
content: "\f118";
|
|
}
|
|
.enka-custom-radio.heart::before {
|
|
content: "\f004";
|
|
}
|
|
.enka-custom-radio.flag::before {
|
|
content: "\f024";
|
|
}
|
|
.enka-custom-radio.user::before {
|
|
content: "\f007";
|
|
}
|
|
|
|
/* 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: "\f5b4";
|
|
}
|
|
.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: "\f57a";
|
|
}
|
|
.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: "\f119";
|
|
}
|
|
.enka-vizualna-skala.siv-32::before, .enka-vizualna-skala.siv-53::before, .enka-vizualna-skala.siv-74::before {
|
|
content: "\f11a";
|
|
}
|
|
.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: "\f118";
|
|
}
|
|
.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: "\f580";
|
|
}
|
|
.enka-vizualna-skala.siv-66::before, .enka-vizualna-skala.siv-77::before {
|
|
content: "\f59c";
|
|
}
|
|
|
|
/*
|
|
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: "\f067";
|
|
}
|
|
|
|
span.faicon.minus::before {
|
|
content: "\f068";
|
|
}
|
|
|
|
span.faicon.success::before,
|
|
span.circle-check::before {
|
|
content: "\f058";
|
|
}
|
|
|
|
span.faicon.close::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f057";
|
|
}
|
|
|
|
span.faicon.dropdown_blue::before {
|
|
font-size: 16px;
|
|
content: "\f13a";
|
|
}
|
|
|
|
span.faicon.dropup_blue::before {
|
|
font-size: 16px;
|
|
content: "\f139";
|
|
}
|
|
|
|
span.faicon.arrow_back::before {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
content: "\f137";
|
|
}
|
|
|
|
span.faicon.add::before {
|
|
font-size: 18px;
|
|
content: "\f055";
|
|
}
|
|
|
|
span.faicon.remove::before {
|
|
font-size: 18px;
|
|
content: "\f056";
|
|
}
|
|
|
|
span.faicon.delete::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f2ed";
|
|
}
|
|
|
|
span.faicon.anketa_delete::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "\f2ed";
|
|
}
|
|
|
|
span.faicon.copy::before {
|
|
font-size: 18px;
|
|
content: "\f0c5";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.anketa_copy::before {
|
|
font-size: 24px;
|
|
content: "\f0c5";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.export::before {
|
|
font-size: 24px;
|
|
content: "\f56e";
|
|
}
|
|
|
|
/*span.faicon.import::before{
|
|
font-size: 24px;
|
|
content: "\f56f";
|
|
}*/
|
|
span.faicon.import {
|
|
width: 32px;
|
|
}
|
|
|
|
span.faicon.import::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "\f1c2";
|
|
}
|
|
|
|
span.faicon.import::after {
|
|
font-size: 14px;
|
|
content: "\f061";
|
|
display: inline-block;
|
|
}
|
|
|
|
span.faicon.library::before {
|
|
font-size: 24px;
|
|
content: "\f518";
|
|
}
|
|
|
|
span.faicon.folder::before {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
content: "\f07b";
|
|
}
|
|
|
|
span.faicon.folder_empty::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f07b";
|
|
}
|
|
|
|
span.faicon.after.sort_down_arrow::after {
|
|
content: "\f0d7";
|
|
margin-left: 5px;
|
|
}
|
|
|
|
span.faicon.after.sort_up_arrow::after {
|
|
content: "\f0d8";
|
|
margin-left: 5px;
|
|
}
|
|
|
|
span.faicon.info::before {
|
|
font-size: 28px;
|
|
content: "\f05a";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.pagination_left::before {
|
|
margin: 0 1px 0 1px;
|
|
content: "\f104";
|
|
}
|
|
|
|
span.faicon.pagination_right::before {
|
|
margin: 0 0 0 1px;
|
|
content: "\f105";
|
|
}
|
|
|
|
span.faicon.edit::before,
|
|
span.faicon.edit2::before {
|
|
content: "\f304";
|
|
}
|
|
|
|
span.faicon.refresh::before {
|
|
font-size: 18px;
|
|
content: "\f2f1";
|
|
}
|
|
|
|
span.faicon.filter::before {
|
|
font-size: 18px;
|
|
content: "\f0b0";
|
|
}
|
|
|
|
span.faicon.grip::before {
|
|
content: "\f58e";
|
|
}
|
|
|
|
span.faicon.star::before,
|
|
span.faicon.star_off::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "\f005";
|
|
}
|
|
|
|
span.faicon.star_on::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "\f005";
|
|
}
|
|
|
|
span.faicon.search::before {
|
|
font-size: 20px;
|
|
content: "\f002";
|
|
}
|
|
|
|
span.faicon.clipboard_notes::before {
|
|
font-size: 20px;
|
|
content: "\f46d";
|
|
}
|
|
|
|
span.faicon.help2::before {
|
|
font-size: 20px;
|
|
content: "\f059";
|
|
}
|
|
|
|
span.faicon.user::before {
|
|
font-size: 18px;
|
|
content: "\f007";
|
|
}
|
|
|
|
span.faicon.logout::before {
|
|
font-size: 20px;
|
|
content: "\f2f5";
|
|
}
|
|
|
|
span.faicon.monitor::before {
|
|
content: "\f108";
|
|
}
|
|
|
|
span.faicon.users::before {
|
|
content: "\f500";
|
|
}
|
|
|
|
span.faicon.lock_open::before {
|
|
content: "\f3c1";
|
|
}
|
|
|
|
span.faicon.lock_close::before {
|
|
content: "\f023";
|
|
}
|
|
|
|
span.faicon.bottom_saving::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "\f0c7";
|
|
}
|
|
|
|
span.faicon.bottom_publish::before {
|
|
font-size: 24px;
|
|
content: "\f093";
|
|
}
|
|
|
|
span.faicon.bottom_preview {
|
|
width: 20px;
|
|
}
|
|
|
|
span.faicon.bottom_preview::before {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
content: "\f15b";
|
|
}
|
|
|
|
span.faicon.bottom_preview::after {
|
|
font-size: 14px;
|
|
content: "\f002";
|
|
display: inline-block;
|
|
margin-left: -70%;
|
|
}
|
|
|
|
span.faicon.bottom_test::before {
|
|
font-size: 24px;
|
|
content: "\f492";
|
|
}
|
|
|
|
span.faicon.language::before {
|
|
font-size: 24px;
|
|
content: "\f0ac";
|
|
}
|
|
|
|
span.faicon.mobile_off::before {
|
|
font-size: 24px;
|
|
content: "\f3cd";
|
|
}
|
|
|
|
span.faicon.mobile_off::after {
|
|
font-size: 24px;
|
|
content: "\f715";
|
|
margin-left: -23px;
|
|
}
|
|
|
|
span.faicon.comments::before {
|
|
font-size: 24px;
|
|
content: "\f27a";
|
|
}
|
|
|
|
span.faicon.comments_num::before {
|
|
font-size: 24px;
|
|
content: "\f27a";
|
|
}
|
|
|
|
span.faicon.comments_num strong {
|
|
color: white;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
span.faicon.data_link::before {
|
|
font-size: 20px;
|
|
content: "\f0c1";
|
|
}
|
|
|
|
span.faicon.data_link_small::before {
|
|
font-size: 16px;
|
|
content: "\f0c1";
|
|
}
|
|
|
|
span.faicon.print::before {
|
|
font-size: 24px;
|
|
content: "\f02f";
|
|
}
|
|
|
|
span.faicon.print_small::before {
|
|
font-size: 16px;
|
|
content: "\f02f";
|
|
}
|
|
|
|
span.faicon.preview {
|
|
width: 18px;
|
|
}
|
|
|
|
span.faicon.preview::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f15b";
|
|
}
|
|
|
|
span.faicon.preview::after {
|
|
content: "\f002";
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
margin-left: -50%;
|
|
}
|
|
|
|
span.faicon.palette::before {
|
|
font-size: 18px;
|
|
content: "\f53f";
|
|
}
|
|
|
|
span.faicon.inline_comment::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "\f075";
|
|
}
|
|
|
|
span.faicon.inline_double_comment::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "\f086";
|
|
}
|
|
|
|
span.faicon.comments_creport::before {
|
|
font-size: 16px;
|
|
content: "\f086";
|
|
}
|
|
|
|
span.faicon.compress::before {
|
|
font-size: 15px;
|
|
content: "\f066";
|
|
}
|
|
|
|
span.faicon.expand::before {
|
|
font-size: 15px;
|
|
content: "\f065";
|
|
}
|
|
|
|
span.faicon.hashtag::before {
|
|
font-size: 15px;
|
|
content: "\f292";
|
|
}
|
|
|
|
span.faicon.bug::before {
|
|
font-size: 15px;
|
|
content: "\f188";
|
|
}
|
|
|
|
span.faicon.paragraph::before {
|
|
font-size: 15px;
|
|
content: "\f1dd";
|
|
}
|
|
|
|
span.faicon.replace::before {
|
|
font-size: 15px;
|
|
content: "\f362";
|
|
}
|
|
|
|
span.faicon.plus_square::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "\f0fe";
|
|
}
|
|
|
|
span.faicon.minus_square::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "\f146";
|
|
}
|
|
|
|
span.faicon.delete_circle::before {
|
|
font-size: 14px;
|
|
content: "\f056";
|
|
}
|
|
|
|
span.faicon.quick_view::before {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
content: "\f06e";
|
|
}
|
|
|
|
span.faicon.edit_square::before {
|
|
font-size: 15px;
|
|
content: "\f044";
|
|
}
|
|
|
|
span.faicon.test::before {
|
|
font-size: 15px;
|
|
content: "\f492";
|
|
}
|
|
|
|
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: "\f15c";
|
|
}
|
|
|
|
span.faicon.text_file_small {
|
|
height: 20px;
|
|
vertical-align: middle;
|
|
}
|
|
span.faicon.text_file_small:before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f15c";
|
|
}
|
|
|
|
span.faicon.warning::before {
|
|
font-size: 16px;
|
|
content: "\f071";
|
|
}
|
|
|
|
span.faicon.users_small::before {
|
|
font-size: 16px;
|
|
content: "\f0c0";
|
|
}
|
|
|
|
span.faicon.popup_0::before {
|
|
font-size: 14px;
|
|
content: "\f065";
|
|
color: #1E88E5;
|
|
}
|
|
|
|
span.faicon.popup_1::before {
|
|
font-size: 14px;
|
|
content: "\f065";
|
|
color: #0059ab;
|
|
}
|
|
|
|
span.faicon.flat_0::before {
|
|
font-size: 14px;
|
|
content: "\f03c";
|
|
color: #0059ab;
|
|
}
|
|
|
|
span.faicon.flat_1::before {
|
|
font-size: 14px;
|
|
content: "\f03c";
|
|
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: "\f35d";
|
|
}
|
|
|
|
span.faicon.cog_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "\f013";
|
|
}
|
|
|
|
span.faicon.chart_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "\f201";
|
|
}
|
|
|
|
span.faicon.reload_large::before {
|
|
font-size: 34px;
|
|
font-weight: 600;
|
|
content: "\f021";
|
|
}
|
|
|
|
span.faicon.chart::before {
|
|
content: "\f080";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.data::before {
|
|
content: "\f1c0";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.publish::before {
|
|
content: "\f093";
|
|
font-size: 16px;
|
|
}
|
|
|
|
span.faicon.test::before {
|
|
content: "\f492";
|
|
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: "\f073";
|
|
}
|
|
|
|
/* ARROWS */
|
|
span.faicon.arrow_up::before {
|
|
font-size: 14px;
|
|
content: "\f062";
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
span.faicon.arrow2_r::before {
|
|
font-size: 14px;
|
|
content: "\f054";
|
|
}
|
|
|
|
span.faicon.arrow2_l::before {
|
|
font-size: 14px;
|
|
content: "\f053";
|
|
}
|
|
|
|
span.faicon.arrow2_d::before {
|
|
font-size: 14px;
|
|
content: "\f078";
|
|
}
|
|
|
|
span.faicon.arrow2_u::before {
|
|
font-size: 14px;
|
|
content: "\f077";
|
|
}
|
|
|
|
span.faicon.arrow_large2_r::before {
|
|
font-size: 35px;
|
|
content: "\f054";
|
|
}
|
|
|
|
span.faicon.arrow_large2_l::before {
|
|
font-size: 35px;
|
|
content: "\f053";
|
|
}
|
|
|
|
span.faicon.arrow_verylarge2_r::before {
|
|
font-size: 40px;
|
|
content: "\f054";
|
|
}
|
|
|
|
span.faicon.arrow_verylarge2_l::before {
|
|
font-size: 40px;
|
|
content: "\f053";
|
|
}
|
|
|
|
span.faicon.sort_descending::before {
|
|
font-size: 14px;
|
|
content: "\f0d7";
|
|
}
|
|
|
|
span.faicon.sort_ascending::before {
|
|
font-size: 14px;
|
|
content: "\f0d8";
|
|
}
|
|
|
|
/* 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: "\f0fe";
|
|
}
|
|
|
|
span.faicon.minus_orange::before {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
content: "\f146";
|
|
}
|
|
|
|
/* Spinner */
|
|
span.faicon.spinner::before {
|
|
font-size: 18px;
|
|
content: "\f1ce";
|
|
}
|
|
|
|
/* Bars - mobile menu */
|
|
span.faicon.bars::before {
|
|
font-size: 26px;
|
|
content: "\f0c9";
|
|
}
|
|
|
|
span.faicon.lock_open::before {
|
|
content: "\f3c1";
|
|
}
|
|
|
|
span.faicon.lock_close::before {
|
|
content: "\f023";
|
|
}
|
|
|
|
span.faicon.bell::before {
|
|
content: "\f0f3";
|
|
}
|
|
|
|
span.faicon.bell_slash::before {
|
|
content: "\f1f6";
|
|
}
|
|
|
|
span.faicon.trash::before {
|
|
content: "\f2ed";
|
|
}
|
|
|
|
span.faicon.copy::before {
|
|
content: "\f0c5";
|
|
}
|
|
|
|
span.faicon.circle::before {
|
|
content: "\f111";
|
|
vertical-align: middle;
|
|
}
|
|
|
|
span.faicon.plus::before {
|
|
content: "\f067";
|
|
}
|
|
|
|
span.faicon.plus_circle::before {
|
|
content: "\f055";
|
|
}
|
|
|
|
span.faicon.minus_circle::before {
|
|
content: "\f056";
|
|
}
|
|
|
|
span.faicon.calendar_icon::before {
|
|
content: "\f073";
|
|
}
|
|
|
|
span.faicon.clipboard::before {
|
|
content: "\f328";
|
|
}
|
|
|
|
span.faicon.list-alt::before {
|
|
content: "\f022";
|
|
}
|
|
|
|
span.faicon.vote-yes::before {
|
|
content: "\f772";
|
|
}
|
|
|
|
span.faicon.file-preview::before {
|
|
content: "\f865";
|
|
}
|
|
|
|
span.faicon.dots::before {
|
|
content: "\f141";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.dots_ver:before {
|
|
content: "\f142";
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
span.faicon.open_icon::before,
|
|
a.faicon.open_icon::before {
|
|
content: "\f35d";
|
|
}
|
|
|
|
span.faicon.table_icon::before {
|
|
content: "\f0ce";
|
|
}
|
|
|
|
span.faicon.list::before {
|
|
content: "\f03a";
|
|
}
|
|
|
|
span.faicon.link-chain::before {
|
|
content: "\f0c1";
|
|
}
|
|
|
|
/*
|
|
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: "\f013";
|
|
}
|
|
|
|
span.faicon.radio_32::before {
|
|
content: "\f192";
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.check_32::before {
|
|
content: "\f14a";
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
}
|
|
|
|
span.faicon.matrix_32::before {
|
|
content: "\f192\f192\a\f192\f192";
|
|
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: "\f055";
|
|
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: "\f031";
|
|
}
|
|
|
|
a.faicon.edit::before {
|
|
font-size: 16px;
|
|
content: "\f304";
|
|
}
|
|
|
|
a.faicon.addif::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
content: "IF";
|
|
}
|
|
|
|
a.faicon.copy::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f0c5";
|
|
}
|
|
|
|
a.faicon.copycond::before {
|
|
font-size: 18px;
|
|
content: "\f0c5";
|
|
}
|
|
|
|
a.faicon.preview::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f15b";
|
|
}
|
|
|
|
a.faicon.preview::after {
|
|
content: "\f002";
|
|
display: inline-block;
|
|
font-size: 11px;
|
|
margin-left: -50%;
|
|
}
|
|
|
|
a.faicon.arhiv::before {
|
|
font-size: 18px;
|
|
content: "\f044";
|
|
}
|
|
|
|
a.faicon.delete::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f2ed";
|
|
}
|
|
|
|
a.faicon.hide::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f06e";
|
|
}
|
|
|
|
a.faicon.unhide_icon::before {
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
content: "\f070";
|
|
}
|
|
|
|
/* 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: "\f304";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden::before {
|
|
font-size: 14px;
|
|
content: "\f05e";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden.show-hidden::before {
|
|
color: #FF0000;
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_hidden.show-disable::before {
|
|
color: #FFC700;
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_not::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF*";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_follow::before {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF🠞";
|
|
}
|
|
|
|
.variabla span.inline.faicon.correct::before {
|
|
font-size: 14px;
|
|
font-weight: 900;
|
|
content: "\f00c";
|
|
}
|
|
|
|
.variabla span.inline.faicon.move_updown::before {
|
|
font-size: 16px;
|
|
color: #0059ab;
|
|
content: "\f338";
|
|
}
|
|
|
|
/*
|
|
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: "\f022";
|
|
}
|
|
|
|
span.faicon.table::before {
|
|
font-size: 16px;
|
|
content: "\f00b";
|
|
}
|
|
|
|
span.faicon.other_vprasanja::before {
|
|
font-size: 16px;
|
|
content: "\f0ca" !important;
|
|
}
|
|
|
|
span.faicon.osnovna_vprasanja::before {
|
|
font-size: 16px;
|
|
content: "\f0ca";
|
|
}
|
|
|
|
span.faicon.mapca.if::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
content: "IF";
|
|
}
|
|
|
|
span.faicon.mapca.b::before {
|
|
font-family: Source Sans Pro, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
content: "B";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 8-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Izvozi */
|
|
span.faicon.pdf::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f1c1";
|
|
color: #ed1c24;
|
|
}
|
|
|
|
span.faicon.pdf.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.pdf.black:hover {
|
|
color: #ed1c24 !important;
|
|
}
|
|
|
|
a:hover span.faicon.pdf.black {
|
|
color: #ed1c24 !important;
|
|
}
|
|
|
|
span.faicon.pdf.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.xls::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f1c3";
|
|
color: #008000;
|
|
}
|
|
|
|
span.faicon.xls.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.xls.black:hover {
|
|
color: #008000 !important;
|
|
}
|
|
|
|
a:hover span.faicon.xls.black {
|
|
color: #008000 !important;
|
|
}
|
|
|
|
span.faicon.xls.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.rtf::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f1c2";
|
|
color: #0f3ea8;
|
|
}
|
|
|
|
span.faicon.rtf.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.rtf.black:hover {
|
|
color: #0f3ea8 !important;
|
|
}
|
|
|
|
a:hover span.faicon.rtf.black {
|
|
color: #0f3ea8 !important;
|
|
}
|
|
|
|
span.faicon.rtf.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.ppt::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f1c4";
|
|
color: #fa4913;
|
|
}
|
|
|
|
span.faicon.ppt.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.ppt.black:hover {
|
|
color: #fa4913 !important;
|
|
}
|
|
|
|
a:hover span.faicon.ppt.black {
|
|
color: #fa4913 !important;
|
|
}
|
|
|
|
span.faicon.ppt.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.xml::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f1c9";
|
|
color: #00a000;
|
|
}
|
|
|
|
span.faicon.xml.black {
|
|
color: #E5E5E5 !important;
|
|
}
|
|
span.faicon.xml.black:hover {
|
|
color: #00a000 !important;
|
|
}
|
|
|
|
a:hover span.faicon.xml.black {
|
|
color: #00a000 !important;
|
|
}
|
|
|
|
span.faicon.xml.black::before {
|
|
color: inherit !important;
|
|
}
|
|
|
|
span.faicon.arhiv::before {
|
|
font-size: 16px;
|
|
content: "\f187";
|
|
}
|
|
|
|
span.faicon.arhiv_mail::before {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
content: "\f14d";
|
|
}
|
|
|
|
/*
|
|
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: "\f200";
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Okt-2018
|
|
Author : Peter Hrvatin
|
|
*/
|
|
/* Invitation table */
|
|
span.faicon.inv_sent_0::before {
|
|
font-size: 14px;
|
|
content: "\f2b6";
|
|
font-weight: 400;
|
|
}
|
|
|
|
span.faicon.inv_sent_1::before {
|
|
font-size: 14px;
|
|
content: "\f0e0";
|
|
}
|
|
|
|
span.faicon.inv_responded_0::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "\f005";
|
|
}
|
|
|
|
span.faicon.inv_responded_1::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "\f005";
|
|
}
|
|
|
|
span.faicon.inv_unsubscribed_0::before {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
content: "\f111";
|
|
}
|
|
|
|
span.faicon.inv_unsubscribed_1::before {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
content: "\f111";
|
|
color: #FF0000;
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
a:hover {
|
|
color: #0059ab;
|
|
}
|
|
a.noline {
|
|
text-decoration: none;
|
|
}
|
|
a.noline.undertable {
|
|
margin-left: 17px;
|
|
}
|
|
a.help {
|
|
text-decoration: none;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.displayNone {
|
|
display: none !important;
|
|
}
|
|
|
|
/*
|
|
Components scss
|
|
*/
|
|
/*
|
|
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: "\f059";
|
|
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 0 0 20px;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ul li,
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ol li {
|
|
margin: 4px 0;
|
|
}
|
|
.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: "\f054";
|
|
font-size: 8px;
|
|
color: #1E88E5;
|
|
transition: 0.2s;
|
|
}
|
|
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more:hover::after {
|
|
color: #0059ab;
|
|
}
|
|
.qtip .qtip-borderTop, .qtip .qtip-borderBottom {
|
|
display: none !important;
|
|
}
|
|
|
|
/* toostip popups */
|
|
.expanded-tooltip {
|
|
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: -45px;
|
|
left: -25px;
|
|
display: block;
|
|
width: 200px;
|
|
height: 29px;
|
|
margin: 0;
|
|
}
|
|
.expanded-tooltip a {
|
|
text-decoration: none;
|
|
}
|
|
.expanded-tooltip ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
.expanded-tooltip ul li {
|
|
margin-bottom: 16px;
|
|
}
|
|
.expanded-tooltip ul li:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
.expanded-tooltip ul li span {
|
|
cursor: pointer;
|
|
color: #333333;
|
|
}
|
|
.expanded-tooltip ul li span:hover {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.expanded-tooltip.bottom {
|
|
top: 35px;
|
|
left: -100px;
|
|
height: auto;
|
|
}
|
|
|
|
#request_help_content.expanded-tooltip {
|
|
/*left: -85px;*/
|
|
}
|
|
|
|
#tooltip_preview_content.expanded-tooltip {
|
|
/*left: -90px;*/
|
|
}
|
|
|
|
#baseSurveyInfoImg .expanded-tooltip {
|
|
width: 400px;
|
|
left: -38px;
|
|
}
|
|
#baseSurveyInfoImg .expanded-tooltip span.arrow {
|
|
left: 12%;
|
|
}
|
|
|
|
/*
|
|
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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
.divPopUp h2 span.faicon:before,
|
|
.divPopUp .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
.divPopUp p {
|
|
line-height: 20px;
|
|
}
|
|
.divPopUp .popup_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.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: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
.divPopUp_info {
|
|
padding: 16px;
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.25);
|
|
}
|
|
.divPopUp_info h2 {
|
|
width: 100%;
|
|
margin-top: 3px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.divPopUp_info span,
|
|
.divPopUp_info p {
|
|
display: block;
|
|
padding-bottom: 16px;
|
|
}
|
|
.divPopUp_info span:last-child,
|
|
.divPopUp_info p:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
.divPopUp_info a {
|
|
font-weight: 500;
|
|
}
|
|
.divPopUp_info.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "\f071";
|
|
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;
|
|
}
|
|
|
|
/* Action spodaj desno (npr. uspesno kopiranje...) */
|
|
#action_note_holder {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
z-index: 900;
|
|
position: fixed;
|
|
bottom: 16px;
|
|
left: 16px;
|
|
}
|
|
#action_note_holder .action_note_box {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 275px;
|
|
height: 38px;
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 2px;
|
|
}
|
|
#action_note_holder .action_note_box.success {
|
|
border-color: #1E88E5;
|
|
}
|
|
#action_note_holder .action_note_box.success .faicon:before {
|
|
color: #1E88E5;
|
|
}
|
|
#action_note_holder .action_note_box.error {
|
|
border-color: #FF0000;
|
|
}
|
|
#action_note_holder .action_note_box.error .faicon:before {
|
|
color: #FF0000;
|
|
}
|
|
#action_note_holder .action_note_box span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
#action_note_holder .action_note_box span.faicon::before {
|
|
font-size: 15px;
|
|
}
|
|
#action_note_holder .action_note_box span.text {
|
|
font-size: 14px;
|
|
}
|
|
#action_note_holder .action_note_box .close {
|
|
cursor: pointer;
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#action_note_holder .action_note_box .close:hover {
|
|
color: #333333;
|
|
}
|
|
#action_note_holder .action_note_box .close span {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#action_note_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;
|
|
width: 340px;
|
|
}
|
|
#check_pogoji .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#check_pogoji .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#check_pogoji .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#check_pogoji .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#check_pogoji h2,
|
|
#check_pogoji .divPopUp_top {
|
|
width: 100%;
|
|
margin-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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#check_pogoji h2 span.faicon:before,
|
|
#check_pogoji .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#check_pogoji p {
|
|
line-height: 20px;
|
|
}
|
|
#check_pogoji .popup_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.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: "\f071";
|
|
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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#dropped_alert h2 span.faicon:before,
|
|
#dropped_alert .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#dropped_alert p {
|
|
line-height: 20px;
|
|
}
|
|
#dropped_alert .popup_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.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: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
#alert_close_block {
|
|
display: none;
|
|
min-height: 30px;
|
|
width: 500px;
|
|
}
|
|
|
|
/* Popup z obvestilom, da je funkcionalnost onemogocena in je potrebno kupiti paket */
|
|
#popup_user_access {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 9999;
|
|
height: auto;
|
|
width: 450px;
|
|
}
|
|
#popup_user_access .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#popup_user_access .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#popup_user_access .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#popup_user_access .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#popup_user_access h2,
|
|
#popup_user_access .divPopUp_top {
|
|
width: 100%;
|
|
margin-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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#popup_user_access h2 span.faicon:before,
|
|
#popup_user_access .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#popup_user_access p {
|
|
line-height: 20px;
|
|
}
|
|
#popup_user_access .popup_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.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: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#popup_user_access div.buttonwrapper a {
|
|
margin-top: 10px;
|
|
}
|
|
#popup_user_access p {
|
|
margin-top: 0;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/*
|
|
Popupi z errorji
|
|
*/
|
|
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;
|
|
}
|
|
|
|
/*
|
|
Header scss - top line, menu...
|
|
*/
|
|
header .mobile_header {
|
|
display: none;
|
|
}
|
|
|
|
header #top_line {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 60px;
|
|
padding: 0 32px;
|
|
/*tooltips on survey*/
|
|
}
|
|
header #top_line #logo_holder {
|
|
width: 87px;
|
|
height: 40px;
|
|
}
|
|
header #top_line #logo_holder a {
|
|
display: block;
|
|
width: 87px;
|
|
height: 40px;
|
|
background-image: url(../img/logo/1ka_logo_slo.svg);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
header #top_line #logo_holder.english a {
|
|
background-image: url(../img/logo/1ka_logo_eng.svg);
|
|
}
|
|
header #top_line #logo_holder.namestitev a {
|
|
background-image: url(../img/logo/1ka_logo_namestitev.svg);
|
|
}
|
|
header #top_line .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: 20px;
|
|
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 .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;
|
|
flex-direction: column;
|
|
}
|
|
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: #777777;
|
|
}
|
|
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_activation .anketa_header_activate .switch_anketa {
|
|
position: relative;
|
|
display: block;
|
|
width: 46px;
|
|
height: 16px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding-top: 1px;
|
|
color: white;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
line-height: 12px;
|
|
background-color: #1E88E5;
|
|
border-radius: 16px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 14px;
|
|
width: 14px;
|
|
bottom: 1px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content {
|
|
padding-left: 20px;
|
|
background-color: #1E88E5;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content:before {
|
|
left: 1px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on:hover .switch_anketa_content {
|
|
background-color: #0059ab;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content {
|
|
padding-left: 6px;
|
|
background-color: #808080;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content:before {
|
|
right: 1px;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off:hover .switch_anketa_content {
|
|
background-color: #777777;
|
|
}
|
|
header #top_line #anketa_header_settings .anketa_header_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;
|
|
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;
|
|
}
|
|
header #top_line .tooltip {
|
|
position: relative;
|
|
}
|
|
header #top_line .tooltip .expanded-tooltip {
|
|
display: none;
|
|
white-space: normal;
|
|
}
|
|
header #top_line .tooltip:hover .expanded-tooltip {
|
|
display: block;
|
|
}
|
|
header #top_line .tooltip.monitor {
|
|
cursor: pointer;
|
|
}
|
|
|
|
header #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: 11px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li {
|
|
padding: 14px 32px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li a {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.active_on {
|
|
background-color: #FFFFFF;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li.active_on a {
|
|
color: #1E88E5;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_buttons_list li #mojeAnketeLink .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
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 #quick_comments_link.newCss {
|
|
font-size: 12px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a {
|
|
margin-right: 0px !important;
|
|
color: #FFFFFF !important;
|
|
font-weight: 600;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a:hover {
|
|
color: #FFFFFF !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_blue_off {
|
|
margin-top: 4px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_orange_off {
|
|
margin-top: 4px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_blue_on {
|
|
margin-top: -1px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings #quick_comments_link.newCss a span.comments_orange_on {
|
|
margin-top: -1px !important;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings span.sprites.comments_blue_on {
|
|
color: #FFFFFF;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.quick_settings span.sprites.comments_orange_on {
|
|
color: #FFFFFF;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_modules li {
|
|
margin-left: 16px;
|
|
}
|
|
header #surveyNavigation #firstNavigation ol.navigation_modules a:hover {
|
|
text-decoration: none;
|
|
}
|
|
header #secondNavigation {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 41px;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
header #secondNavigation .separator {
|
|
width: 1px;
|
|
height: 25px;
|
|
margin: 0 16px;
|
|
border-left: 1px #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 #E5E5E5 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.active, header #secondNavigation ul.secondNavigation li:hover,
|
|
header #secondNavigation ul.secondNavigationArchive li.active,
|
|
header #secondNavigation ul.secondNavigationArchive li:hover {
|
|
border-bottom: 1px #1E88E5 solid;
|
|
}
|
|
header #secondNavigation ul.secondNavigation li.active a, header #secondNavigation ul.secondNavigation li:hover a,
|
|
header #secondNavigation ul.secondNavigationArchive li.active a,
|
|
header #secondNavigation ul.secondNavigationArchive li:hover a {
|
|
color: #1E88E5;
|
|
}
|
|
header #secondNavigation #secondNavigation_links {
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 32px;
|
|
}
|
|
header #secondNavigation #secondNavigation_links a {
|
|
margin-left: 16px;
|
|
}
|
|
header #secondNavigation #secondNavigation_links a span::before {
|
|
font-size: 20px !important;
|
|
}
|
|
header #topSettingsHolder {
|
|
display: flex;
|
|
align-items: center;
|
|
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: 20px;
|
|
border-left: 1px dotted #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 #dataOnlyValid {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 25px;
|
|
width: auto;
|
|
padding: 0 32px;
|
|
border-left: 1px #E5E5E5 solid;
|
|
}
|
|
header #topSettingsHolder .left_options_holder #dataOnlyValid label {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
}
|
|
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: "\f078";
|
|
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 .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 #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;
|
|
}
|
|
|
|
div.layout_left_item {
|
|
padding: 16px 32px;
|
|
margin-right: 64px;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: -10px 10px 0px #F8F8F8;
|
|
height: fit-content;
|
|
}
|
|
div.layout_left_item span.faicon {
|
|
margin-left: 16px;
|
|
}
|
|
div.layout_left_item span.menu_left-title {
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
line-height: 21px;
|
|
text-transform: uppercase;
|
|
}
|
|
div.layout_left_item span.menu_left-title.paid_locked {
|
|
color: #FFC700;
|
|
}
|
|
div.layout_left_item ul.menu_left-list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-bottom: 32px;
|
|
font-size: 16px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.paid_locked {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.paid_locked a:hover {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li {
|
|
line-height: 20px;
|
|
margin-top: 12px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li.active {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li a.paid_locked {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list li a.paid_locked a:hover {
|
|
color: #777777;
|
|
}
|
|
div.layout_left_item ul.menu_left-list.second {
|
|
padding-left: 30px;
|
|
}
|
|
div.layout_left_item ul.menu_left-list a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
div.layout_left_item ul.menu_left-list a:hover {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
/*
|
|
Form scss - input fields, buttons...
|
|
*/
|
|
button,
|
|
submit {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
box-shadow: none;
|
|
border: 0;
|
|
transition: 0.3s;
|
|
}
|
|
button.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.white-blue,
|
|
submit.white-blue {
|
|
color: #1E88E5;
|
|
background-color: #FFFFFF;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
button.white-blue:hover,
|
|
submit.white-blue:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.white-black,
|
|
submit.white-black {
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: 1px #333333 solid;
|
|
}
|
|
button.white-black:hover,
|
|
submit.white-black:hover {
|
|
background-color: #f2f2f2;
|
|
}
|
|
button.gray,
|
|
submit.gray {
|
|
color: #333333;
|
|
background-color: #E5E5E5;
|
|
border: 1px #333333 solid;
|
|
}
|
|
button.gray:hover,
|
|
submit.gray:hover {
|
|
background-color: #d8d8d8;
|
|
}
|
|
button.yellow,
|
|
submit.yellow {
|
|
color: #333333;
|
|
background-color: #FFC700;
|
|
border: 1px #FFC700 solid;
|
|
}
|
|
button.yellow:hover,
|
|
submit.yellow:hover {
|
|
background-color: #f5bf00;
|
|
}
|
|
button.red,
|
|
submit.red {
|
|
color: #FFFFFF;
|
|
background-color: #FF0000;
|
|
border: 1px #FF0000 solid;
|
|
}
|
|
button.red:hover,
|
|
submit.red:hover {
|
|
background-color: #e60000;
|
|
}
|
|
|
|
div.button_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
margin-bottom: 32px;
|
|
}
|
|
div.button_holder button {
|
|
margin-right: 16px;
|
|
}
|
|
div.button_holder.bottom16 {
|
|
margin-bottom: 16px;
|
|
}
|
|
div.button_holder.top16 {
|
|
margin-top: 16px;
|
|
}
|
|
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;
|
|
}
|
|
|
|
label {
|
|
cursor: pointer;
|
|
margin-right: 16px;
|
|
font-size: 16px;
|
|
}
|
|
label[disabled] {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
label.empty {
|
|
margin: 0;
|
|
font-size: 0;
|
|
}
|
|
|
|
input[type=text], input[type=password] {
|
|
border: 1px solid #C4C4C4;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
width: 245px;
|
|
margin-top: 4px;
|
|
font-family: Source Sans Pro, sans-serif;
|
|
}
|
|
input[type=text].w200, input[type=password].w200 {
|
|
width: 200px;
|
|
}
|
|
input[type=text].w300, input[type=password].w300 {
|
|
width: 300px;
|
|
}
|
|
input[type=text].w400, input[type=password].w400 {
|
|
width: 400px;
|
|
}
|
|
input[type=text].wauto, input[type=password].wauto {
|
|
width: auto;
|
|
}
|
|
input[type=text].large, input[type=password].large {
|
|
height: 40px;
|
|
font-size: 16px;
|
|
padding: 9px 7px;
|
|
}
|
|
input[type=text].medium, input[type=password].medium {
|
|
height: 32px;
|
|
font-size: 14px;
|
|
padding: 6px 7px;
|
|
}
|
|
input[type=text].small, input[type=password].small {
|
|
height: 26px;
|
|
font-size: 14px;
|
|
padding: 3px 7px;
|
|
}
|
|
input[type=text]:focus, input[type=password]:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
input[type=text][readonly=true], input[type=password][readonly=true] {
|
|
cursor: pointer;
|
|
}
|
|
input[type=radio], input[type=checkbox] {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
width: 1px;
|
|
}
|
|
input[type=radio] + label:before, input[type=checkbox] + label:before {
|
|
cursor: pointer;
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
color: #777777;
|
|
letter-spacing: 8px;
|
|
font-size: 18px;
|
|
vertical-align: -1px;
|
|
}
|
|
input[type=radio] + label.empty:before, input[type=checkbox] + label.empty:before {
|
|
letter-spacing: 0;
|
|
}
|
|
input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:before {
|
|
color: #1E88E5;
|
|
}
|
|
input[type=checkbox] + label:before {
|
|
content: "\f0c8";
|
|
}
|
|
input[type=checkbox]:checked + label:before {
|
|
content: "\f14a";
|
|
font-weight: bold;
|
|
}
|
|
input[type=radio] + label:before {
|
|
content: "\f111";
|
|
}
|
|
input[type=radio]:checked + label:before {
|
|
content: "\f192";
|
|
}
|
|
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 ul {
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
padding-inline-start: 25px;
|
|
}
|
|
|
|
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.disabled {
|
|
border-color: #C4C4C4;
|
|
background-color: #E5E5E5;
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
textarea:focus {
|
|
outline-style: none;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
border-color: #1E88E5;
|
|
}
|
|
|
|
table {
|
|
margin: 8px 0;
|
|
padding: 8px 0;
|
|
border-collapse: collapse;
|
|
text-align: left;
|
|
}
|
|
table td,
|
|
table th {
|
|
padding: 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.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;
|
|
}
|
|
|
|
/*
|
|
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 {
|
|
width: 100px;
|
|
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;
|
|
}
|
|
#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%;
|
|
box-sizing: border-box;
|
|
padding: 12px 16px;
|
|
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;
|
|
box-sizing: border-box;
|
|
padding: 12px 16px;
|
|
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 .switch_folders_content,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders .switch_folders_content,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders .switch_folders_content {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding-top: 1px;
|
|
color: white;
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
line-height: 13px;
|
|
background-color: #1E88E5;
|
|
border-radius: 16px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders .switch_folders_content:before,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders .switch_folders_content:before,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders .switch_folders_content:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 14px;
|
|
width: 14px;
|
|
bottom: 1px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.on .switch_folders_content,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.on .switch_folders_content,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.on .switch_folders_content {
|
|
padding-left: 20px;
|
|
background-color: #1E88E5;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.on .switch_folders_content:before,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.on .switch_folders_content:before,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.on .switch_folders_content:before {
|
|
left: 1px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.on:hover .switch_folders_content,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.on:hover .switch_folders_content,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.on:hover .switch_folders_content {
|
|
background-color: #0059ab;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.off .switch_folders_content,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.off .switch_folders_content,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.off .switch_folders_content {
|
|
padding-left: 6px;
|
|
background-color: #808080;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.off .switch_folders_content:before,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.off .switch_folders_content:before,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.off .switch_folders_content:before {
|
|
right: 1px;
|
|
}
|
|
#survey_list .second_line .filters #filterButton#folderSwitch .switch_folders.off:hover .switch_folders_content,
|
|
#survey_list .second_line .filters #sortButton#folderSwitch .switch_folders.off:hover .switch_folders_content,
|
|
#survey_list .second_line .filters #folderSwitch#folderSwitch .switch_folders.off:hover .switch_folders_content {
|
|
background-color: #777777;
|
|
}
|
|
#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: "\f078";
|
|
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: "\f078";
|
|
font-size: 14px;
|
|
color: #333333;
|
|
margin-right: 8px;
|
|
}
|
|
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_icon::before {
|
|
content: "\f07b";
|
|
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: "\f077";
|
|
}
|
|
#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;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
table.variableView {
|
|
width: 100%;
|
|
}
|
|
|
|
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 div.lastnosti_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
gap: 32px;
|
|
}
|
|
div#srv_diagnostic div.lastnosti_wrapper div.lastnosti_left,
|
|
div#srv_diagnostic div.lastnosti_wrapper div.lastnosti_right {
|
|
width: 50%;
|
|
}
|
|
div#srv_diagnostic div.input_box {
|
|
border: 1px solid #C4C4C4;
|
|
width: 300px;
|
|
padding: 10px 0 10px 8px;
|
|
}
|
|
div#srv_diagnostic div.input_box input {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
width: 90%;
|
|
}
|
|
div#srv_diagnostic div.button_holder {
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
}
|
|
div#srv_diagnostic div.button_holder button {
|
|
margin: 0 0 0 8px;
|
|
}
|
|
|
|
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.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: 6px 16px;
|
|
margin-bottom: 16px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #1E88E5;
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
}
|
|
div.page_tema div.theme_list:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
div.page_tema div.theme_list div.theme span.name {
|
|
text-transform: uppercase;
|
|
}
|
|
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;
|
|
}
|
|
div.page_tema div.theme_list div.options div.button {
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 6px 16px;
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
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;
|
|
}
|
|
div.page_tema div.div_theme_group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
box-sizing: border-box;
|
|
}
|
|
div.page_tema div.div_theme_group.custom {
|
|
display: none;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label {
|
|
width: 202px;
|
|
height: 245px;
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #F8F8F8;
|
|
padding: 14px 16px;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_content {
|
|
border-bottom: 1px solid #E5E5E5;
|
|
padding-bottom: 15px;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_content img {
|
|
display: block;
|
|
clear: both;
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
border: none;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_options {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding-top: 16px;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_options div.button {
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 7px 6px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_options div.button span.faicon {
|
|
margin: 0;
|
|
color: #1E88E5;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_options div.button.wtext {
|
|
padding: 5px 16px;
|
|
}
|
|
div.page_tema div.div_theme_group div.theme_label .theme_label_options div.button.wtext span.faicon {
|
|
margin-right: 8px;
|
|
}
|
|
div.page_tema 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;
|
|
}
|
|
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: 0px;
|
|
}
|
|
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%;
|
|
gap: 32px 16px;
|
|
}
|
|
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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
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;
|
|
}
|
|
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 #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;
|
|
}
|
|
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 .divPopUp_top span.faicon {
|
|
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 .divPopUp_top span.faicon: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 {
|
|
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.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: "\f071";
|
|
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;
|
|
}
|
|
div#theme-edit-wrap div#theme-preview iframe #preview {
|
|
display: none;
|
|
}
|
|
|
|
fieldset#theme-upload h2 {
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset#theme-upload h2 span.name {
|
|
text-transform: none;
|
|
}
|
|
|
|
.theme_header {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: #1E88E5;
|
|
}
|
|
.theme_header .bold {
|
|
padding-right: 30px;
|
|
color: #FF0000;
|
|
}
|
|
.theme_header a {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
#div_theme_groups {
|
|
display: inline-block;
|
|
width: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#div_theme_group_holder {
|
|
display: block;
|
|
clear: both;
|
|
height: auto;
|
|
}
|
|
|
|
#div_theme_group.custom .custom_theme_holder {
|
|
width: 420px;
|
|
padding: 3px 10px 3px 10px;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder:hover {
|
|
background-color: #1E88E5;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder .custom_theme_title {
|
|
display: inline;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder .custom_theme_title:hover {
|
|
color: #FF0000;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder span.custom_theme_preview {
|
|
margin-left: 15px;
|
|
float: right;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder span.custom_theme_delete {
|
|
margin-left: 15px;
|
|
float: right;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder span.custom_theme_edit {
|
|
margin-left: 15px;
|
|
float: right;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder.active {
|
|
background-color: white;
|
|
}
|
|
#div_theme_group.custom .custom_theme_holder.active .custom_theme_title {
|
|
color: #FF0000;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#div_theme_fullscreen {
|
|
position: absolute;
|
|
top: 0;
|
|
height: auto;
|
|
width: auto;
|
|
background-color: white;
|
|
border: 9px 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_theme_fullscreen_content {
|
|
padding: 10px;
|
|
margin-bottom: 45px;
|
|
overflow: auto;
|
|
height: auto;
|
|
min-width: 250px;
|
|
min-height: 50px;
|
|
}
|
|
.div_theme_fullscreen_content input {
|
|
width: 300px;
|
|
}
|
|
|
|
.div_theme_fullscreen_btm {
|
|
width: 100%;
|
|
background-color: white;
|
|
border-top: 1px solid #1E88E5;
|
|
height: 25px;
|
|
padding: 10px 0px 10px 0px !important;
|
|
position: fixed;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.custom div.theme_label img {
|
|
width: 100px;
|
|
height: 75px;
|
|
}
|
|
|
|
div.theme_label.span_theme_current img {
|
|
border-color: #FF0000;
|
|
color: #FF0000;
|
|
}
|
|
|
|
#theme-editor-warning {
|
|
font-size: 13px;
|
|
color: #FF0000;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#new_theme_alert {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
width: 400px;
|
|
margin-left: -200px;
|
|
background-color: #FF0000;
|
|
color: white;
|
|
height: 50px;
|
|
text-align: center;
|
|
}
|
|
#new_theme_alert p {
|
|
margin: 0;
|
|
line-height: 50px;
|
|
}
|
|
|
|
.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(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 #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;
|
|
}
|
|
|
|
/*
|
|
Branching ikone, radio, checkboxi...
|
|
*/
|
|
#branching {
|
|
/* font awesom za admin */
|
|
/* select, checked */
|
|
}
|
|
#branching #variable_holder input[type=checkbox].enka-admin-custom,
|
|
#branching #variable_holder input[type=radio].enka-admin-custom {
|
|
display: none !important;
|
|
}
|
|
#branching #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
|
|
#branching #variable_holder 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 #variable_holder input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
|
|
#branching #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;
|
|
}
|
|
#branching #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f096";*/
|
|
content: "\f0c8";
|
|
letter-spacing: 10px;
|
|
}
|
|
#branching #variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
|
|
/*content: "\f10c";*/
|
|
content: "\f111";
|
|
letter-spacing: 8px;
|
|
}
|
|
#branching #variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f046";*/
|
|
content: "\f14a";
|
|
color: #D3D3D3;
|
|
letter-spacing: 8px;
|
|
}
|
|
#branching #variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
|
|
/*content: "\f192";*/
|
|
content: "\f192";
|
|
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% - 705px);
|
|
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% - 505px);
|
|
margin: 0 0 0 104px;
|
|
}
|
|
}
|
|
#branching ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#branching ul li {
|
|
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_icon {
|
|
display: block;
|
|
}
|
|
#branching ul li.nodrop {
|
|
height: 16px;
|
|
}
|
|
#branching ul li.nodrop:hover .pb_new {
|
|
display: flex;
|
|
}
|
|
#branching ul li.nodrop:hover .pb_icon {
|
|
display: block;
|
|
}
|
|
#branching ul li .pb_on,
|
|
#branching ul li .pb_new {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#branching ul li .pb_on.pb_new,
|
|
#branching ul li .pb_new.pb_new {
|
|
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 {
|
|
width: 130px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 16px;
|
|
color: #A9A9A9;
|
|
}
|
|
#branching ul li .pb_on .pb_line,
|
|
#branching ul li .pb_new .pb_line {
|
|
width: 100%;
|
|
height: 1px;
|
|
border-bottom: 1px #D3D3D3 solid;
|
|
}
|
|
#branching ul li .pb_on .pb_icon,
|
|
#branching ul li .pb_new .pb_icon {
|
|
display: none;
|
|
/*&:before{
|
|
content: "A";
|
|
}*/
|
|
}
|
|
#branching li.spr.ui-draggable-dragging {
|
|
z-index: 99999;
|
|
}
|
|
#branching li.drop.branchinghover {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
#branching li.drop.branchinghover a {
|
|
display: none;
|
|
}
|
|
#branching li.nodrop.branchinghover {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
#branching li.nodrop.branchinghover a {
|
|
display: none;
|
|
}
|
|
#branching .variable_name {
|
|
cursor: move;
|
|
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: 64px 0 0 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
|
|
display: flex;
|
|
align-items: baseline;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner > span {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a {
|
|
display: flex;
|
|
align-items: baseline;
|
|
margin: 0 16px 0 0;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
text-decoration: none;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a:hover {
|
|
text-decoration: none;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
.toolbox_holder .toolbox {
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
/*&#toolbox_basic {
|
|
|
|
.toolbox_item.new_if,
|
|
.toolbox_item.new_block{
|
|
background-color: $dark-gray2 !important;
|
|
|
|
&:hover{
|
|
background-color: $dark-gray !important;
|
|
}
|
|
}
|
|
}*/
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item {
|
|
display: flex;
|
|
padding: 0 12px 0 0;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon {
|
|
width: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon:before {
|
|
font-size: 16px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.matrix_32 {
|
|
margin-top: 7px;
|
|
line-height: 9px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.matrix_32:before {
|
|
font-size: 11px !important;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.abc_32, .toolbox_holder .toolbox .toolbox_item .item_icon.number_32 {
|
|
margin-top: -1px;
|
|
line-height: 40px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_icon.abc_32:before, .toolbox_holder .toolbox .toolbox_item .item_icon.number_32:before {
|
|
font-size: 14px !important;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item .item_text {
|
|
font-size: 14px;
|
|
line-height: 40px;
|
|
text-indent: 3px;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item:hover {
|
|
background-color: #E5E5E5;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_adv {
|
|
color: #FFFFFF;
|
|
background-color: #1E88E5;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_adv:hover {
|
|
background-color: #0059ab;
|
|
}
|
|
.toolbox_holder .toolbox .toolbox_item.new_block {
|
|
border-bottom: none;
|
|
}
|
|
.toolbox_holder .toolbox #locked_toolbar {
|
|
position: absolute;
|
|
top: 1px;
|
|
left: 1px;
|
|
width: 45px;
|
|
height: 194px;
|
|
padding: 140px 0 0 3px;
|
|
background: rgba(30, 136, 229, 0.85);
|
|
}
|
|
.toolbox_holder .toolbox #locked_toolbar span.lock_big {
|
|
margin-left: 13px;
|
|
}
|
|
.toolbox_holder .toolbox#toolbox_basic.forma {
|
|
height: 266px;
|
|
top: 235px;
|
|
}
|
|
.toolbox_holder .toolbox#toolbox_basic.forma #locked_toolbar {
|
|
height: 199px;
|
|
padding-top: 85px;
|
|
}
|
|
.toolbox_holder .toolbox#toolbox_advanced_settings .toolbox_item {
|
|
background-color: #D3D3D3 !important;
|
|
}
|
|
.toolbox_holder .toolbox#toolbox_advanced_settings .toolbox_item:hover {
|
|
background-color: #C4C4C4 !important;
|
|
}
|
|
.toolbox_holder .toolbox_expand {
|
|
display: none;
|
|
cursor: auto;
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
z-index: 99;
|
|
top: 220px;
|
|
left: 245px;
|
|
width: 272px;
|
|
color: #333333;
|
|
background: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_title {
|
|
margin: 16px 16px 0 16px;
|
|
padding-bottom: 10px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_title .subtitle {
|
|
display: block;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segments_holder {
|
|
max-height: 450px;
|
|
overflow-y: scroll;
|
|
padding-bottom: 16px;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_title {
|
|
padding: 0 16px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_option {
|
|
cursor: pointer;
|
|
padding: 5px 16px 5px 16px;
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
transition: 0.2s;
|
|
}
|
|
.toolbox_holder .toolbox_expand .toolbox_expand_segment .segment_option:hover {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder {
|
|
width: 300px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment {
|
|
margin-top: 0;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option {
|
|
padding: 7px 16px 7px 16px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a .faicon,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover .faicon {
|
|
margin-right: 8px;
|
|
}
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a .faicon:before,
|
|
.toolbox_holder .toolbox_expand#toolbox_advanced_settings_holder .toolbox_expand_segment .segment_option a:hover .faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview {
|
|
display: none;
|
|
cursor: auto;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
z-index: 9999;
|
|
top: 220px;
|
|
box-sizing: border-box;
|
|
width: 450px;
|
|
max-height: 520px;
|
|
background: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub {
|
|
display: none;
|
|
padding: 16px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub > span {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample {
|
|
overflow: hidden;
|
|
margin-top: 10px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_text {
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option div {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
text-align: center;
|
|
margin-bottom: 3px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 {
|
|
width: 100%;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 div {
|
|
display: block;
|
|
float: left;
|
|
width: 100px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub .tip_sample .tip_sample_option2 span {
|
|
display: block;
|
|
float: left;
|
|
width: 80px;
|
|
text-align: center;
|
|
margin-bottom: 3px;
|
|
width: 60px;
|
|
}
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub input[type=radio],
|
|
.toolbox_holder .toolbox_preview .tip_preview_sub input[type=checkbox] {
|
|
overflow: auto !important;
|
|
padding: auto !important;
|
|
clip: auto !important;
|
|
border: auto !important;
|
|
position: relative;
|
|
width: 16px !important;
|
|
height: 16px !important;
|
|
margin: 0 8px 0 0 !important;
|
|
vertical-align: -1px;
|
|
}
|
|
.toolbox_holder.open {
|
|
width: 240px;
|
|
}
|
|
.toolbox_holder.closed {
|
|
width: 40px;
|
|
}
|
|
.toolbox_holder.closed .toolbox_item {
|
|
height: 40px;
|
|
padding: 0 !important;
|
|
}
|
|
.toolbox_holder.closed .toolbox_item .item_text {
|
|
display: none !important;
|
|
}
|
|
.toolbox_holder.closed .toolbox_expand {
|
|
left: 55px !important;
|
|
}
|
|
@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;
|
|
}
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: none;
|
|
}
|
|
|
|
.mobile_add_question_popup {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 11:04:39
|
|
Author : podkrizniku
|
|
*/
|
|
.nastavitveSpan4 {
|
|
display: table-cell;
|
|
float: left;
|
|
font-weight: 500;
|
|
width: 55%;
|
|
clear: both;
|
|
}
|
|
|
|
.nastavitveSpan5 {
|
|
display: table-cell;
|
|
float: left;
|
|
font-weight: 500;
|
|
width: 25%;
|
|
clear: both;
|
|
}
|
|
|
|
select#skin_anketa {
|
|
max-width: 120px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
select#skin {
|
|
max-width: 120px;
|
|
margin: 4px 0 2px 0;
|
|
}
|
|
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main {
|
|
display: flex;
|
|
/* Leve nastavitve */
|
|
/* Srednji del */
|
|
/* Desne nastavitve */
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings {
|
|
width: 330px;
|
|
min-width: 290px;
|
|
margin: 20px 0 0 0;
|
|
padding: 0;
|
|
line-height: 18px;
|
|
background-color: white;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .more {
|
|
float: right;
|
|
margin: 5px 20px 10px 0;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .less {
|
|
float: right;
|
|
margin: 5px 20px 10px 0;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_holder {
|
|
height: 35px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
background-color: #1E88E5;
|
|
width: 100%;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_content {
|
|
padding: 8px 0px 7px 0px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings .header_content .header_left {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
width: auto;
|
|
float: left;
|
|
padding-left: 10px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings fieldset {
|
|
margin: 11px 10px;
|
|
padding: 3px 5px;
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #glas_settings legend {
|
|
margin: 0;
|
|
padding: 0 10px 0 5px;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: #1E88E5;
|
|
font-weight: 500;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder {
|
|
margin: 85px 0 0 20px;
|
|
max-width: 1100px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje {
|
|
padding: 3px;
|
|
min-height: 400px;
|
|
width: calc(96% - 315px);
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul.first {
|
|
margin: 1px 0 0 0 !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul li {
|
|
margin-left: 0px !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #placeholder #vprasanje_float_editing {
|
|
margin-top: 45px !important;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder {
|
|
position: absolute;
|
|
right: calc(3% + 5px);
|
|
margin-left: -5px;
|
|
top: 222px;
|
|
height: auto;
|
|
width: 310px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings {
|
|
padding: 5px 15px;
|
|
width: 315px;
|
|
box-sizing: border-box;
|
|
float: right;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings fieldset {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings .form_bottom_settings {
|
|
margin: 0 8px 10px 8px;
|
|
padding: 0 0 5px 10px;
|
|
background-color: inherit;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje {
|
|
padding: 1px 0 10px 10px;
|
|
}
|
|
#anketa_edit.page_.subpage_.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
|
|
padding: 2px;
|
|
border: 0;
|
|
background-color: #FFC700;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 13:34:26
|
|
Author : podkrizniku
|
|
*/
|
|
#branching.expanded.branching_forma ul.first {
|
|
margin-top: 59px !important;
|
|
}
|
|
#branching.expanded.branching_forma ul.first li.empty_vrivanje {
|
|
margin-top: -45px !important;
|
|
}
|
|
|
|
#branching.collapsed.branching_forma ul.first {
|
|
margin-top: 66px !important;
|
|
}
|
|
|
|
#anketa_edit.forma #quick_settings_holder {
|
|
position: absolute;
|
|
right: 5%;
|
|
top: 235px;
|
|
height: auto;
|
|
width: 310px;
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings {
|
|
padding: 5px 15px;
|
|
width: 315px;
|
|
box-sizing: border-box;
|
|
float: right;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings fieldset {
|
|
border: 1px #E5E5E5 solid;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings .form_bottom_settings {
|
|
margin: 0 8px 10px 8px;
|
|
padding: 0 0 5px 10px;
|
|
background-color: inherit;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje {
|
|
padding: 1px 0 10px 10px;
|
|
}
|
|
#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
|
|
padding: 2px;
|
|
border: 0;
|
|
background-color: #FFC700;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 03-Aug-2018, 13:12:19
|
|
Author : podkrizniku
|
|
*/
|
|
.editmenu {
|
|
float: right;
|
|
margin: 2px 0px 0px 0px;
|
|
padding: 2px;
|
|
padding-right: 10px;
|
|
border: 0;
|
|
position: static;
|
|
}
|
|
|
|
.extra_opt {
|
|
margin-right: 10px;
|
|
}
|
|
.extra_opt a {
|
|
color: black;
|
|
text-decoration: none;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.save_button {
|
|
float: right;
|
|
margin: 10px 0px;
|
|
padding-right: 10px;
|
|
z-index: 50;
|
|
}
|
|
|
|
li.spr div.edit_mode {
|
|
display: none;
|
|
}
|
|
li.spr div.preview_mode {
|
|
display: block;
|
|
}
|
|
li.spr thead.edit_mode {
|
|
display: none;
|
|
}
|
|
li.spr .editingOnly {
|
|
visibility: hidden;
|
|
}
|
|
li.spr span.inline_other {
|
|
display: none;
|
|
}
|
|
li.spr #variabla_new span.inline_other {
|
|
display: inline;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
div[contenteditable][default="1"][vre_id=new] {
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
div.stolpci {
|
|
float: left;
|
|
}
|
|
div.stolpci span.inline_delete {
|
|
display: none;
|
|
}
|
|
div.stolpci span.inline_edit {
|
|
display: none;
|
|
}
|
|
|
|
div#variabla_new span.inline_move {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_edit {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_delete {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_if_follow {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_if_not {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.inline_hidden {
|
|
visibility: hidden;
|
|
}
|
|
div#variabla_new span.correct {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.show-hidden {
|
|
visibility: visible !important;
|
|
}
|
|
|
|
.show-disable {
|
|
visibility: visible !important;
|
|
}
|
|
|
|
.show-correct {
|
|
visibility: visible !important;
|
|
color: #1e88e5 !important;
|
|
}
|
|
|
|
.show-correct:before {
|
|
visibility: visible !important;
|
|
color: #33cc33 !important;
|
|
}
|
|
|
|
#vprasanje {
|
|
display: none;
|
|
position: fixed;
|
|
top: 5%;
|
|
bottom: 5%;
|
|
right: 3%;
|
|
width: 80%;
|
|
z-index: 80;
|
|
padding: 10px;
|
|
}
|
|
|
|
.branch {
|
|
margin: 0px 0px 0px 0px;
|
|
padding: 0px 0px 0px 0px;
|
|
}
|
|
|
|
#div_status_values {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 90;
|
|
top: 20px;
|
|
right: 30px;
|
|
width: 720px;
|
|
padding: 10px;
|
|
border: 1px solid #FF0000;
|
|
background-color: #E5E5E5;
|
|
}
|
|
#div_status_values fieldset {
|
|
border: 0;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
#div_status_values legend {
|
|
background-color: #1E88E5;
|
|
}
|
|
|
|
._branch {
|
|
padding: 0px !important;
|
|
margin: 0px !important;
|
|
}
|
|
|
|
/*question 5_2 - chat*/
|
|
.tawk-chat-activation.button {
|
|
margin: 8px 10px;
|
|
padding: 6px 8px;
|
|
float: left;
|
|
color: white;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
border-radius: 4px;
|
|
}
|
|
.tawk-chat-activation.button:hover {
|
|
background-color: #FFC700;
|
|
border: 1px solid #FFC700;
|
|
}
|
|
|
|
/*bottom links*/
|
|
.forma_bottom {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 30px;
|
|
padding: 40px 10px 20px 45px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.forma_bottom_inner {
|
|
display: inline-block;
|
|
}
|
|
|
|
.forma_bottom_inner.changes {
|
|
float: left;
|
|
width: 220px;
|
|
}
|
|
.forma_bottom_inner.changes table tr td {
|
|
padding: 0 5px 0 0;
|
|
}
|
|
|
|
.forma_bottom_inner.links {
|
|
float: right;
|
|
font-size: 12px;
|
|
}
|
|
.forma_bottom_inner.links a {
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.kviz-editing-correct::before {
|
|
color: #33cc33 !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 06-Aug-2018, 11:37:12
|
|
Author : podkrizniku
|
|
*/
|
|
#branching.collapsed {
|
|
min-height: 317px;
|
|
margin-top: 10px;
|
|
}
|
|
#branching.collapsed li.spr {
|
|
line-height: 28px;
|
|
}
|
|
#branching.collapsed li.spr:hover {
|
|
background-color: #1E88E5;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.spr div.spr_edit {
|
|
padding-top: 0px;
|
|
margin-top: 0px;
|
|
margin-right: 10px;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing {
|
|
line-height: inherit;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing:hover {
|
|
background: none;
|
|
cursor: auto;
|
|
}
|
|
#branching.collapsed li.spr.spr_editing div.spr_edit {
|
|
padding-top: 2px;
|
|
margin-top: 5px;
|
|
margin-right: 30px;
|
|
}
|
|
#branching.collapsed li.drop {
|
|
height: 6px;
|
|
margin: 2px 0px 2px 50px;
|
|
margin: 0px 0 0px 40px;
|
|
padding: 2px 0px 2px 10px;
|
|
border-left: 2.5px solid transparent;
|
|
}
|
|
#branching.collapsed li.drop span.pb_on {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
#branching.collapsed li.drop span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.drop span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.drop:hover span.pb_on {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.drop:hover span.pb_new {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop {
|
|
height: 6px;
|
|
margin: 2px 0px 2px 50px;
|
|
margin: 0px 0 0px 40px;
|
|
padding: 2px 0px 2px 0px;
|
|
border-left: 2.5px solid transparent;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_on {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
text-align: right;
|
|
font-size: 10px;
|
|
color: #E5E5E5;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_off {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.nodrop span.pb_new {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 10px;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.pb_on {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.pb_new {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
|
|
cursor: pointer;
|
|
}
|
|
#branching.collapsed li.nodrop:hover span.permanent {
|
|
background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
|
|
cursor: default;
|
|
}
|
|
#branching.collapsed div.if_remove {
|
|
padding-top: 0px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
/*
|
|
Urejanje vprasanja - nastavitve na desni
|
|
*/
|
|
.texteditor {
|
|
width: 98% !important;
|
|
height: 50px;
|
|
margin-top: 0;
|
|
border: 1px solid #cccccc;
|
|
}
|
|
|
|
.texteditor.info {
|
|
height: 14px;
|
|
line-height: 14px;
|
|
width: 100%;
|
|
}
|
|
|
|
#vprasanje_float_editing {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 70;
|
|
align-self: flex-start;
|
|
padding: 0 32px 0 64px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
width: 305px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_header {
|
|
height: 45px;
|
|
padding: 0 7px;
|
|
color: #FFFFFF;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 45px;
|
|
background-color: #1E88E5;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs {
|
|
z-index: 100;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
width: 100%;
|
|
height: 45px;
|
|
margin-bottom: 16px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 45px;
|
|
padding: 0 5px;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link.active {
|
|
background-color: #FFFFFF;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link.active span {
|
|
color: #333333;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_tabs .tab_link span {
|
|
height: 25px;
|
|
line-height: 25px;
|
|
font-size: 13px;
|
|
color: #777777;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder #vprasanje_edit {
|
|
margin: 0 16px;
|
|
background-color: white;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .button_holder {
|
|
margin: 0 16px 10px 16px;
|
|
padding-top: 8px;
|
|
border-top: 1px #D3D3D3 solid;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-top: 1px solid #D3D3D3;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder fieldset legend {
|
|
margin: 0;
|
|
padding: 0 10px 0 0;
|
|
color: #333333;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
text-transform: none;
|
|
background-color: transparent;
|
|
}
|
|
#vprasanje_float_editing .vprasanje_edit_holder .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 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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:54:23
|
|
Author : podkrizniku
|
|
*/
|
|
/*
|
|
Branching element z vprasanjem
|
|
*/
|
|
.editor_display {
|
|
width: 98%;
|
|
background-color: #eee;
|
|
border: 1px solid #cccccc;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.editor_display_small {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.spremenljivka {
|
|
width: 100%;
|
|
}
|
|
|
|
.add-variable-mobile {
|
|
display: none;
|
|
}
|
|
|
|
.add-variable {
|
|
display: none;
|
|
position: absolute;
|
|
left: 59px;
|
|
bottom: 4px;
|
|
}
|
|
.add-variable span {
|
|
position: relative;
|
|
top: 1px;
|
|
margin-right: 5px !important;
|
|
}
|
|
.add-variable a {
|
|
color: #1E88E5;
|
|
}
|
|
.add-variable a:hover {
|
|
color: #FFC700;
|
|
}
|
|
.add-variable .tip_6 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_16 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_19 {
|
|
left: 52px;
|
|
}
|
|
.add-variable .tip_20 {
|
|
left: 52px;
|
|
}
|
|
|
|
.locked .add-variable {
|
|
display: none !important;
|
|
}
|
|
|
|
.icons_holder {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
li.spr {
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit {
|
|
cursor: pointer;
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 0;
|
|
right: 0;
|
|
color: #333333;
|
|
height: 45px;
|
|
padding: 10px 14px;
|
|
}
|
|
li.spr .spr_edit a {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
width: 20px;
|
|
height: 20px;
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit a:before, li.spr .spr_edit a:after {
|
|
color: #333333;
|
|
}
|
|
li.spr .spr_edit a .arhiv {
|
|
background-position: -16px -30px;
|
|
}
|
|
li.spr .spr_edit a .hide {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
li.spr .spr_edit span.scale_ordnom {
|
|
vertical-align: 2px;
|
|
margin-right: 20px;
|
|
}
|
|
li.spr .spr_edit span.scale_ordnom a,
|
|
li.spr .spr_edit span.scale_ordnom span {
|
|
display: inline-block;
|
|
height: 20px;
|
|
width: auto;
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
li.spr:hover .spr_edit {
|
|
display: block;
|
|
}
|
|
li.spr .spremenljivka_content {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
color: #333333;
|
|
background-color: white;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content:hover {
|
|
background-color: white;
|
|
}
|
|
li.spr .spremenljivka_content:hover .add-variable {
|
|
display: block;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 45px;
|
|
padding-left: 14px;
|
|
background-color: #F8F8F8;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .variable_name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
color: #333333;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings {
|
|
display: flex;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings span,
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings div {
|
|
padding-left: 16px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_settings .spr_settings .lock_holder {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 6px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode {
|
|
position: relative;
|
|
padding: 24px 32px 32px 32px;
|
|
overflow: hidden;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .naslov {
|
|
display: block;
|
|
width: 100%;
|
|
min-width: 100px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla {
|
|
padding: 0;
|
|
min-height: 20px;
|
|
margin: 8px 0 0 0;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla .move_updown_orange {
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla input {
|
|
float: left;
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .vrednost_inline {
|
|
float: left;
|
|
width: calc(100% - 190px);
|
|
/*max-width: 80%;
|
|
min-width: 160px;*/
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder select {
|
|
margin-top: 5px;
|
|
}
|
|
li.spr .spremenljivka_content .content_div_normalmode .variable_holder .variabla_limit {
|
|
width: auto !important;
|
|
color: #1E88E5;
|
|
margin-top: 6px;
|
|
display: inline-block;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form {
|
|
position: relative;
|
|
padding: 24px 32px 32px 32px;
|
|
}
|
|
li.spr .spremenljivka_content .spremenljivka_tekst_form .naslov {
|
|
display: block;
|
|
width: auto;
|
|
min-width: 100px;
|
|
}
|
|
li.spr .spremenljivka_content h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content h3 p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content form {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
li.spr .spremenljivka_content p {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
padding: 3px;
|
|
}
|
|
li.spr .spremenljivka_content input {
|
|
vertical-align: text-top;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline,
|
|
li.spr .spremenljivka_content .vrednost_inline,
|
|
li.spr .spremenljivka_content .naslov,
|
|
li.spr .spremenljivka_content .info_inline {
|
|
box-sizing: border-box;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline p,
|
|
li.spr .spremenljivka_content .vrednost_inline p,
|
|
li.spr .spremenljivka_content .naslov p,
|
|
li.spr .spremenljivka_content .info_inline p {
|
|
padding: 0;
|
|
font-size: 14px;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline.info_inline,
|
|
li.spr .spremenljivka_content .vrednost_inline.info_inline,
|
|
li.spr .spremenljivka_content .naslov.info_inline,
|
|
li.spr .spremenljivka_content .info_inline.info_inline {
|
|
font-size: 12px;
|
|
}
|
|
li.spr .spremenljivka_content .grid_inline.info_inline p,
|
|
li.spr .spremenljivka_content .vrednost_inline.info_inline p,
|
|
li.spr .spremenljivka_content .naslov.info_inline p,
|
|
li.spr .spremenljivka_content .info_inline.info_inline p {
|
|
font-size: 12px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable] {
|
|
cursor: text;
|
|
min-height: 26px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true] {
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true]:hover {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content div[contenteditable=true]:focus {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
li.spr .spremenljivka_content .display_editor {
|
|
cursor: pointer;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
right: 40px;
|
|
top: 25px;
|
|
}
|
|
|
|
li.spr_editing .spr_edit {
|
|
display: block;
|
|
}
|
|
li.spr_editing .spr_edit a,
|
|
li.spr_editing .spr_edit span {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spr_edit a:before, li.spr_editing .spr_edit a:after,
|
|
li.spr_editing .spr_edit span:before,
|
|
li.spr_editing .spr_edit span:after {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content {
|
|
background-color: white;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings {
|
|
color: white !important;
|
|
background-color: #1E88E5 !important;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings .spr_settings span.red {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_settings #spr_settings_intro_concl div.red {
|
|
color: white !important;
|
|
}
|
|
li.spr_editing .spremenljivka_content .content_div_normalmode {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .comment_container_inline {
|
|
border-top: none;
|
|
border-left: 1px solid #1E88E5;
|
|
border-right: 1px solid #1E88E5;
|
|
border-bottom: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .spremenljivka_tekst_form {
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
li.spr_editing .spremenljivka_content .add-variable {
|
|
display: none;
|
|
}
|
|
li.spr_editing .content_div_normalmode {
|
|
padding-bottom: 10px;
|
|
}
|
|
li.spr_editing .grid-plus-minus {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing .sub-table {
|
|
display: table-row;
|
|
}
|
|
li.spr_editing div[contenteditable][default="1"] {
|
|
color: #333333;
|
|
}
|
|
li.spr_editing .variable_name {
|
|
color: #FFFFFF !important;
|
|
}
|
|
|
|
.variable_holder.clr {
|
|
height: auto;
|
|
}
|
|
|
|
div.spremenljivka_content.orientation_ob .variable_holder {
|
|
clear: none;
|
|
}
|
|
div.spremenljivka_content.orientation_ob div.variabla {
|
|
clear: none;
|
|
}
|
|
|
|
div.spremenljivka_content h3 p {
|
|
padding: 3px 3px 3px 3px;
|
|
margin: 0;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
margin: 0;
|
|
}
|
|
div.spremenljivka_content span.inline {
|
|
visibility: hidden;
|
|
cursor: pointer;
|
|
float: left;
|
|
}
|
|
div.spremenljivka_content span.inline_edit {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_delete {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_if_not {
|
|
float: right;
|
|
margin: 0 3px 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_if_follow {
|
|
float: right;
|
|
margin: 0 3px 0 3px;
|
|
}
|
|
div.spremenljivka_content span.inline_hidden {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
div.spremenljivka_content span.correct {
|
|
float: right;
|
|
margin: 0 3px;
|
|
}
|
|
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_ob .variable_holder {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_ob div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr.spr_editing div.edit_mode {
|
|
display: block;
|
|
}
|
|
li.spr.spr_editing td.preview_mode {
|
|
display: none;
|
|
}
|
|
li.spr.spr_editing thead.edit_mode {
|
|
display: table-header-group;
|
|
}
|
|
li.spr.spr_editing .editingOnly {
|
|
visibility: visible;
|
|
}
|
|
li.spr.spr_editing div.spremenljivka_content.orientation_pod div.variabla {
|
|
clear: both;
|
|
}
|
|
li.spr.spr_editing div.stolpci {
|
|
float: none;
|
|
width: auto !important;
|
|
}
|
|
li.spr.spr_editing div.stolpci span.inline_delete {
|
|
display: block;
|
|
}
|
|
li.spr.spr_editing div.stolpci span.inline_edit {
|
|
display: block;
|
|
}
|
|
|
|
.spremenljivka_info {
|
|
font-size: 9px;
|
|
color: #666666;
|
|
padding: 2px;
|
|
clear: both;
|
|
padding: 2px 15px;
|
|
}
|
|
|
|
div.variable_inline {
|
|
display: none;
|
|
float: left;
|
|
width: 30px;
|
|
padding: 2px 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.spr.spr_editing span.display_editor {
|
|
visibility: visible;
|
|
}
|
|
|
|
.spr span.display_editor.show {
|
|
visibility: visible;
|
|
}
|
|
|
|
div.spremenljivka_content.orientation_pod div.variabla {
|
|
clear: none;
|
|
}
|
|
|
|
li.spr_editing div.spremenljivka_content div.variabla span.inline {
|
|
visibility: visible;
|
|
}
|
|
li.spr_editing table.grid_header_table span.inline {
|
|
visibility: visible;
|
|
}
|
|
|
|
li div.spremenljivka_content div.variabla span.inline.show {
|
|
visibility: visible;
|
|
}
|
|
li div.spremenljivka_content span.inline_move {
|
|
margin: 2px 8px 0 3px;
|
|
}
|
|
li div.spremenljivka_content span.image_upload {
|
|
margin-top: 4px;
|
|
margin-left: 8px;
|
|
margin-right: 4px;
|
|
float: left;
|
|
}
|
|
|
|
table.text_vrednost {
|
|
text-align: center;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.variable {
|
|
color: #E5E5E5;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.comment_container_inline {
|
|
margin: 0px;
|
|
padding: 4px 15px;
|
|
background-color: #1E88E5;
|
|
border-top: 1px solid #1E88E5;
|
|
}
|
|
.comment_container_inline a.surveycomment {
|
|
font-size: 10px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:52:29
|
|
Author : podkrizniku
|
|
*/
|
|
.slider {
|
|
display: inline-block;
|
|
width: 84.5%;
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
.slider .ui-state-default {
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
.slider .ui-state-hover {
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.sliderText {
|
|
visibility: hidden;
|
|
position: relative;
|
|
text-align: center;
|
|
color: #E5E5E5;
|
|
width: 30px;
|
|
height: 15px;
|
|
padding: 3px;
|
|
margin-top: 7px;
|
|
background: #E5E5E5;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
border: #E5E5E5 solid 1px;
|
|
}
|
|
.sliderText:after {
|
|
content: "";
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-width: 9px 7px 0;
|
|
border-color: #E5E5E5 transparent;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 1;
|
|
bottom: -9px;
|
|
left: 11px;
|
|
}
|
|
.sliderText:before {
|
|
content: "";
|
|
position: absolute;
|
|
border-style: solid;
|
|
border-width: 9px 7px 0;
|
|
border-color: #E5E5E5 transparent;
|
|
display: block;
|
|
width: 0;
|
|
z-index: 0;
|
|
bottom: -10px;
|
|
left: 11px;
|
|
}
|
|
|
|
.classic_slider .ui-slider-handle {
|
|
width: 9px !important;
|
|
height: 14px !important;
|
|
padding: 5px 0;
|
|
margin-left: -5px !important;
|
|
top: -7px !important;
|
|
border-bottom-right-radius: 10px 30px !important;
|
|
border-bottom-left-radius: 10px 30px !important;
|
|
}
|
|
|
|
.special_slider .ui-slider-handle {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
margin-left: -8px !important;
|
|
top: -3px !important;
|
|
border-radius: 10px 10px !important;
|
|
background-color: red !important;
|
|
}
|
|
|
|
.circle_slider .ui-slider-pip .ui-slider-line {
|
|
width: 15px !important;
|
|
height: 15px !important;
|
|
border-radius: 10px 10px !important;
|
|
margin-left: -8px !important;
|
|
background: #E5E5E5 !important;
|
|
top: -23px !important;
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.elipse_slider .ui-slider-pip .ui-slider-line {
|
|
width: 13px !important;
|
|
height: 30px !important;
|
|
border-radius: 10px 10px !important;
|
|
margin-left: -7px !important;
|
|
background: #E5E5E5 !important;
|
|
top: -31px !important;
|
|
border: 1px solid #E5E5E5 !important;
|
|
}
|
|
.elipse_slider .ui-slider-handle {
|
|
width: 9px !important;
|
|
height: 14px !important;
|
|
padding: 5px 0;
|
|
margin-left: -5px !important;
|
|
top: -7px !important;
|
|
border-bottom-right-radius: 10px 30px !important;
|
|
border-bottom-left-radius: 10px 30px !important;
|
|
}
|
|
|
|
.label_podrocje_prikaz {
|
|
border-bottom: 1px solid black !important;
|
|
border-left: 1px solid black !important;
|
|
border-right: 1px solid black !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:58:50
|
|
Author : podkrizniku
|
|
*/
|
|
.naslov.calculation {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
#arrows_more_calculation {
|
|
position: absolute;
|
|
bottom: 40px;
|
|
padding: 5px 0;
|
|
margin-left: 43%;
|
|
width: 10%;
|
|
cursor: pointer;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #E5E5E5;
|
|
display: none;
|
|
text-align: center;
|
|
}
|
|
|
|
#bottom_space {
|
|
padding: 0;
|
|
}
|
|
|
|
#calculation_editing_calculations {
|
|
/*min-height: 40px;*/
|
|
padding: 0 0 10px 0;
|
|
}
|
|
#calculation_editing_calculations span.calculations_display {
|
|
font-size: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 12:59:20
|
|
Author : podkrizniku
|
|
*/
|
|
.naslov.quota {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
/*popup edit*/
|
|
#quota {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 91;
|
|
height: auto;
|
|
width: 600px;
|
|
}
|
|
#quota #quota_editing_inner {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 50px;
|
|
overflow: auto;
|
|
}
|
|
#quota #condition_editing_close {
|
|
float: right;
|
|
margin-right: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
#quota #bottom_space {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#quota_editing_quotas {
|
|
min-height: 40px;
|
|
padding: 10px;
|
|
}
|
|
#quota_editing_quotas span.quota_display {
|
|
font-size: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:00:32
|
|
Author : podkrizniku
|
|
*/
|
|
.spremenljivka_content[tip="24"] .variable_holder {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.grid_header_table {
|
|
width: 100%;
|
|
text-align: center;
|
|
border-collapse: collapse;
|
|
}
|
|
.grid_header_table td.grid_header {
|
|
height: 18px;
|
|
}
|
|
.grid_header_table tbody tr td {
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) td {
|
|
background-color: #F8F8F8;
|
|
}
|
|
.grid_header_table tbody tr:nth-child(odd) td div[contenteditable=true] {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.grid_header {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.grid_question {
|
|
width: 20%;
|
|
text-align: left;
|
|
padding-right: 1%;
|
|
}
|
|
|
|
.col_border {
|
|
border-left: 1px solid #E5E5E5;
|
|
}
|
|
|
|
.grid-plus-minus {
|
|
text-align: right;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.sub-table {
|
|
display: none;
|
|
}
|
|
|
|
div.grid_inline {
|
|
min-width: 20px;
|
|
padding: 2px 0;
|
|
}
|
|
|
|
div.grid_inline_droppable_title {
|
|
height: 15px !important;
|
|
width: 230px;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
border-top: 1px black dashed !important;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
text-align: center;
|
|
}
|
|
|
|
div.grid_inline_droppable_title_box {
|
|
height: 15px !important;
|
|
width: 230px;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
li table.grid_header_table span.inline.show {
|
|
visibility: visible;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="6"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="16"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="19"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="20"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
div.spremenljivka_content[tip="24"] span.inline_move {
|
|
position: absolute;
|
|
left: 30px;
|
|
}
|
|
|
|
table.grid_header_table span.inline_delete {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 5px;
|
|
margin-right: 57px;
|
|
margin-right: 0px;
|
|
}
|
|
table.grid_header_table span.inline_edit {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
table.grid_header_table span.inline_if_not {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
margin-right: 32px;
|
|
}
|
|
table.grid_header_table span.inline_if_follow {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
table.grid_header_table span.inline_hidden {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
margin-right: 14px;
|
|
}
|
|
table.grid_header_table span.correct {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
right: 7px;
|
|
margin-right: 57px;
|
|
}
|
|
|
|
.trak_class {
|
|
border: 1px solid #E5E5E5;
|
|
cursor: pointer;
|
|
background: white !important;
|
|
}
|
|
|
|
.trak_class_input {
|
|
visibility: hidden !important;
|
|
display: block;
|
|
z-index: -1;
|
|
}
|
|
|
|
.radio-button-label {
|
|
cursor: pointer !important;
|
|
z-index: -2;
|
|
}
|
|
|
|
.trak_container_bg {
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
|
|
table.trak_inline_nadnaslov td {
|
|
text-align: center !important;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:02:29
|
|
Author : podkrizniku
|
|
*/
|
|
.variabla_vsota {
|
|
padding: 0px 5px;
|
|
width: 25%;
|
|
text-align: right;
|
|
}
|
|
.variabla_vsota input {
|
|
margin-left: 10px;
|
|
margin-top: 2px !important;
|
|
}
|
|
|
|
.vrednost_inline_vsota {
|
|
float: left;
|
|
box-sizing: border-box;
|
|
width: 200px;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 15px 2px 18px !important;
|
|
margin-left: 12px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.variabla_vsota_inline {
|
|
float: left;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 15px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
/* Zadnja vrsticas pri urejanju vsote - "skupaj" */
|
|
table.variabla_vsota {
|
|
clear: both;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
display: block;
|
|
width: auto;
|
|
}
|
|
table.variabla_vsota tr td.text {
|
|
border-top: 1px black solid;
|
|
}
|
|
table.variabla_vsota tr td.text .variabla_vsota_sum {
|
|
margin-left: 18px;
|
|
}
|
|
table.variabla_vsota tr td.text .variabla_vsota_sum div {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.variabla_vsota tr td.input {
|
|
border-top: 1px black solid;
|
|
}
|
|
table.variabla_vsota tr td.input input {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 07-Aug-2018, 13:07:51
|
|
Author : podkrizniku
|
|
*/
|
|
span.display_editor_image_hotspot {
|
|
position: absolute;
|
|
right: 100px;
|
|
top: 11px;
|
|
cursor: pointer;
|
|
visibility: visible;
|
|
}
|
|
|
|
.hotspot span.inline_delete_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 485px !important;
|
|
}
|
|
.hotspot span.inline_edit_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
}
|
|
.hotspot span.inline_if_not_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 535px !important;
|
|
}
|
|
.hotspot span.inline_if_follow_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
}
|
|
.hotspot span.inline_hidden_hotspot {
|
|
position: absolute !important;
|
|
right: 3px;
|
|
margin-right: 0px;
|
|
cursor: pointer !important;
|
|
margin-right: 510px !important;
|
|
}
|
|
|
|
.inline_edit_hotspot {
|
|
display: inline-block;
|
|
width: 32px;
|
|
height: 32px;
|
|
background-image: url(../../../admin/survey/img_new/icons_hidpi.png);
|
|
background-position: 0px -1874px;
|
|
}
|
|
|
|
canvas.hotspot_canvas {
|
|
position: absolute;
|
|
top: 15px !important;
|
|
left: 10px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hotspot_image_editor {
|
|
position: relative;
|
|
top: 15px !important;
|
|
z-index: 1;
|
|
}
|
|
|
|
div.hotspot_vrednost_inline {
|
|
float: left;
|
|
max-width: 80%;
|
|
min-width: 160px;
|
|
padding: 2px 2px;
|
|
border: 1px solid #E5E5E5;
|
|
margin: 2px;
|
|
background: white;
|
|
}
|
|
|
|
.inline_hotspot_edit_region {
|
|
margin-top: 4px !important;
|
|
margin-bottom: 4px !important;
|
|
}
|
|
|
|
.inline_hotspot_delete_region {
|
|
margin-top: 3px !important;
|
|
margin-bottom: 3px !important;
|
|
}
|
|
|
|
div.vrednost_inline_hotspot {
|
|
float: left;
|
|
}
|
|
div.vrednost_inline_hotspot img {
|
|
float: left;
|
|
}
|
|
|
|
#hotspot_edit {
|
|
display: none;
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 50%;
|
|
z-index: 89;
|
|
min-height: 130px;
|
|
margin-top: -100px;
|
|
margin-left: -300px;
|
|
padding: 0 10px 10px 10px;
|
|
background-color: white;
|
|
border: 4px solid #333333;
|
|
box-shadow: 0 0 20px black;
|
|
-moz-box-shadow: 0 0 20px black;
|
|
-webkit-box-shadow: 0 0 20px black;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Aug-2018, 12:30:57
|
|
Author : podkrizniku
|
|
*/
|
|
.razvrscanje_preview {
|
|
border: 1px solid #E5E5E5;
|
|
background-color: silver;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
display: block;
|
|
}
|
|
|
|
.razvrscanje_preview_frame {
|
|
border: 1px dashed #E5E5E5;
|
|
background-color: #E5E5E5;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
height: 13px;
|
|
display: block;
|
|
text-indent: -20px;
|
|
}
|
|
|
|
.dragdrop_preview_frame {
|
|
border: 1px dashed #E5E5E5;
|
|
background-color: #E5E5E5;
|
|
padding: 4px;
|
|
margin: 5px 0px;
|
|
width: 350px;
|
|
height: 90px;
|
|
display: block;
|
|
text-indent: -20px;
|
|
}
|
|
|
|
.dragdrop_preview_frame_grid {
|
|
font-size: 14px;
|
|
width: 150px !important;
|
|
height: 25px;
|
|
padding: 0 0 2px 0;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_preview_frame_grid_title {
|
|
height: 15px !important;
|
|
width: 150px !important;
|
|
padding: 2px 0 5 0;
|
|
margin: 0px auto 0px auto;
|
|
border-top: 1px black dashed !important;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
text-align: center;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 10-Aug-2018, 13:19:50
|
|
Author : podkrizniku
|
|
*/
|
|
.ranking {
|
|
font-size: 14px;
|
|
width: 220px;
|
|
height: 25px;
|
|
padding: 5px 0 0 0;
|
|
margin: 15px auto 0 auto;
|
|
border: 1px solid #000;
|
|
background-color: #E5E5E5;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
.ranking img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.ranking_long {
|
|
font-size: 14px;
|
|
width: 220px;
|
|
height: 25px;
|
|
padding: 5px 0 0 0;
|
|
margin: 15px auto 0 auto;
|
|
border: 1px solid #000;
|
|
background-color: #E5E5E5;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.ranking_frame {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 29px;
|
|
padding: 5px 0 0 0;
|
|
margin: 10px auto 0 auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 100px;
|
|
padding: 5px 0 0 0;
|
|
margin: 10px auto 0 auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame_grid {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 25px;
|
|
padding: 0 0 2px 0;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px black dashed;
|
|
background-color: #E5E5E5;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.dragdrop_frame_grid_box {
|
|
font-size: 14px;
|
|
width: 230px;
|
|
height: 30px;
|
|
padding: 0 0 2px 0;
|
|
margin: 10px auto 0px auto;
|
|
border-left: 1px black dashed !important;
|
|
border-right: 1px black dashed !important;
|
|
border-bottom: 1px black dashed !important;
|
|
text-indent: -20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.drag_and_drop_box {
|
|
cursor: pointer;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px solid #000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px solid #000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
}
|
|
.drag_and_drop_box img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.drag_and_drop {
|
|
top: -6px;
|
|
left: -6px;
|
|
}
|
|
|
|
.drag_and_drop_right {
|
|
top: -6px !important;
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right {
|
|
top: 15px !important;
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right_after_refresh {
|
|
left: -6px !important;
|
|
}
|
|
|
|
.drag_and_drop_box_right_over {
|
|
left: -6px !important;
|
|
}
|
|
|
|
.inline_labele_podrocij {
|
|
text-align: center !important;
|
|
}
|
|
|
|
table.inline_labele_podrocij td {
|
|
text-align: center !important;
|
|
}
|
|
|
|
/*radio with image*/
|
|
.custom_radio .custom_radio_answer {
|
|
padding: 0 1px;
|
|
}
|
|
|
|
.custom_radio.visual-radio-scale .custom_radio_answer {
|
|
padding: 0 3px;
|
|
}
|
|
.custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before {
|
|
color: #1E88E5;
|
|
}
|
|
|
|
.enka-vizualna-skala {
|
|
display: inline-block;
|
|
height: 20px;
|
|
width: 20px;
|
|
float: left;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 20-Aug-2018, 11:13:15
|
|
Author : podkrizniku
|
|
*/
|
|
/*GOOGLE MAPS*/
|
|
.pac-input {
|
|
background-color: white;
|
|
font-family: Roboto;
|
|
font-size: 1.2em;
|
|
font-weight: 300;
|
|
margin-left: 0 px;
|
|
padding: 0 11px 0 13px;
|
|
text-overflow: ellipsis;
|
|
width: 17em;
|
|
border: 1px solid transparent;
|
|
border-radius: 2px 0 0 2px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
margin-top: 10px;
|
|
outline: medium none;
|
|
}
|
|
|
|
.boxsizingBorder {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.maps-delete-menu {
|
|
position: absolute;
|
|
background: white;
|
|
padding: 3px;
|
|
color: #E5E5E5;
|
|
font-weight: bold;
|
|
border: 1px solid #E5E5E5;
|
|
font-family: sans-serif;
|
|
font-size: 12px;
|
|
box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
|
|
margin-top: -10px;
|
|
margin-left: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.maps-delete-menu:hover {
|
|
background: #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 20-Aug-2018, 11:15:47
|
|
Author : podkrizniku
|
|
*/
|
|
.fotoresults_div {
|
|
float: right;
|
|
}
|
|
|
|
.my_camera_div {
|
|
float: left;
|
|
}
|
|
|
|
.my_camera {
|
|
border: 1px solid;
|
|
}
|
|
|
|
.record_foto {
|
|
display: block;
|
|
float: right;
|
|
margin-top: -30px;
|
|
margin-right: -12px;
|
|
position: relative;
|
|
}
|
|
|
|
.upload_foto_result {
|
|
display: none;
|
|
height: 240px;
|
|
border: 1px solid;
|
|
padding-right: 0px !important;
|
|
margin-top: 10px !important;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 13-Aug-2018, 12:32:48
|
|
Author : podkrizniku
|
|
*/
|
|
#branching {
|
|
/*if condition variable select*/
|
|
}
|
|
#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: 8px;
|
|
right: 16px;
|
|
}
|
|
#branching li.if .if_remove a,
|
|
#branching li.block .if_remove a,
|
|
#branching li.loop .if_remove a {
|
|
margin-left: 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 .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:hover span.conditions_display,
|
|
#branching li.block:hover span.conditions_display,
|
|
#branching li.loop:hover span.conditions_display {
|
|
cursor: pointer;
|
|
}
|
|
#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;
|
|
}
|
|
#branching li.if.if_editing .if_content,
|
|
#branching li.block.if_editing .if_content,
|
|
#branching li.loop.if_editing .if_content {
|
|
padding: 12px 16px 16px 16px;
|
|
background-color: #F2F2F2;
|
|
border-left: 2px #1E88E5 solid;
|
|
}
|
|
#branching li.if.if_editing .if_content #div_condition_editing_inner .condition_editing_body,
|
|
#branching li.block.if_editing .if_content #div_condition_editing_inner .condition_editing_body,
|
|
#branching li.loop.if_editing .if_content #div_condition_editing_inner .condition_editing_body {
|
|
max-height: 50vh;
|
|
overflow-y: auto;
|
|
margin: 20px 0;
|
|
padding: 10px 5px 5px 5px;
|
|
}
|
|
#branching li.if.if_editing .if_content #div_condition_editing_inner .condition_editing_body .tbl_condition_editing,
|
|
#branching li.block.if_editing .if_content #div_condition_editing_inner .condition_editing_body .tbl_condition_editing,
|
|
#branching li.loop.if_editing .if_content #div_condition_editing_inner .condition_editing_body .tbl_condition_editing {
|
|
margin-bottom: 5px;
|
|
}
|
|
#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: #F2F2F2;
|
|
border-left: 2px #1E88E5 solid;
|
|
}
|
|
#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 span.conditions_display {
|
|
display: block;
|
|
line-height: 28px;
|
|
}
|
|
#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 #div_condition_editing_operators {
|
|
padding: 5px 0;
|
|
}
|
|
#branching #div_condition_editing {
|
|
display: none;
|
|
height: auto;
|
|
width: 800px;
|
|
}
|
|
#branching #div_condition_editing div#div_condition_editing_container {
|
|
margin-bottom: 44px;
|
|
}
|
|
#branching #div_condition_editing .error_display {
|
|
background-color: transparent;
|
|
}
|
|
#branching #div_condition_editing .condition_editing_vrednost_title {
|
|
margin: -5px 0 15px 5px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
#branching #div_condition_editing_float {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -369px;
|
|
width: 305px;
|
|
border: 1px solid #E5E5E5;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#branching #div_condition_editing_float .condition_header {
|
|
height: 45px;
|
|
padding: 0 7px;
|
|
margin-bottom: 16px;
|
|
color: #FFFFFF;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 45px;
|
|
background-color: #1E88E5;
|
|
}
|
|
#branching #div_condition_editing_float .condition_edit {
|
|
margin: 0 16px;
|
|
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 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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
#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: 4px;
|
|
}
|
|
#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 .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;
|
|
}
|
|
#branching .tbl_condition_editing {
|
|
width: 98%;
|
|
border-spacing: 0px;
|
|
margin: 0px 1% 0px 1%;
|
|
border-collapse: collapse;
|
|
}
|
|
#branching .tbl_condition_editing th {
|
|
color: #E5E5E5;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/*
|
|
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: "\f078";
|
|
}
|
|
.tab_content .content_left ul li.folder_item .faicon.folder: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 {
|
|
font-weight: 600;
|
|
color: #1E88E5;
|
|
}
|
|
.tab_content .content_left ul li.folder_item.open .faicon.arrow:before {
|
|
content: "\f077";
|
|
}
|
|
.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: 710px;
|
|
}
|
|
.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 .folder_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .question_item_info:hover .dots_ver,
|
|
.tab_content .content_right .question_list .folder_item_holder .folder_item_info:hover .dots_ver {
|
|
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 .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 {
|
|
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: "\f078";
|
|
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;
|
|
}
|
|
|
|
fieldset #obvescanje_sidebyside_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_left {
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
margin-right: 32px;
|
|
width: 560px;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right {
|
|
flex-grow: 0;
|
|
width: 100%;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right div.message_instructions {
|
|
background-color: #F8F8F8;
|
|
border: 1px solid #E5E5E5;
|
|
box-sizing: border-box;
|
|
padding: 16px;
|
|
width: 100%;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder #obvescanje_sidebyside_right div.message_instructions div.izpolnjena_spremenljivke {
|
|
margin-bottom: 16px;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder label {
|
|
cursor: default;
|
|
}
|
|
fieldset #obvescanje_sidebyside_holder label.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .alert_authors {
|
|
display: block;
|
|
text-indent: 12px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .setting_item label {
|
|
margin-right: 8px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki .setting_item.respondent_jeziki {
|
|
margin-left: 24px;
|
|
}
|
|
fieldset .setting_holder.alert_prejemniki span.faicon {
|
|
vertical-align: middle;
|
|
text-indent: 0;
|
|
}
|
|
fieldset .setting_holder .alert_other_emails {
|
|
margin-left: 24px;
|
|
}
|
|
fieldset .setting_holder .alert_other_emails label {
|
|
cursor: default;
|
|
}
|
|
fieldset .setting_holder textarea.alert_other_emails {
|
|
width: 538px;
|
|
height: 100px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
span.faicon.respondent_iconwithlink {
|
|
margin-left: 16px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
#vrednost_edit label {
|
|
cursor: default;
|
|
}
|
|
#vrednost_edit label.bottom4 {
|
|
margin-bottom: 4px;
|
|
}
|
|
#vrednost_edit .setting_holder {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 565px;
|
|
}
|
|
#vrednost_edit .setting_holder:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
#vrednost_edit .setting_holder:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#vrednost_edit .button_holder {
|
|
justify-content: start;
|
|
}
|
|
|
|
button.ui-datepicker-trigger {
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
min-width: auto;
|
|
color: #1E88E5;
|
|
border: none;
|
|
background: none;
|
|
padding: 0;
|
|
}
|
|
button.ui-datepicker-trigger:hover {
|
|
color: #1980da;
|
|
}
|
|
button.ui-datepicker-trigger.disabled {
|
|
color: #777777;
|
|
pointer-events: none;
|
|
}
|
|
|
|
fieldset span.charalimit#anketa_polnoIme_chars {
|
|
width: 400px;
|
|
}
|
|
fieldset span.charalimit#anketa_akronim_chars, fieldset span.charalimit#anketa_note_chars {
|
|
width: 800px;
|
|
}
|
|
fieldset input[type=text]#anketa_polnoIme {
|
|
width: 400px;
|
|
}
|
|
fieldset input[type=text]#anketa_akronim {
|
|
width: 800px;
|
|
}
|
|
fieldset textarea#anketa_note {
|
|
width: 800px;
|
|
height: 120px;
|
|
}
|
|
|
|
textarea#addusers, textarea#addusers_note {
|
|
width: 800px;
|
|
height: 120px;
|
|
}
|
|
|
|
/*
|
|
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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#vrednost_edit h2 span.faicon:before,
|
|
#vrednost_edit .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#vrednost_edit p {
|
|
line-height: 20px;
|
|
}
|
|
#vrednost_edit .popup_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.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: "\f071";
|
|
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 {
|
|
/*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 {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#calculation .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#calculation .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#calculation .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#calculation h2,
|
|
#calculation .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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#calculation h2 span.faicon:before,
|
|
#calculation .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#calculation p {
|
|
line-height: 20px;
|
|
}
|
|
#calculation .popup_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#calculation .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#calculation .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#calculation .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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#calculation .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 {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#calculation .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#calculation .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#calculation .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#calculation .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#calculation .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#calculation .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#calculation .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 {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#calculation .popup_main .setting_line label,
|
|
#calculation .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#calculation .popup_main .settings_block label,
|
|
#calculation .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#calculation .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#calculation .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#calculation.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#calculation #calculation_editing_inner {
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 40px;
|
|
overflow: auto;
|
|
}
|
|
#calculation .calculation_editing_body {
|
|
max-height: 40vh;
|
|
overflow-y: auto;
|
|
margin: 20px 0;
|
|
padding: 10px 5px 5px 5px;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#calculation .calculation_editing_body .tbl_condition_editing {
|
|
margin-bottom: 5px;
|
|
}
|
|
#calculation #condition_editing_close {
|
|
float: right;
|
|
margin: 20px 20px 20px 0;
|
|
}
|
|
#calculation #bottom_space {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Survey title edit */
|
|
#quick_title_edit {
|
|
position: relative;
|
|
width: 720px;
|
|
height: 265px;
|
|
}
|
|
#quick_title_edit .quick_title_edit_label {
|
|
width: 145px;
|
|
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 : 23-Jul-2018, 10:43:58
|
|
Author : podkrizniku
|
|
*/
|
|
/**
|
|
*
|
|
* 1KA template, from which other skins are derived. Every skin usees this template as a base!
|
|
*
|
|
* - always use relative font sizes (em, %)
|
|
* - using relative font sizes, one can adjust all skin font sizes using one options (eg. increase all by 15%)
|
|
*
|
|
*/
|
|
/*
|
|
* USED FROM: template.css
|
|
*/
|
|
#preview_spremenljivka {
|
|
/*max-height: 90vh;
|
|
overflow-y: scroll;*/
|
|
max-width: 90vw;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
background-color: white;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
height: auto;
|
|
max-height: 500px;
|
|
width: 60vw;
|
|
}
|
|
#preview_spremenljivka .popup_close {
|
|
position: absolute !important;
|
|
top: 10px;
|
|
right: 10px;
|
|
z-index: 9999;
|
|
font-size: 12px !important;
|
|
color: #777777;
|
|
}
|
|
#preview_spremenljivka .popup_close:hover {
|
|
color: #333333;
|
|
}
|
|
#preview_spremenljivka .popup_close a {
|
|
color: #777777;
|
|
text-decoration: none;
|
|
}
|
|
#preview_spremenljivka .popup_close a:hover {
|
|
color: #333333;
|
|
}
|
|
#preview_spremenljivka h2,
|
|
#preview_spremenljivka .divPopUp_top {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 8px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px #E5E5E5 solid;
|
|
margin-block-start: 0;
|
|
}
|
|
#preview_spremenljivka h2 span.faicon,
|
|
#preview_spremenljivka .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka h2 span.faicon:before,
|
|
#preview_spremenljivka .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka p {
|
|
line-height: 20px;
|
|
}
|
|
#preview_spremenljivka .popup_note {
|
|
margin-bottom: 16px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
border: 1px #C4C4C4 solid;
|
|
}
|
|
#preview_spremenljivka .popup_main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-bottom: 1px #C4C4C4 solid;
|
|
}
|
|
#preview_spremenljivka .popup_main.with_menu {
|
|
flex-direction: row;
|
|
}
|
|
#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;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left .list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#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;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left .list .list-item.active, #preview_spremenljivka .popup_main .popup_left .list .list-item:hover {
|
|
background-color: #F8F8F8;
|
|
border-color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left .list .list-item .profile_icons a {
|
|
margin-left: 8px;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left button {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-weight: 400;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left button .faicon {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_left button .faicon::before {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_right {
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
width: 100%;
|
|
}
|
|
#preview_spremenljivka .popup_main .popup_right .popup_right_note {
|
|
margin-bottom: 16px;
|
|
font-size: 16px;
|
|
}
|
|
#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;
|
|
}
|
|
#preview_spremenljivka .popup_main fieldset legend {
|
|
padding: 0 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka .popup_main span {
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka .popup_main .setting_line {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka .popup_main .setting_line:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
#preview_spremenljivka .popup_main .setting_line label,
|
|
#preview_spremenljivka .popup_main .setting_line span {
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka .popup_main .settings_block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 16px;
|
|
}
|
|
#preview_spremenljivka .popup_main .settings_block label,
|
|
#preview_spremenljivka .popup_main .settings_block span {
|
|
font-size: 14px;
|
|
}
|
|
#preview_spremenljivka .button_holder {
|
|
justify-content: end !important;
|
|
margin: 20px 0 0 0;
|
|
}
|
|
#preview_spremenljivka .button_holder button:last-child {
|
|
margin-right: 0;
|
|
}
|
|
#preview_spremenljivka.warning_popup h2::before {
|
|
padding-right: 8px;
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
#preview_spremenljivka .buttons_holder {
|
|
margin-top: 30px;
|
|
}
|
|
#preview_spremenljivka h1 {
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka h1 span {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka h1, #preview_spremenljivka h2, #preview_spremenljivka h3 {
|
|
font-size: 20px;
|
|
line-height: 27px;
|
|
font-weight: 500;
|
|
}
|
|
#preview_spremenljivka input {
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#preview_spremenljivka select {
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka textarea {
|
|
vertical-align: middle;
|
|
width: 40%;
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
#preview_spremenljivka input[type=text] {
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .disabled {
|
|
border: 1px solid silver;
|
|
}
|
|
#preview_spremenljivka img {
|
|
border: none;
|
|
max-width: 800px;
|
|
}
|
|
#preview_spremenljivka label {
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka table.grid_header_table label {
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka input[type=radio] {
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka input[type=checkbox] {
|
|
cursor: pointer;
|
|
}
|
|
#preview_spremenljivka #admin_options {
|
|
position: absolute;
|
|
left: 20px;
|
|
}
|
|
#preview_spremenljivka #admin_options a {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0 2px;
|
|
}
|
|
#preview_spremenljivka #admin_options a.printView {
|
|
background: url("../../../admin/survey/icons/icons/printer.png");
|
|
}
|
|
#preview_spremenljivka #admin_options a.normalView {
|
|
background: url("../../../admin/survey/icons/icons/pencil_go.png");
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #admin_options a.pdfExport {
|
|
background: url("../../../admin/survey/icons/icons/page_white_acrobat.png");
|
|
}
|
|
#preview_spremenljivka #admin_options a.embed_out {
|
|
background: url("../../../admin/survey/icons/icons/page_copy.png");
|
|
width: 23px;
|
|
}
|
|
#preview_spremenljivka .printDiv {
|
|
border: 1px solid gray;
|
|
padding: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
#preview_spremenljivka #logo {
|
|
position: absolute;
|
|
background: url("../../../main/survey/skins/Default/logo-small.png") no-repeat scroll 100% 0 transparent;
|
|
right: 0px;
|
|
}
|
|
#preview_spremenljivka #logo a {
|
|
display: block;
|
|
width: 96px;
|
|
height: 45px;
|
|
text-indent: -9999px;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder {
|
|
position: absolute;
|
|
right: 20px;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar span {
|
|
float: left;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar div {
|
|
display: inline-block;
|
|
width: 100px;
|
|
height: 16px;
|
|
border: 1px solid black;
|
|
margin: 0 10px;
|
|
float: left;
|
|
}
|
|
#preview_spremenljivka .header_settings_holder .progress_bar div span {
|
|
display: inline-block;
|
|
background-color: #1E88E5;
|
|
height: 16px;
|
|
float: none;
|
|
}
|
|
#preview_spremenljivka #preview {
|
|
position: fixed;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 200px;
|
|
text-align: center;
|
|
z-index: 100;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #E5E5E5;
|
|
font-size: 90%;
|
|
}
|
|
#preview_spremenljivka #preview select {
|
|
font-size: 100%;
|
|
}
|
|
#preview_spremenljivka div.buttons {
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka #footer_survey {
|
|
text-align: center;
|
|
font-size: 90%;
|
|
}
|
|
#preview_spremenljivka #footer_survey p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_mobile {
|
|
margin-bottom: 10px;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_UL {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_FDV {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka #footer_survey p.footer_survey_PoweredBy {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka .display_none {
|
|
display: none;
|
|
}
|
|
#preview_spremenljivka .clr {
|
|
clear: both;
|
|
}
|
|
#preview_spremenljivka .floatLeft {
|
|
float: left;
|
|
display: inline;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka .spremenljivka_info {
|
|
color: #1E88E5;
|
|
}
|
|
#preview_spremenljivka .variabla {
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka.tip_7 .variabla label {
|
|
padding: 5px 10px 5px 0;
|
|
}
|
|
#preview_spremenljivka div.spremenljivka.tip_21 .variabla label {
|
|
padding: 5px 10px 5px 0;
|
|
}
|
|
#preview_spremenljivka span.reminder {
|
|
position: absolute;
|
|
color: #FF0000;
|
|
left: -8px;
|
|
}
|
|
#preview_spremenljivka div.naslov {
|
|
position: relative;
|
|
float: left;
|
|
width: auto;
|
|
min-width: 100px;
|
|
max-width: 100%;
|
|
padding: 0 0 20px 0;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 500;
|
|
}
|
|
#preview_spremenljivka p.spremenljivka_info {
|
|
font-size: 80%;
|
|
}
|
|
#preview_spremenljivka .variable_holder {
|
|
padding: 0 10px;
|
|
}
|
|
#preview_spremenljivka table.grid_table {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
text-align: center;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignLeft {
|
|
text-align: left !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignRight {
|
|
text-align: right !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table td.alignCenter {
|
|
text-align: center !important;
|
|
}
|
|
#preview_spremenljivka table.grid_table label {
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka table.grid_table td {
|
|
padding: 5px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
#preview_spremenljivka thead {
|
|
font-weight: 600;
|
|
}
|
|
#preview_spremenljivka td.question {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka td.differential {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka table td.question input {
|
|
width: 80px;
|
|
}
|
|
#preview_spremenljivka table.grid_table.multigriddropdown {
|
|
text-align: left;
|
|
}
|
|
#preview_spremenljivka td.category input[type=text] {
|
|
border: 0;
|
|
outline: 1px solid #4ca0ea;
|
|
}
|
|
#preview_spremenljivka td.category textarea {
|
|
border: 0;
|
|
outline: 1px solid #4ca0ea;
|
|
}
|
|
#preview_spremenljivka table.doublegrid thead tr:first-child {
|
|
height: 30px;
|
|
}
|
|
#preview_spremenljivka table.doublecheckgrid thead tr:first-child {
|
|
height: 30px;
|
|
}
|
|
#preview_spremenljivka col.space {
|
|
width: 5%;
|
|
}
|
|
#preview_spremenljivka td.double {
|
|
border-left: 1px solid black;
|
|
}
|
|
#preview_spremenljivka .width_5 {
|
|
width: 5%;
|
|
}
|
|
#preview_spremenljivka .width_10 {
|
|
width: 10%;
|
|
}
|
|
#preview_spremenljivka .width_15 {
|
|
width: 15%;
|
|
}
|
|
#preview_spremenljivka .width_20 {
|
|
width: 20%;
|
|
}
|
|
#preview_spremenljivka .width_25 {
|
|
width: 25%;
|
|
}
|
|
#preview_spremenljivka .width_30 {
|
|
width: 30%;
|
|
}
|
|
#preview_spremenljivka .width_33 {
|
|
width: 33.3%;
|
|
}
|
|
#preview_spremenljivka .width_35 {
|
|
width: 35%;
|
|
}
|
|
#preview_spremenljivka .width_40 {
|
|
width: 40%;
|
|
}
|
|
#preview_spremenljivka .width_45 {
|
|
width: 45%;
|
|
}
|
|
#preview_spremenljivka .width_50 {
|
|
width: 50%;
|
|
}
|
|
#preview_spremenljivka .width_55 {
|
|
width: 55%;
|
|
}
|
|
#preview_spremenljivka .width_60 {
|
|
width: 60%;
|
|
}
|
|
#preview_spremenljivka .width_65 {
|
|
width: 65%;
|
|
}
|
|
#preview_spremenljivka .width_70 {
|
|
width: 70%;
|
|
}
|
|
#preview_spremenljivka .width_75 {
|
|
width: 75%;
|
|
}
|
|
#preview_spremenljivka .width_80 {
|
|
width: 80%;
|
|
}
|
|
#preview_spremenljivka .width_85 {
|
|
width: 85%;
|
|
}
|
|
#preview_spremenljivka .width_90 {
|
|
width: 90%;
|
|
}
|
|
#preview_spremenljivka .width_95 {
|
|
width: 95%;
|
|
}
|
|
#preview_spremenljivka .width_100 {
|
|
width: 100%;
|
|
}
|
|
#preview_spremenljivka table.text_vrednost {
|
|
table-layout: fixed;
|
|
text-align: left;
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka .limit {
|
|
color: #FF0000;
|
|
cursor: default;
|
|
white-space: nowrap;
|
|
}
|
|
#preview_spremenljivka table.ranking_table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-spacing: 0;
|
|
}
|
|
#preview_spremenljivka table.ranking_table td {
|
|
width: 45%;
|
|
padding: 5px;
|
|
vertical-align: top;
|
|
}
|
|
#preview_spremenljivka table.ranking_table td.middle {
|
|
width: 10%;
|
|
vertical-align: top;
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka table.ranking_table ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka td.middle img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-left: -20px;
|
|
}
|
|
#preview_spremenljivka .handle {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .handle_long {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .ime {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .izbran {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
#preview_spremenljivka .ranking {
|
|
cursor: pointer;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#preview_spremenljivka .ranking_long {
|
|
cursor: pointer;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0 auto 10px auto;
|
|
border: 1px solid #000000;
|
|
height: 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background-color: #FFFFFF;
|
|
}
|
|
#preview_spremenljivka .frame_ranking {
|
|
width: 230px !important;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed #000000;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#preview_spremenljivka .dropholder {
|
|
position: relative;
|
|
padding-top: 11px;
|
|
}
|
|
#preview_spremenljivka .dropholder .dropzone {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
#preview_spremenljivka .dropzone {
|
|
border-top: 1px solid black;
|
|
min-height: 100px;
|
|
padding-top: 10px;
|
|
}
|
|
#preview_spremenljivka .frame_dropping {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
background-color: #1E88E5;
|
|
border: 1px solid #1E88E5;
|
|
}
|
|
#preview_spremenljivka .frame_dropping_titles {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 0px auto;
|
|
height: 15px;
|
|
text-align: center;
|
|
background-color: #FFFFFF;
|
|
border-top: 1px solid #1E88E5;
|
|
border-left: 1px solid #1E88E5;
|
|
border-right: 1px solid #1E88E5;
|
|
}
|
|
#preview_spremenljivka .moving {
|
|
cursor: pointer;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 230px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#preview_spremenljivka .frame_moving {
|
|
width: 230px;
|
|
padding: 5px;
|
|
margin: 0px auto 10px auto;
|
|
border: 1px dashed #000000;
|
|
height: 15px;
|
|
text-indent: -25px;
|
|
font-weight: bold;
|
|
}
|
|
#preview_spremenljivka ul.sorting {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#preview_spremenljivka .sortholder {
|
|
margin: 0 auto;
|
|
width: 250px;
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .sortzone {
|
|
position: absolute;
|
|
margin: 0 auto 0 auto;
|
|
width: 250px;
|
|
}
|
|
#preview_spremenljivka .spremenljivka.tip_17 input {
|
|
width: 50px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum {
|
|
text-align: right;
|
|
padding: 5px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum input {
|
|
width: 50px;
|
|
}
|
|
#preview_spremenljivka .variabla_sum.sum {
|
|
float: left;
|
|
border-top: 1px solid black;
|
|
}
|
|
#preview_spremenljivka .stat {
|
|
float: right;
|
|
}
|
|
#preview_spremenljivka #vnos {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
border: 3px solid #E5E5E5;
|
|
background-color: #eee;
|
|
text-align: center;
|
|
padding: 3px;
|
|
}
|
|
#preview_spremenljivka p.vnos {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
#preview_spremenljivka .content_status {
|
|
border: none;
|
|
padding-bottom: 2px;
|
|
}
|
|
#preview_spremenljivka .content_status span {
|
|
display: inline-table;
|
|
}
|
|
#preview_spremenljivka .counter {
|
|
float: left;
|
|
width: auto;
|
|
padding-top: 5px;
|
|
display: block;
|
|
}
|
|
#preview_spremenljivka div.comment {
|
|
font-style: italic;
|
|
color: #FF0000;
|
|
float: left;
|
|
width: 98%;
|
|
padding-top: 5px;
|
|
display: block;
|
|
border-top: 1px dashed #cccccc;
|
|
}
|
|
#preview_spremenljivka #edit_warning {
|
|
width: 380px;
|
|
margin: -15px 0 5px 15px;
|
|
padding: 5px;
|
|
border: 2px red solid;
|
|
}
|
|
#preview_spremenljivka .arrow {
|
|
cursor: pointer;
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 0 auto;
|
|
}
|
|
#preview_spremenljivka #arrow_up {
|
|
background-image: url("../../../main/survey/skins/Default/arrowU.png");
|
|
}
|
|
#preview_spremenljivka #arrow_up:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowU2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_down {
|
|
background-image: url("../../../main/survey/skins/Default/arrowD.png");
|
|
}
|
|
#preview_spremenljivka #arrow_down:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowD2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_left {
|
|
background-image: url("../../../main/survey/skins/Default/arrowL.png");
|
|
}
|
|
#preview_spremenljivka #arrow_left:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowL2.png");
|
|
}
|
|
#preview_spremenljivka #arrow_right {
|
|
background-image: url("../../../main/survey/skins/Default/arrowR.png");
|
|
}
|
|
#preview_spremenljivka #arrow_right:hover {
|
|
background-image: url("../../../main/survey/skins/Default/arrowR2.png");
|
|
}
|
|
#preview_spremenljivka #dynamic_count {
|
|
width: 60px;
|
|
padding: 7px 0;
|
|
font-weight: bold;
|
|
color: #1E88E5;
|
|
}
|
|
|
|
/*
|
|
Uvoz vprasanj iz texta znotraj ankete (popup)
|
|
Created on : 6-Nov-2018
|
|
Author : peter hrvatin
|
|
*/
|
|
#popup_import_from_text {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 90;
|
|
height: auto;
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
line-height: 18px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text {
|
|
height: auto;
|
|
overflow: auto;
|
|
}
|
|
#popup_import_from_text .anketa_from_text h2 {
|
|
margin-top: 0;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder {
|
|
float: left;
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
resize: none;
|
|
padding: 20px;
|
|
border: 1px #1E88E5 solid !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder {
|
|
color: transparent;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder {
|
|
float: right;
|
|
width: 50%;
|
|
height: 400px;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
padding: 20px;
|
|
background-color: #1E88E5;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.title {
|
|
font-size: 18px;
|
|
line-height: 30px;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable {
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] {
|
|
display: none !important;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
content: "\f111";
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: #E5E5E5;
|
|
letter-spacing: 8px;
|
|
font-weight: 400;
|
|
}
|
|
#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
|
|
content: "\f192";
|
|
color: #E5E5E5;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 14-Aug-2018, 11:40:15
|
|
Author : podkrizniku
|
|
*/
|
|
/* Arhiv */
|
|
#div_analiza_archive_name {
|
|
min-width: 900px;
|
|
width: auto;
|
|
padding-bottom: 50px !important;
|
|
}
|
|
|
|
.div_curent_archives {
|
|
margin-top: 10px;
|
|
padding: 20px 5px 20px 5px;
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
border-top: 1px dashed #E5E5E5;
|
|
}
|
|
|
|
.arch_tbl {
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
}
|
|
.arch_tbl th {
|
|
padding: 3px;
|
|
}
|
|
.arch_tbl td {
|
|
padding: 3px;
|
|
}
|
|
|
|
#arch_body {
|
|
text-align: center;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
padding: 0px;
|
|
background: none;
|
|
background-color: white;
|
|
color: black;
|
|
font-size: 11px;
|
|
width: 100%;
|
|
}
|
|
#arch_body .anl_more {
|
|
display: none;
|
|
}
|
|
|
|
#arch_body_div {
|
|
margin: auto;
|
|
width: auto;
|
|
max-width: 1024px;
|
|
background-color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.arch_body_div {
|
|
margin: auto;
|
|
width: auto;
|
|
max-width: 1024px;
|
|
background-color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.arch_head_date {
|
|
float: right;
|
|
width: auto;
|
|
height: 50px;
|
|
}
|
|
|
|
#div_archives_email_buttons {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#div_archives_email_left {
|
|
width: 590px;
|
|
float: left;
|
|
}
|
|
|
|
#div_archives_email_right {
|
|
width: 300px;
|
|
float: right;
|
|
}
|
|
|
|
dl.arch_email dd {
|
|
margin-left: 60px;
|
|
position: relative;
|
|
top: -1.1em;
|
|
}
|
|
|
|
#email_archive_text {
|
|
height: 150px;
|
|
}
|
|
|
|
#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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#inv_view_arch_recipients h2 span.faicon:before,
|
|
#inv_view_arch_recipients .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#inv_view_arch_recipients p {
|
|
line-height: 20px;
|
|
}
|
|
#inv_view_arch_recipients .popup_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.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: "\f071";
|
|
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;
|
|
}
|
|
|
|
.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 .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;
|
|
padding: 0;
|
|
line-height: 12px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
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 #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;
|
|
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 table#dataTable {
|
|
table-layout: fixed;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
border-spacing: 0px;
|
|
/*colgroup{
|
|
|
|
col {
|
|
width: 100px;
|
|
|
|
&.data_edit {
|
|
width: 23px;
|
|
}
|
|
}
|
|
}*/
|
|
/*.dataCell {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
min-width: 20px;
|
|
max-height: 1.1em;
|
|
|
|
padding: 3px 0;
|
|
text-indent: 3px;
|
|
|
|
&:hover {
|
|
.tableResize {
|
|
background-color: $blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
.headerCell {
|
|
white-space: nowrap;
|
|
padding: 3px;
|
|
}
|
|
|
|
th {
|
|
font-weight: normal;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
col {
|
|
width: 100px;
|
|
}
|
|
col.data_edit {
|
|
width: 23px;
|
|
}
|
|
td {
|
|
padding: 3px;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
max-width: 200px;
|
|
overflow: hidden;
|
|
line-height: 18px;
|
|
.highlighted {
|
|
font-weight: bold;
|
|
color: red;
|
|
background-color: yellow;
|
|
}
|
|
}
|
|
td.data_edit {
|
|
.pdf {
|
|
cursor: pointer;
|
|
}
|
|
.rtf {
|
|
cursor: pointer;
|
|
}
|
|
.evoli {
|
|
cursor: pointer;
|
|
}
|
|
.evoli2 {
|
|
cursor: pointer;
|
|
}
|
|
.evoli3 {
|
|
cursor: pointer;
|
|
}
|
|
.mfdps {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
select {
|
|
font-size: 11px !important;
|
|
width: 100%;
|
|
}
|
|
th.hover {
|
|
background-color: $gray;
|
|
}
|
|
tbody {
|
|
.active {
|
|
background-color: $gray !important;
|
|
}
|
|
tr {
|
|
&:nth-child(odd) {
|
|
}
|
|
&:nth-child(even) {
|
|
background-color: $gray;
|
|
}
|
|
}
|
|
}
|
|
.delete_data_row {
|
|
margin: 0;
|
|
}
|
|
.scrollContent.coding {
|
|
td {
|
|
&:hover {
|
|
background-color: $gray;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
td.enkaIcon {
|
|
&:hover {
|
|
background-color: white;
|
|
}
|
|
}
|
|
td.cellGreen {
|
|
&:hover {
|
|
background-color: #E6FFCC;
|
|
cursor: auto;
|
|
}
|
|
}
|
|
}*/
|
|
}
|
|
#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 {
|
|
color: #1E88E5;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|
|
#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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
/*
|
|
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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#div_export_setting_show h2 span.faicon:before,
|
|
#div_export_setting_show .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#div_export_setting_show p {
|
|
line-height: 20px;
|
|
}
|
|
#div_export_setting_show .popup_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.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: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
.setting_horizontal_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.setting_horizontal_wrapper .setting_holder {
|
|
margin-right: 32px;
|
|
}
|
|
|
|
#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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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) {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
margin-top: 32px;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table,
|
|
#div_means_data table,
|
|
#div_break_data table,
|
|
#ttestResults 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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
padding: 4px 16px;
|
|
text-align: center;
|
|
border: 0;
|
|
}
|
|
#div_analiza_data:not(.anal_arch) table tr th table.cell_table tr:first-of-type td,
|
|
#div_analiza_data:not(.anal_arch) table tr td table.cell_table tr:first-of-type td,
|
|
#div_means_data table tr th table.cell_table tr:first-of-type td,
|
|
#div_means_data table tr td table.cell_table tr:first-of-type td,
|
|
#div_break_data table tr th table.cell_table tr:first-of-type td,
|
|
#div_break_data table tr td table.cell_table tr:first-of-type td,
|
|
#ttestResults table tr th table.cell_table tr:first-of-type td,
|
|
#ttestResults table tr td table.cell_table 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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
iframe#ifmcontentstoprint {
|
|
border: 0;
|
|
}
|
|
|
|
/*sum vertical checkbox*/
|
|
/*.anl_bck_2 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck {
|
|
background-color: $blue;
|
|
}*/
|
|
/*plain text*/
|
|
/*.anl_tbl_inner {
|
|
border-spacing: 0px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
.tbl_clps {
|
|
padding: 0px !important;
|
|
margin: 0px !important;
|
|
border-collapse: collapse !important;
|
|
}
|
|
.anl_tbl {
|
|
width: 100%;
|
|
border-spacing: 0px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
margin-bottom: 20px;
|
|
border-collapse: collapse;
|
|
th {
|
|
padding: 6px;
|
|
}
|
|
td {
|
|
padding: 6px;
|
|
}
|
|
}
|
|
.cll_clps {
|
|
padding: 0px !important;
|
|
margin: 0px !important;
|
|
border-collapse: collapse !important;
|
|
}
|
|
.anl_bck_0_0 {
|
|
background-color: $gray;
|
|
}
|
|
.anl_bck_0_1 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck_1_0 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck_1_1 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck_2_1 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck_2_0 {
|
|
background-color: #f9f9f7;
|
|
}
|
|
|
|
.anl_bck_text_0 {
|
|
background-color: #FFFFE3;
|
|
}
|
|
.anl_bck_text_1 {
|
|
background-color: #FFFFF0;
|
|
}
|
|
.anl_bck_desc_1 {
|
|
background-color: $light-blue;
|
|
}
|
|
.anl_bck_desc_2 {
|
|
background-color: white;
|
|
}
|
|
.anl_bck_desc_3 {
|
|
background-color: #FFFFE3;
|
|
}
|
|
.anl_bck_freq_1 {
|
|
background-color: $light-blue;
|
|
}
|
|
.anl_bck_freq_2 {
|
|
background-color: white;
|
|
}
|
|
.anl_tin {
|
|
text-indent: 8px;
|
|
}
|
|
.anl_tin1 {
|
|
text-indent: 16px;
|
|
}
|
|
.anl_tin2 {
|
|
text-indent: 24px;
|
|
}
|
|
.anl_variabla {
|
|
font-weight: bold;
|
|
color: $blue;
|
|
a {
|
|
font-weight: bold;
|
|
color: $blue;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.anl_variabla_sub {
|
|
color: $blue;
|
|
}
|
|
.anl_variabla_label {
|
|
color: $blue;
|
|
color: black;
|
|
}
|
|
.anl_variabla_info {
|
|
color: $gray;
|
|
font-size: 10px;
|
|
}
|
|
.anl_variabla_line {
|
|
color: $gray;
|
|
}
|
|
.anl_ita {
|
|
font-style: italic;
|
|
}
|
|
.anl_detail_percent {
|
|
color: $red;
|
|
width: 70px;
|
|
text-align: right;
|
|
font-weight: normal;
|
|
a {
|
|
color: $red;
|
|
width: 70px;
|
|
text-align: right;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
.anl_detail_cnt {
|
|
color: silver;
|
|
}
|
|
.anl_ac {
|
|
text-align: center;
|
|
}
|
|
.anl_al {
|
|
text-align: left;
|
|
}
|
|
.anl_ar {
|
|
border: 1px solid $light-blue;
|
|
text-align: right;
|
|
}
|
|
.anl_ba {
|
|
border: 1px solid $light-blue;
|
|
}
|
|
.anl_bl {
|
|
border-left: 1px solid $light-blue;
|
|
}
|
|
.anl_br {
|
|
border-right: 1px solid $light-blue;
|
|
}
|
|
.anl_bt {
|
|
border-top: 1px solid $light-blue;
|
|
}
|
|
.anl_bb {
|
|
border-bottom: 1px solid $light-blue;
|
|
}
|
|
.anl_red_ba {
|
|
border: 1px solid $red;
|
|
}
|
|
.anl_dash_bl {
|
|
border-left: 1px dashed silver;
|
|
}
|
|
.anl_dash_br {
|
|
border-right: 1px dashed silver;
|
|
}
|
|
.anl_dash_bt {
|
|
border-top: 1px dashed silver;
|
|
}
|
|
.anl_dash_bb {
|
|
border-bottom: 1px dashed silver;
|
|
}
|
|
.anl_dash_red_bb {
|
|
border-bottom: 1px dashed #red;
|
|
}
|
|
.anl_double_bt {
|
|
border-top: 3px double $gray;
|
|
}
|
|
.anl_legenda_freq {
|
|
font-weight: normal;
|
|
}
|
|
.anl_variable_type {
|
|
span {
|
|
color: $gray;
|
|
}
|
|
float: right;
|
|
}
|
|
.anl_str {
|
|
font-weight: bold;
|
|
}
|
|
.anl_w15 {
|
|
width: 15px !important;
|
|
}
|
|
.anl_w30 {
|
|
width: 30px !important;
|
|
}
|
|
.anl_w50 {
|
|
width: 50px !important;
|
|
}
|
|
.anl_w70 {
|
|
width: 70px !important;
|
|
}
|
|
.anl_w90 {
|
|
width: 90px !important;
|
|
}
|
|
.anl_w110 {
|
|
width: 110px !important;
|
|
}
|
|
.anl_w140 {
|
|
width: 140px !important;
|
|
}
|
|
.anl_p5 {
|
|
padding: 5px !important;
|
|
}
|
|
.anl_p10 {
|
|
padding: 10px !important;
|
|
}
|
|
.anl_indent {
|
|
text-indent: 20px;
|
|
}
|
|
.anl_ba_dot {
|
|
border: 1px dotted $gray;
|
|
}
|
|
.anl_bl_dot {
|
|
border-left: 1px dotted $gray;
|
|
}
|
|
.anl_br_dot {
|
|
border-right: 1px dotted $gray;
|
|
}
|
|
.anl_bt_dot {
|
|
border-top: 1px dotted $gray;
|
|
}
|
|
.anl_bb_dot {
|
|
border-bottom: 1px dotted $gray;
|
|
}
|
|
.anl_user_text {
|
|
color: #B30080;
|
|
}
|
|
.anl_user_text_more {
|
|
float: left;
|
|
padding: 0px 5px;
|
|
text-indent: 0px;
|
|
color: #B30080;
|
|
}
|
|
.anl_ti_20 {
|
|
text-indent: 20px;
|
|
}
|
|
.anl_click_missing {
|
|
color: black;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: $blue;
|
|
}
|
|
}
|
|
.anl_click_missing_hide {
|
|
color: black;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: $blue;
|
|
}
|
|
}*/
|
|
#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%;
|
|
}
|
|
|
|
.analysis_icons_holder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.analysis_icons_holder .icon_box {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
.analysis_icons_holder .icon_box > a:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
#div_analiza_data table.table_desc tr td {
|
|
text-align: center;
|
|
}
|
|
#div_analiza_data table.table_desc tr td.cell_question {
|
|
text-align: left;
|
|
}
|
|
#div_analiza_data table.table_desc tr.row_question td {
|
|
background-color: #F2F2F2;
|
|
}
|
|
#div_analiza_data 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 {
|
|
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_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;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder #crosstab_legend .crosstab_legend_line {
|
|
display: flex;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder #crosstab_legend .crosstab_legend_line:nth-child(2) {
|
|
margin-left: 32px;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder #crosstab_legend .crosstab_legend_line .title {
|
|
margin-right: 8px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder #crosstab_legend .crosstab_legend_line .trak {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder #crosstab_legend .crosstab_legend_line .trak div {
|
|
width: 22px;
|
|
height: 22px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
}
|
|
#div_analiza_data.crosstabs #crosstab_tables .table_holder .crosstab_chart_holder {
|
|
margin: 16px auto 0 auto;
|
|
}
|
|
#div_analiza_data.crosstabs .ctbChck_sp0 {
|
|
background-color: #fcfcfc !important;
|
|
}
|
|
#div_analiza_data.crosstabs .ctbChck_sp1 {
|
|
background-color: #FEFFE3 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .ctbChck_sp2 {
|
|
background-color: #FCFFC2 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .ctbChck_sp3 {
|
|
background-color: #FBFFA8 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .crossCheck_EC {
|
|
background-color: #FFFAE8 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .crossCheck_RE {
|
|
background-color: #FFF6D1 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .crossCheck_SR {
|
|
background-color: #FFECA2 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .crossCheck_AR {
|
|
background-color: #FFDA46 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck0 {
|
|
background-color: white !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck1 {
|
|
background-color: #fae2e2 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck2 {
|
|
background-color: #ff9d9d !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck3 {
|
|
background-color: #f84242 !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck4 {
|
|
background-color: #E8F1FF !important;
|
|
}
|
|
#div_analiza_data.crosstabs .rsdl_bck5 {
|
|
background-color: #B9D5FF !important;
|
|
}
|
|
#div_analiza_data.crosstabs .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;
|
|
}
|
|
|
|
/*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 of analisys*/
|
|
.tableChart {
|
|
margin: 30px auto 30px auto;
|
|
width: 1000px;
|
|
overflow: auto;
|
|
text-align: center;
|
|
}
|
|
.tableChart .chart_title {
|
|
width: 800px;
|
|
margin: 5px 0px;
|
|
padding-left: 5px;
|
|
min-height: 15px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
}
|
|
.tableChart .chart_img {
|
|
float: left;
|
|
}
|
|
.tableChart .chart_img img {
|
|
width: 800px;
|
|
}
|
|
.tableChart .chart_settings {
|
|
float: right;
|
|
position: relative;
|
|
margin-top: 5px;
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
float: right;
|
|
position: relative;
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
margin-top: -25px;
|
|
background-color: #E5E5E5;
|
|
}
|
|
.tableChart .chart_settings .switch_left {
|
|
z-index: 99999;
|
|
position: relative;
|
|
width: 90px;
|
|
height: 17px;
|
|
padding: 5px 0 8px 0 !important;
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
background-color: #E5E5E5;
|
|
float: left;
|
|
}
|
|
.tableChart .chart_settings .switch_right {
|
|
z-index: 99999;
|
|
position: relative;
|
|
width: 90px;
|
|
height: 17px;
|
|
padding: 5px 0 8px 0 !important;
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
background-color: #E5E5E5;
|
|
float: right;
|
|
}
|
|
.tableChart .chart_settings .non-active {
|
|
cursor: pointer;
|
|
background-color: #E5E5E5;
|
|
}
|
|
.tableChart .chart_settings .chart_settings_inner {
|
|
position: relative;
|
|
clear: both;
|
|
margin-top: -3px;
|
|
padding: 10px;
|
|
width: 160px;
|
|
height: auto;
|
|
font-size: 10px;
|
|
line-height: 15px;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
background-color: #E5E5E5;
|
|
}
|
|
.tableChart .chart_settings span.title {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
.tableChart .chart_settings span.edit {
|
|
cursor: pointer;
|
|
display: block;
|
|
margin: 10px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
color: #1E88E5;
|
|
}
|
|
.tableChart .chart_settings span.edit:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.tableChart .chart_settings .chart_setting_exportLinks {
|
|
text-align: right;
|
|
padding: 7px;
|
|
}
|
|
.tableChart .chart_settings .chart_setting_exportLinks span {
|
|
margin: 0 4px;
|
|
}
|
|
.tableChart .chart_setting {
|
|
margin: 10px;
|
|
}
|
|
|
|
.chart_holder {
|
|
margin: 20px auto 50px auto;
|
|
width: 1000px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
.chart_holder .chart_title {
|
|
width: 800px;
|
|
margin: 5px 0px 15px 0;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
}
|
|
.chart_holder .chart_title .subtitle {
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
}
|
|
.chart_holder .chart_title span.numerus {
|
|
font-weight: normal;
|
|
color: #333333;
|
|
padding-left: 10px;
|
|
}
|
|
.chart_holder .chart_img {
|
|
float: left;
|
|
min-height: 260px;
|
|
}
|
|
.chart_holder .chart_img img {
|
|
width: 800px;
|
|
}
|
|
.chart_holder .chart_bottom_info {
|
|
clear: both;
|
|
width: auto;
|
|
height: 20px;
|
|
padding: 5px;
|
|
text-align: left;
|
|
}
|
|
.chart_holder .chart_bottom_info ul {
|
|
list-style: none;
|
|
}
|
|
.chart_holder .chart_bottom_info ul li {
|
|
display: inline;
|
|
margin-right: 2px;
|
|
}
|
|
.chart_holder .chart_other_text {
|
|
margin-top: 10px;
|
|
float: left;
|
|
width: 770px;
|
|
min-height: 150px;
|
|
padding-left: 30px;
|
|
}
|
|
.chart_holder .chart_settings {
|
|
float: right;
|
|
position: relative;
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
margin-top: -25px;
|
|
background-color: #E5E5E5;
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
.chart_holder .chart_settings .switch_left {
|
|
z-index: 99999;
|
|
position: relative;
|
|
width: 90px;
|
|
height: 17px;
|
|
padding: 5px 0 8px 0 !important;
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
background-color: white;
|
|
float: left;
|
|
}
|
|
.chart_holder .chart_settings .switch_right {
|
|
z-index: 99999;
|
|
position: relative;
|
|
width: 90px;
|
|
height: 17px;
|
|
padding: 5px 0 8px 0 !important;
|
|
color: #1E88E5;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
background-color: white;
|
|
float: right;
|
|
}
|
|
.chart_holder .chart_settings .non-active {
|
|
cursor: pointer;
|
|
background-color: #E5E5E5 !important;
|
|
}
|
|
.chart_holder .chart_settings .chart_settings_inner {
|
|
position: relative;
|
|
clear: both;
|
|
margin-top: -3px;
|
|
padding: 10px;
|
|
width: 160px;
|
|
height: auto;
|
|
font-size: 10px;
|
|
line-height: 15px;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
background-color: white;
|
|
}
|
|
.chart_holder .chart_settings span.title {
|
|
color: #1E88E5;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
.chart_holder .chart_settings span.edit {
|
|
cursor: pointer;
|
|
display: block;
|
|
margin: 10px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
color: #1E88E5;
|
|
}
|
|
.chart_holder .chart_settings span.edit:hover {
|
|
color: #1E88E5;
|
|
}
|
|
.chart_holder .chart_settings input[type=text] {
|
|
width: 50px;
|
|
float: right;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks {
|
|
text-align: right;
|
|
padding: 7px;
|
|
}
|
|
.chart_holder .chart_settings .chart_setting_exportLinks span {
|
|
margin: 0 4px;
|
|
}
|
|
.chart_holder .chart_settings_inner fieldset.chart_num_limits {
|
|
padding: 0;
|
|
margin: 0 !important;
|
|
}
|
|
.chart_holder .chart_settings_inner .chart_num_limits legend {
|
|
color: black;
|
|
}
|
|
.chart_holder .other_settings {
|
|
margin-top: 50px;
|
|
margin-bottom: 20px;
|
|
/*height: 60px;*/
|
|
}
|
|
.chart_holder .other_settings .chart_settings_inner {
|
|
margin-top: 0px;
|
|
}
|
|
.chart_holder .chart_setting {
|
|
margin: 10px;
|
|
}
|
|
.chart_holder .anl_bl {
|
|
border-left: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_br {
|
|
border-right: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_bt {
|
|
border-top: 1px solid #E5E5E5 !important;
|
|
}
|
|
.chart_holder .anl_bb {
|
|
border-bottom: 1px solid #E5E5E5 !important;
|
|
}
|
|
|
|
.chart_other_text .chart_title {
|
|
margin-top: 20px;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.freq_chart_table {
|
|
width: 800px;
|
|
float: left;
|
|
color: black;
|
|
}
|
|
.freq_chart_table .chart_title {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.anl_user_text_more_charts {
|
|
float: left;
|
|
padding: 0px 5px;
|
|
text-indent: 0px;
|
|
}
|
|
|
|
.chart_profiles_holder {
|
|
width: 190px;
|
|
border: 1px solid #E5E5E5;
|
|
height: 130px;
|
|
display: inline-block;
|
|
}
|
|
|
|
#chart_profiles {
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
display: inline-block;
|
|
height: 144px;
|
|
}
|
|
#chart_profiles .option {
|
|
padding: 1px;
|
|
}
|
|
#chart_profiles .active {
|
|
background-color: #1E88E5;
|
|
color: white;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
|
|
#chart_profiles_custom {
|
|
overflow: auto;
|
|
cursor: pointer;
|
|
width: 190px;
|
|
display: inline-block;
|
|
height: 130px;
|
|
}
|
|
#chart_profiles_custom .option {
|
|
padding: 1px;
|
|
}
|
|
#chart_profiles_custom .active {
|
|
background-color: #1E88E5;
|
|
color: white;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
}
|
|
|
|
#chart_settings_profiles_right #div_chart_skin_previews {
|
|
position: fixed;
|
|
top: 50px;
|
|
left: 90px;
|
|
width: 200px;
|
|
height: 140px;
|
|
padding: 10px;
|
|
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;
|
|
}
|
|
#chart_settings_profiles_right .div_chart_skin_preview {
|
|
display: none;
|
|
width: 200px;
|
|
height: 120px;
|
|
}
|
|
#chart_settings_profiles_right .div_chart_skin_preview table tr td {
|
|
width: 50px;
|
|
height: 18px;
|
|
}
|
|
#chart_settings_profiles_right .form-item {
|
|
padding: 3px;
|
|
width: 200px;
|
|
}
|
|
#chart_settings_profiles_right .colorwell {
|
|
width: 70px;
|
|
height: 20px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#dsp_inspect_cover h2 span.faicon:before,
|
|
#dsp_inspect_cover .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#dsp_inspect_cover p {
|
|
line-height: 20px;
|
|
}
|
|
#dsp_inspect_cover .popup_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.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: "\f071";
|
|
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;
|
|
width: 235px;
|
|
overflow: auto;
|
|
padding: 3px 0px 3px 0px;
|
|
}
|
|
|
|
#fs_list_1 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_1 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_1 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_1 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_1 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_1 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_2 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_2 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_2 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_2 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_2 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_2 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_3 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_3 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_3 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_3 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_3 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_3 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#fs_list_4 {
|
|
display: block;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
min-height: 275px;
|
|
height: 275px;
|
|
width: 220px;
|
|
min-width: 220px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
#fs_list_4 ul {
|
|
padding: 0px;
|
|
max-height: 275px;
|
|
}
|
|
#fs_list_4 li {
|
|
list-style-type: none;
|
|
display: block;
|
|
background: #FFFFFF;
|
|
width: 220px;
|
|
padding: 5px 0px;
|
|
margin-bottom: 5px;
|
|
}
|
|
#fs_list_4 li.dds_selected {
|
|
background: #B3CBC2;
|
|
}
|
|
#fs_list_4 li.dds_ghost {
|
|
opacity: 0.5;
|
|
}
|
|
#fs_list_4 li.dds_move {
|
|
background: #cfc;
|
|
}
|
|
|
|
#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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
.mc_table_settings h2 span.faicon:before,
|
|
.mc_table_settings .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
.mc_table_settings p {
|
|
line-height: 20px;
|
|
}
|
|
.mc_table_settings .popup_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.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: "\f071";
|
|
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: fixed;
|
|
left: calc(50% - 275px);
|
|
top: 40vh;
|
|
z-index: 999;
|
|
margin: 10px;
|
|
width: 550px;
|
|
}
|
|
#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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#newMCTable h2 span.faicon:before,
|
|
#newMCTable .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#newMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#newMCTable .popup_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.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: "\f071";
|
|
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: fixed;
|
|
left: calc(50% - 275px);
|
|
top: 40vh;
|
|
z-index: 999;
|
|
margin: 10px;
|
|
width: 550px;
|
|
}
|
|
#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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#renameMCTable h2 span.faicon:before,
|
|
#renameMCTable .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#renameMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#renameMCTable .popup_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.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: "\f071";
|
|
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: fixed;
|
|
left: calc(50% - 275px);
|
|
top: 40vh;
|
|
z-index: 999;
|
|
margin: 10px;
|
|
width: 550px;
|
|
}
|
|
#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 .divPopUp_top span.faicon {
|
|
margin-right: 6px;
|
|
color: #1E88E5;
|
|
}
|
|
#deleteMCTable h2 span.faicon:before,
|
|
#deleteMCTable .divPopUp_top span.faicon:before {
|
|
font-size: 14px;
|
|
}
|
|
#deleteMCTable p {
|
|
line-height: 20px;
|
|
}
|
|
#deleteMCTable .popup_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.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: "\f071";
|
|
font-size: 14px;
|
|
color: #FFC700;
|
|
}
|
|
|
|
/*tables list popup*/
|
|
#div_mc_tables {
|
|
display: none;
|
|
width: 350px;
|
|
height: 280px;
|
|
}
|
|
#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: 650px;
|
|
height: 420px;
|
|
padding: 10px;
|
|
}
|
|
#div_chart_settings_profiles .as_link {
|
|
color: #1E88E5 !important;
|
|
}
|
|
#div_chart_settings_profiles #chart_skin_note {
|
|
width: auto;
|
|
padding: 3px;
|
|
color: black;
|
|
font-size: 11px;
|
|
border: 1px solid #1E88E5;
|
|
background-color: #1E88E5;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_left {
|
|
float: left;
|
|
width: 30%;
|
|
height: 200px;
|
|
}
|
|
#div_chart_settings_profiles #chart_settings_profiles_right {
|
|
padding: 20px;
|
|
width: 60%;
|
|
float: right;
|
|
}
|
|
|
|
/* popup edit chart */
|
|
#chart_float_editing {
|
|
display: none;
|
|
position: relative;
|
|
z-index: 999;
|
|
width: 815px;
|
|
padding: 0 20px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea {
|
|
position: absolute;
|
|
overflow: auto;
|
|
right: 20px;
|
|
width: 615px;
|
|
height: 300px;
|
|
padding: 20px;
|
|
margin: 0 0 40px 0;
|
|
background-color: #1E88E5;
|
|
}
|
|
#chart_float_editing .chartSettingsArea ul.vrednost_sort li {
|
|
border: 1px solid #E5E5E5;
|
|
}
|
|
#chart_float_editing .chartSettingsArea .chart_setting {
|
|
padding: 5px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul {
|
|
padding: 3px 20px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li {
|
|
padding: 2px 0px 3px 0px;
|
|
}
|
|
#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li .chart_advanced_warning {
|
|
padding: 0px 10px;
|
|
color: red;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs {
|
|
position: absolute;
|
|
width: 160px;
|
|
height: 260px;
|
|
padding: 0px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: white;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul li {
|
|
width: 100%;
|
|
height: 20px;
|
|
padding: 10px 0;
|
|
cursor: pointer;
|
|
}
|
|
#chart_float_editing .chartSettingsTabs ul li.active {
|
|
background-color: #1E88E5;
|
|
}
|
|
#chart_float_editing .form-item {
|
|
padding: 3px;
|
|
width: 200px;
|
|
}
|
|
#chart_float_editing .colorwell {
|
|
width: 70px;
|
|
height: 20px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
/*color picker*/
|
|
.farbtastic {
|
|
position: relative;
|
|
width: 195px;
|
|
height: 195px;
|
|
}
|
|
.farbtastic * {
|
|
position: absolute;
|
|
cursor: crosshair;
|
|
}
|
|
.farbtastic .wheel {
|
|
width: 195px;
|
|
height: 195px;
|
|
background: url(../../../admin/survey/img_0/wheel.png) no-repeat;
|
|
width: 195px;
|
|
height: 195px;
|
|
}
|
|
.farbtastic .color {
|
|
top: 47px;
|
|
left: 47px;
|
|
width: 101px;
|
|
height: 101px;
|
|
}
|
|
.farbtastic .overlay {
|
|
top: 47px;
|
|
left: 47px;
|
|
width: 101px;
|
|
height: 101px;
|
|
background: url(../../../admin/survey/img_0/mask.png) no-repeat;
|
|
}
|
|
.farbtastic .marker {
|
|
width: 17px;
|
|
height: 17px;
|
|
margin: -8px 0 0 -8px;
|
|
overflow: hidden;
|
|
background: url(../../../admin/survey/img_0/marker.png) no-repeat;
|
|
}
|
|
|
|
#custom_report_alert {
|
|
display: none;
|
|
margin-left: -200px;
|
|
width: 280px;
|
|
height: 100px;
|
|
}
|
|
#custom_report_alert .buttons {
|
|
position: absolute;
|
|
right: 10px;
|
|
bottom: 15px;
|
|
}
|
|
|
|
table.gdpr_surveys tr.red_row td {
|
|
background-color: #FFEFEF !important;
|
|
}
|
|
table.gdpr_surveys tr.green_row td {
|
|
background-color: #a8eea8 !important;
|
|
}
|
|
table.gdpr_surveys.requests td div.gdpr_requests_wrap {
|
|
max-width: 204px;
|
|
min-width: 204px;
|
|
overflow-wrap: break-word;
|
|
white-space: normal;
|
|
padding: 8px 0px;
|
|
}
|
|
|
|
div#gdrp_requests_unresolved {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 25-Jul-2018, 11:34:25
|
|
Author : podkrizniku
|
|
*/
|
|
div#main.hide_header {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
#new_anketa_div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
#new_anketa_div .layout_left_item {
|
|
width: 308px;
|
|
height: 100vh !important;
|
|
padding: 4px;
|
|
background-color: #FFFFFF;
|
|
border-right: 1px solid #E5E5E5;
|
|
border-left: none;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
margin-right: 0;
|
|
box-shadow: none;
|
|
height: fit-content;
|
|
}
|
|
#new_anketa_div .layout_left_item .item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
padding: 24px 0 24px 70px;
|
|
border: 1px solid #E5E5E5;
|
|
color: #333333;
|
|
background-color: #F8F8F8;
|
|
}
|
|
#new_anketa_div .layout_left_item .item:hover {
|
|
background-color: #ebebeb;
|
|
}
|
|
#new_anketa_div .layout_left_item .item span.new_survey_menu_icon {
|
|
margin-right: 8px;
|
|
margin-left: 0;
|
|
}
|
|
#new_anketa_div .layout_left_item .item.active {
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_left_item .item.active:hover {
|
|
background-color: #187bd1;
|
|
}
|
|
#new_anketa_div .layout_left_item ul {
|
|
list-style-type: none;
|
|
padding-left: 70px;
|
|
margin: 16px 0;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li {
|
|
margin-bottom: 3px;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li:last-of-type {
|
|
margin-bottom: 0px;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li a {
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li a:hover {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_left_item ul li .active {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 25-Jul-2018, 11:36:53
|
|
Author : podkrizniku
|
|
*/
|
|
#new_anketa_div div.button_holder {
|
|
margin-top: 62px;
|
|
}
|
|
#new_anketa_div .layout_right_item {
|
|
margin-top: 64px;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 90%;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering {
|
|
max-width: 1060px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering span.faicon.fa-times {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-top: 12px;
|
|
margin-right: 12px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .pre-title {
|
|
color: #1E88E5;
|
|
font-weight: 600;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .title {
|
|
margin-bottom: 32px;
|
|
font-size: 26px;
|
|
overflow: hidden;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .title:after {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 0.5em;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
margin-right: -100%;
|
|
margin-left: 12px;
|
|
border-top: 1px solid #C4C4C4;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset p.bottom32 {
|
|
margin-bottom: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset p.top32 {
|
|
margin-top: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_horizontal_wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: 32px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 36px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder input[type=text] {
|
|
width: 332px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder select.dropdown {
|
|
width: 332px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting_holder span.charalimit {
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
width: 332px;
|
|
color: #777777;
|
|
text-align: right;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting {
|
|
/**input[type="file"]#restore {
|
|
display: none;
|
|
}
|
|
|
|
//Button - medium - gray
|
|
label.custom_file_upload {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
|
|
font-weight: $semi-bold;
|
|
font-family: $font_family;
|
|
|
|
box-shadow: none;
|
|
border: 0;
|
|
|
|
transition: 0.3s;
|
|
|
|
padding: 10px 32px;
|
|
min-width: 160px;
|
|
font-size: 16px;
|
|
|
|
color: $black;
|
|
|
|
background-color: $gray;
|
|
border: 1px $black solid;
|
|
|
|
&:hover {
|
|
background-color: darken($gray, 5%);
|
|
}
|
|
|
|
|
|
}**/
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .radioSetting_type.active {
|
|
color: #777777;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] {
|
|
margin: 0 8px 4px 0;
|
|
display: none !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio:before {
|
|
font-family: "Font Awesome 5 Free";
|
|
display: inline-block;
|
|
content: "\f111";
|
|
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: "\f192";
|
|
}
|
|
#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: "\f0c8";
|
|
letter-spacing: 10px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox]:checked + span.enka-checkbox-radio:before {
|
|
content: "\f14a";
|
|
letter-spacing: 8px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .custom_radio_picture.obarvan > label > span.enka-custom-radio:before {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .visual-radio-scale.checked .enka-vizualna-skala::before {
|
|
color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text {
|
|
width: 350px;
|
|
margin-right: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text span {
|
|
line-height: 28px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_title_text_holder .setting.survey_title_text select {
|
|
height: 40px;
|
|
width: 330px;
|
|
font-size: 15px !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder label {
|
|
margin: 0;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type {
|
|
cursor: pointer;
|
|
width: 332px;
|
|
max-height: 68px;
|
|
margin-right: 36px;
|
|
padding: 26px 0;
|
|
text-align: center;
|
|
border: 1px #E5E5E5 solid;
|
|
background-color: #F8F8F8;
|
|
border-radius: 2px;
|
|
-moz-border-radius: 2px;
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type:hover {
|
|
background-color: #f3f3f3;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type span.faicon {
|
|
margin-right: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type.active {
|
|
border-color: #1E88E5;
|
|
background-color: #1E88E5;
|
|
color: #FFFFFF;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin {
|
|
overflow: hidden;
|
|
height: 270px;
|
|
display: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skins_holder {
|
|
overflow: hidden;
|
|
position: absolute;
|
|
height: 220px;
|
|
width: 83%;
|
|
left: 120px;
|
|
margin-top: 10px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skins_holder #noSurvey_skins {
|
|
width: 3450px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin {
|
|
cursor: pointer;
|
|
float: left;
|
|
margin: 0 10px;
|
|
padding: 5px 5px 15px 5px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
background-color: #1E88E5;
|
|
border: none;
|
|
/*border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;*/
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin:hover {
|
|
color: #777777;
|
|
background-color: #187bd1;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin .preview {
|
|
width: 200px;
|
|
height: 150px;
|
|
margin-bottom: 4px;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin.selected {
|
|
color: #777777;
|
|
background-color: #FF0000;
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #noSurvey_skins .skin.selected .preview {
|
|
border: none;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skin_arrow_left {
|
|
float: left;
|
|
width: 30px;
|
|
height: 40px;
|
|
margin-top: 80px;
|
|
margin-left: 20px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin #skin_arrow_right {
|
|
float: right;
|
|
width: 30px;
|
|
height: 40px;
|
|
margin-top: 80px;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons {
|
|
width: auto;
|
|
margin: 20px auto;
|
|
text-align: center;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_create {
|
|
display: inline-block;
|
|
padding: 12px 0px;
|
|
margin: 8px 15px;
|
|
width: 120px;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: 40px;
|
|
-moz-border-radius: 40px;
|
|
-webkit-border-radius: 40px;
|
|
color: white;
|
|
background-color: #1E88E5;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_create:hover {
|
|
background-color: #FF0000;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_cancel {
|
|
display: inline-block;
|
|
padding: 11px 0px;
|
|
margin: 8px 15px;
|
|
width: 120px;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: 40px;
|
|
-moz-border-radius: 40px;
|
|
-webkit-border-radius: 40px;
|
|
color: #1E88E5 !important;
|
|
background-color: #ffffff;
|
|
border: 1px #1E88E5 solid;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_buttons a #noSurvey_cancel:hover {
|
|
background-color: #1E88E5;
|
|
color: white !important;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
box-sizing: border-box;
|
|
width: 90%;
|
|
}
|
|
#new_anketa_div .layout_right_item .layout_right_centering .noSurvey_template .noSurvey_template_wrap .noSurvey_template_holder .template {
|
|
cursor: pointer;
|
|
margin-bottom: 32px;
|
|
border: solid 1px #E5E5E5;
|
|
width: 292px;
|
|
height: 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: "\f111";
|
|
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#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;
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
#quick_comments_link.newCss {
|
|
display: none;
|
|
}
|
|
|
|
#firstNavigation ol.right-side {
|
|
display: none;
|
|
}
|
|
|
|
div.status_advanced {
|
|
flex-direction: column;
|
|
}
|
|
|
|
div.status_advanced_box {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a.status_advanced_link {
|
|
width: 95%;
|
|
}
|
|
|
|
.content_div_normalmode {
|
|
overflow-x: auto;
|
|
}
|
|
.content_div_normalmode::-webkit-scrollbar {
|
|
background-color: inherit;
|
|
height: 5px;
|
|
}
|
|
.content_div_normalmode::-webkit-scrollbar-thumb {
|
|
background: #c4c4c4;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
@media (max-width: 1100px) and (prefers-color-scheme: dark) {
|
|
.content_div_normalmode::-webkit-scrollbar-thumb {
|
|
background: #c4c4c4;
|
|
}
|
|
}
|
|
@media (max-width: 850px) {
|
|
#main {
|
|
margin-top: 70px;
|
|
padding-bottom: 30px;
|
|
/*overflow-x: scroll;*/
|
|
}
|
|
#main #anketa_edit {
|
|
box-sizing: border-box !important;
|
|
padding: 15px !important;
|
|
}
|
|
#main #placeholder {
|
|
width: auto;
|
|
}
|
|
|
|
fieldset {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
fieldset .nastavitveSpan1,
|
|
fieldset .nastavitveSpan2,
|
|
fieldset .nastavitveSpan3,
|
|
fieldset .nastavitveSpan4,
|
|
fieldset .nastavitveSpan5,
|
|
fieldset .nastavitveSpan6 {
|
|
width: auto !important;
|
|
display: block !important;
|
|
float: none !important;
|
|
text-align: left !important;
|
|
padding: 15px 0 5px 0 !important;
|
|
}
|
|
fieldset select,
|
|
fieldset .select2-container,
|
|
fieldset input[type=text],
|
|
fieldset textarea {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
fieldset .setting {
|
|
height: auto !important;
|
|
}
|
|
|
|
#vnosi_paginacija div select {
|
|
display: inline-block;
|
|
width: fit-content;
|
|
margin: 0 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
div.breadcrumbs {
|
|
display: block;
|
|
padding: 15px;
|
|
color: #1e88e5;
|
|
font-weight: 600;
|
|
}
|
|
|
|
header {
|
|
/* Mobile meni */
|
|
/* Mobile meni - NASTAVITVE V UREJANJU ANKETE*/
|
|
}
|
|
header .desktop_header {
|
|
display: none;
|
|
}
|
|
header .mobile_header {
|
|
position: fixed;
|
|
z-index: 9990;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 70px;
|
|
border-bottom: 1px solid #efefef;
|
|
}
|
|
header .mobile_header.survey_edit {
|
|
color: white;
|
|
background-color: #1e88e5;
|
|
}
|
|
header .mobile_header.survey_list {
|
|
color: #1e88e5;
|
|
background-color: white;
|
|
}
|
|
header .mobile_header .mobile_menu_icon {
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
header .mobile_header .mobile_menu_icon.mobile_menu_close {
|
|
display: none;
|
|
}
|
|
header .mobile_header .mobile_menu_icon.mobile_menu_close span {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
line-height: 25px;
|
|
}
|
|
header .mobile_header .mobile_menu_icon span {
|
|
cursor: pointer;
|
|
}
|
|
header .mobile_header .mobile_settings_icon {
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
header .mobile_header .mobile_settings_icon.mobile_settings_close {
|
|
display: none;
|
|
}
|
|
header .mobile_header .mobile_settings_icon.mobile_settings_close span {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
line-height: 25px;
|
|
}
|
|
header .mobile_header .mobile_settings_icon span {
|
|
cursor: pointer;
|
|
}
|
|
header .mobile_header .mobile_settings_icon span::before {
|
|
font-size: 24px;
|
|
}
|
|
header .mobile_header .mobile_survey_title {
|
|
width: calc(100% - 120px);
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
header .mobile_header .mobile_logo {
|
|
width: calc(100% - 120px);
|
|
}
|
|
header .mobile_header .mobile_logo #enka_logo {
|
|
margin: 0 auto;
|
|
}
|
|
header .mobile_menu {
|
|
position: fixed;
|
|
z-index: 9995;
|
|
display: flex;
|
|
flex-direction: column;
|
|
top: 71px;
|
|
bottom: 0;
|
|
width: 85vw;
|
|
color: #333;
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
pointer-events: none;
|
|
transform: translateX(-100%);
|
|
}
|
|
header .mobile_menu:not(.no-transition),
|
|
header .mobile_menu .submenu:not(.no-transition) {
|
|
transition: all 250ms;
|
|
}
|
|
header .mobile_menu.opened {
|
|
pointer-events: auto;
|
|
transform: translateX(0px);
|
|
}
|
|
header .mobile_menu.submenu-opened {
|
|
overflow: hidden;
|
|
}
|
|
header .mobile_menu ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
padding-left: 0px;
|
|
margin: 0;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
header .mobile_menu ul > li {
|
|
display: block;
|
|
}
|
|
header .mobile_menu ul > li > a {
|
|
position: relative;
|
|
display: block;
|
|
padding: 18px 20px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 150ms;
|
|
}
|
|
header .mobile_menu ul > li > a:hover {
|
|
background-color: #c8e3f8;
|
|
border-radius: 3px;
|
|
}
|
|
header .mobile_menu ul > li > a .arrow_back {
|
|
display: block;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 18px;
|
|
transform: rotate(180deg);
|
|
}
|
|
header .mobile_menu ul > li a.active {
|
|
color: #ffa608;
|
|
background-color: inherit;
|
|
}
|
|
header .mobile_menu ul > li:not(:last-child) > a {
|
|
border-bottom: 1px solid #efefef;
|
|
}
|
|
header .mobile_menu .submenu {
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
pointer-events: none;
|
|
z-index: 9998;
|
|
position: fixed;
|
|
bottom: 0;
|
|
top: 0;
|
|
left: 100%;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
background-color: #ffffff;
|
|
}
|
|
header .mobile_menu .submenu.opened {
|
|
left: 0;
|
|
pointer-events: auto;
|
|
}
|
|
header .mobile_menu .submenu.opened:not(.current) {
|
|
overflow: hidden;
|
|
}
|
|
header .mobile_menu .submenu-header {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: flex;
|
|
border-bottom: solid 1px #efefef;
|
|
}
|
|
header .mobile_menu .submenu-header > a {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 18px 20px;
|
|
padding-left: 20px;
|
|
text-decoration: none;
|
|
}
|
|
header .mobile_menu .submenu-header > label {
|
|
display: block;
|
|
width: calc(100% - 110px);
|
|
margin-bottom: 8px;
|
|
margin-top: 20px;
|
|
padding-left: 0px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
opacity: 0.5;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu .arrow_back {
|
|
line-height: 30px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu a {
|
|
font-size: 13px;
|
|
color: #333;
|
|
}
|
|
header .mobile_menu .mobile_menu_user li.has-submenu a .email {
|
|
font-size: 12px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div {
|
|
padding: 5px 0 10px 0;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
header .mobile_menu .mobile_menu_user .submenu_user_content > div .faicon {
|
|
padding-right: 10px;
|
|
vertical-align: -1px;
|
|
}
|
|
header .mobile_settings {
|
|
position: fixed;
|
|
right: 0;
|
|
z-index: 9994;
|
|
top: 71px;
|
|
bottom: 0;
|
|
width: 85vw;
|
|
color: #333;
|
|
background-color: #ffffff;
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: auto;
|
|
/*pointer-events: none;*/
|
|
margin-right: -85vw;
|
|
}
|
|
header .mobile_settings .mobile_settings_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 0 15px 0;
|
|
font-size: 13px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a.anketa_img_nav {
|
|
padding-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px #c8e3f8 solid;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .faicon::before {
|
|
padding-right: 10px;
|
|
font-size: 20px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_icon {
|
|
width: 60px;
|
|
min-width: 60px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_icon.bottom {
|
|
width: 30px;
|
|
min-width: 30px;
|
|
}
|
|
header .mobile_settings .mobile_settings_content a .setting_text {
|
|
width: auto;
|
|
}
|
|
|
|
#srv_footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 0;
|
|
}
|
|
#srv_footer .footer_left {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Popup za vprasajcke */
|
|
.qtip {
|
|
position: fixed !important;
|
|
z-index: 9999999 !important;
|
|
width: 80% !important;
|
|
box-sizing: border-box !important;
|
|
top: 20% !important;
|
|
left: 10% !important;
|
|
box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.34) !important;
|
|
}
|
|
|
|
#main #moje_ankete_edit {
|
|
padding: 20px !important;
|
|
}
|
|
#main #moje_ankete_edit #anketa_edit {
|
|
padding: 0 !important;
|
|
}
|
|
#main #moje_ankete_edit #survey_list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#main #moje_ankete_edit #survey_list > div {
|
|
margin: 15px 0 20px 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #anketa_new_float {
|
|
display: flex;
|
|
justify-content: left;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #pagination {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
transform: none;
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #pagination.bottom {
|
|
display: block;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #sortButton,
|
|
#main #moje_ankete_edit #survey_list #filterButton,
|
|
#main #moje_ankete_edit #survey_list #folderSwitch {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys {
|
|
padding: 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys form {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
#main #moje_ankete_edit #survey_list #searchMySurveys form input[type=text] {
|
|
width: 100%;
|
|
padding: 5px 0 5px 7px;
|
|
}
|
|
#main #moje_ankete_edit #survey_list .div_sl_new {
|
|
padding: 20px 0;
|
|
}
|
|
#main #moje_ankete_edit #survey_list table#surveyList_new td {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(3), #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(6) {
|
|
display: table-cell;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica .folder_left {
|
|
line-height: 20px;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica .folder_right .library_item_setting_text {
|
|
display: none;
|
|
}
|
|
#main #moje_ankete_edit.page_knjiznica ul li.anketa {
|
|
margin: 5px 0;
|
|
}
|
|
#main #moje_ankete_edit fieldset div.data {
|
|
margin-top: 10px;
|
|
}
|
|
#main #moje_ankete_edit fieldset div.setting {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#new_anketa_div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: auto;
|
|
width: 100%;
|
|
}
|
|
#new_anketa_div #left_menu,
|
|
#new_anketa_div #right_content {
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
#new_anketa_div #right_content {
|
|
box-sizing: border-box;
|
|
margin: 20px 0 0 0;
|
|
padding: 0;
|
|
}
|
|
#new_anketa_div #right_content .setting {
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
#new_anketa_div #right_content .survey_title_text_holder {
|
|
flex-direction: column !important;
|
|
}
|
|
#new_anketa_div #right_content select {
|
|
width: 100% !important;
|
|
margin: 0;
|
|
}
|
|
#new_anketa_div #right_content input {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder {
|
|
flex-direction: column !important;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder label {
|
|
margin-bottom: 15px;
|
|
}
|
|
#new_anketa_div #right_content .survey_type_holder label > div {
|
|
box-sizing: border-box;
|
|
padding: 10px !important;
|
|
}
|
|
#new_anketa_div #right_content .fieldset {
|
|
line-height: 24px;
|
|
}
|
|
#new_anketa_div #right_content .fieldset input[type=file] {
|
|
margin-top: 20px;
|
|
}
|
|
#new_anketa_div #input_field_holder,
|
|
#new_anketa_div #preview_field_holder {
|
|
width: 100% !important;
|
|
float: none;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
padding: 10px 0 !important;
|
|
}
|
|
#new_anketa_div .from_text_instructions {
|
|
line-height: 20px !important;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template .template {
|
|
align-self: center;
|
|
width: auto !important;
|
|
}
|
|
#new_anketa_div .fieldset.noSurvey_template .template .template_preview {
|
|
margin-right: 10px !important;
|
|
}
|
|
#new_anketa_div #left_menu ul.template_type_menu {
|
|
display: none;
|
|
}
|
|
#new_anketa_div select.template_type_menu {
|
|
display: block !important;
|
|
height: 40px;
|
|
width: 100%;
|
|
padding: 2px 5px;
|
|
margin-bottom: 40px !important;
|
|
font-size: 15px !important;
|
|
border: 1px solid #c8e3f8 !important;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
table.dashboard {
|
|
border-spacing: 0px;
|
|
}
|
|
table.dashboard > tbody > tr,
|
|
table.dashboard > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.dashboard > tbody > tr > td {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.locked .add-variable-mobile,
|
|
.spremenljivka_content:hover .add-variable {
|
|
display: none !important;
|
|
}
|
|
|
|
#branching {
|
|
width: 100%;
|
|
}
|
|
#branching li {
|
|
margin: 0 10px 0 10px !important;
|
|
}
|
|
#branching .spr_edit {
|
|
display: none !important;
|
|
}
|
|
#branching .content_div_normalmode {
|
|
padding-bottom: 40px;
|
|
}
|
|
#branching .add-variable-mobile {
|
|
display: block;
|
|
position: absolute;
|
|
left: 59px;
|
|
bottom: 20px;
|
|
}
|
|
#branching .empty_vrivanje {
|
|
padding: 30px 0 !important;
|
|
margin: 20px 10px 20px 10px !important;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_title {
|
|
display: none;
|
|
margin: 0 20px;
|
|
font-size: 14px;
|
|
}
|
|
#branching .empty_vrivanje .empty_vrivanje_subtitle {
|
|
display: none;
|
|
margin: 15px 20px 0 15px;
|
|
font-size: 13px;
|
|
}
|
|
#branching .empty_vrivanje .mobile_add_question {
|
|
position: relative;
|
|
bottom: auto;
|
|
}
|
|
#branching #bottom_icons_holder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: left;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 30px 10px 20px 20px;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 0 0 10px 0;
|
|
margin: 0;
|
|
}
|
|
#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a {
|
|
margin: 0 11px 0 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
#toolbox_advanced_settings {
|
|
display: none !important;
|
|
top: 150px;
|
|
}
|
|
|
|
#toolbox_basic {
|
|
display: none !important;
|
|
top: 187px;
|
|
}
|
|
|
|
.mobile_add_question {
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 25px;
|
|
left: calc(50% - 95px);
|
|
width: 190px;
|
|
}
|
|
.mobile_add_question a {
|
|
display: flex !important;
|
|
justify-content: center;
|
|
padding: 10px 20px 10px !important;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
.mobile_add_question .plus {
|
|
margin-right: 8px;
|
|
font-size: 28px;
|
|
line-height: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mobile_add_question_popup {
|
|
z-index: 9999;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
padding: 40px 20px 20px 20px;
|
|
background: white;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item {
|
|
cursor: pointer;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 300px;
|
|
height: 45px;
|
|
margin: 15px auto 5px auto;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
background-color: #f5fafe;
|
|
border: 1px #dfeffb solid;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item:hover {
|
|
background-color: #dfeffb;
|
|
border: 1px #c8e3f8 solid;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.faicon {
|
|
position: absolute;
|
|
left: 20px;
|
|
line-height: 42px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.faicon.matrix_32 {
|
|
line-height: 10px;
|
|
margin-top: 9px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_item span.item_text {
|
|
line-height: 42px;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_button {
|
|
position: absolute;
|
|
bottom: 25px;
|
|
left: calc(50% - 95px);
|
|
box-sizing: border-box;
|
|
width: 190px;
|
|
text-align: center;
|
|
}
|
|
.mobile_add_question_popup .mobile_add_question_button a {
|
|
padding: 10px 20px 10px !important;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#vprasanje_float_editing {
|
|
position: fixed;
|
|
z-index: 99999;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
margin: 0 !important;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
box-shadow: 0px 0px 100px 100px #333;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_edit {
|
|
top: 0;
|
|
margin-bottom: 55px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_tabs {
|
|
position: absolute;
|
|
top: 42px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_tabs a.tab_link {
|
|
height: auto;
|
|
padding: 10px 9px;
|
|
}
|
|
#vprasanje_float_editing .tab {
|
|
padding-top: 100px;
|
|
}
|
|
#vprasanje_float_editing .tab h2 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 42px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
margin: 0;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_buttons {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
position: relative;
|
|
bottom: 30px;
|
|
padding: 0 15px;
|
|
}
|
|
#vprasanje_float_editing #vprasanje_buttons span {
|
|
width: 40%;
|
|
margin-left: 0 !important;
|
|
text-align: center;
|
|
}
|
|
|
|
#main #anketa #globalSetingsList {
|
|
max-width: 100% !important;
|
|
width: 100% !important;
|
|
}
|
|
#main #anketa #globalSetingsList fieldset {
|
|
width: 100% !important;
|
|
}
|
|
|
|
/* NASTAVITVE in ARHIVI */
|
|
#main #anketa #anketa_edit.page_nastavitve,
|
|
#main #anketa #anketa_edit.page_osn_pod,
|
|
#main #anketa #anketa_edit.page_mobile_settings,
|
|
#main #anketa #anketa_edit.page_jezik,
|
|
#main #anketa #anketa_edit.page_dostop,
|
|
#main #anketa #anketa_edit.page_piskot,
|
|
#main #anketa #anketa_edit.page_alert,
|
|
#main #anketa #anketa_edit.page_trajanje,
|
|
#main #anketa #anketa_edit.page_skupine,
|
|
#main #anketa #anketa_edit.page_urejanje,
|
|
#main #anketa #anketa_edit.page_prikaz,
|
|
#main #anketa #anketa_edit.page_metadata,
|
|
#main #anketa #anketa_edit.page_missing,
|
|
#main #anketa #anketa_edit.page_export_settings,
|
|
#main #anketa #anketa_edit.page_gdpr_settings,
|
|
#main #anketa #anketa_edit.page_uporabnost,
|
|
#main #anketa #anketa_edit.page_kviz,
|
|
#main #anketa #anketa_edit.page_voting,
|
|
#main #anketa #anketa_edit.page_social_network,
|
|
#main #anketa #anketa_edit.page_slideshow,
|
|
#main #anketa #anketa_edit.page_telephone,
|
|
#main #anketa #anketa_edit.page_chat,
|
|
#main #anketa #anketa_edit.page_panel,
|
|
#main #anketa #anketa_edit.page_advanced_paradata,
|
|
#main #anketa #anketa_edit.page_json_survey_export,
|
|
#main #anketa #anketa_edit.page_fieldwork {
|
|
flex-direction: column-reverse;
|
|
}
|
|
#main #anketa #anketa_edit.page_nastavitve > div,
|
|
#main #anketa #anketa_edit.page_osn_pod > div,
|
|
#main #anketa #anketa_edit.page_mobile_settings > div,
|
|
#main #anketa #anketa_edit.page_jezik > div,
|
|
#main #anketa #anketa_edit.page_dostop > div,
|
|
#main #anketa #anketa_edit.page_piskot > div,
|
|
#main #anketa #anketa_edit.page_alert > div,
|
|
#main #anketa #anketa_edit.page_trajanje > div,
|
|
#main #anketa #anketa_edit.page_skupine > div,
|
|
#main #anketa #anketa_edit.page_urejanje > div,
|
|
#main #anketa #anketa_edit.page_prikaz > div,
|
|
#main #anketa #anketa_edit.page_metadata > div,
|
|
#main #anketa #anketa_edit.page_missing > div,
|
|
#main #anketa #anketa_edit.page_export_settings > div,
|
|
#main #anketa #anketa_edit.page_gdpr_settings > div,
|
|
#main #anketa #anketa_edit.page_uporabnost > div,
|
|
#main #anketa #anketa_edit.page_kviz > div,
|
|
#main #anketa #anketa_edit.page_voting > div,
|
|
#main #anketa #anketa_edit.page_social_network > div,
|
|
#main #anketa #anketa_edit.page_slideshow > div,
|
|
#main #anketa #anketa_edit.page_telephone > div,
|
|
#main #anketa #anketa_edit.page_chat > div,
|
|
#main #anketa #anketa_edit.page_panel > div,
|
|
#main #anketa #anketa_edit.page_advanced_paradata > div,
|
|
#main #anketa #anketa_edit.page_json_survey_export > div,
|
|
#main #anketa #anketa_edit.page_fieldwork > div {
|
|
width: 100%;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
/* OBLIKA */
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder {
|
|
width: 100%;
|
|
}
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#theme-editor {
|
|
width: 100% !important;
|
|
float: none !important;
|
|
}
|
|
|
|
#theme-preview {
|
|
width: 100% !important;
|
|
float: none !important;
|
|
margin-top: 80px !important;
|
|
}
|
|
|
|
/* ARHIVI */
|
|
#main #anketa #anketa_edit.page_arhivi {
|
|
flex-direction: column-reverse;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi > div {
|
|
width: 100% !important;
|
|
margin: 20px 0;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input {
|
|
width: 100% !important;
|
|
}
|
|
|
|
#srv_diagnostic br {
|
|
display: none;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results,
|
|
#srv_diagnostic #srv_diagnostic_results_right {
|
|
clear: both;
|
|
display: block !important;
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 20px 0 !important;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results table,
|
|
#srv_diagnostic #srv_diagnostic_results_right table {
|
|
width: 100%;
|
|
min-width: 100%;
|
|
}
|
|
#srv_diagnostic #srv_diagnostic_results table td + td,
|
|
#srv_diagnostic #srv_diagnostic_results_right table td + td {
|
|
width: auto !important;
|
|
}
|
|
|
|
.subpage_testnipodatki {
|
|
line-height: 20px;
|
|
}
|
|
.subpage_testnipodatki form input[type=submit] {
|
|
margin: 10px 0 10px 15px;
|
|
padding: 3px;
|
|
}
|
|
.subpage_testnipodatki form label {
|
|
padding-top: 20px;
|
|
}
|
|
.subpage_testnipodatki form label input {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
#vabila > table,
|
|
table.invitations_settings,
|
|
#inv_msg_preview table,
|
|
#inv_send_mail table {
|
|
border-spacing: 0px;
|
|
width: 100%;
|
|
}
|
|
#vabila > table tbody,
|
|
table.invitations_settings tbody,
|
|
#inv_msg_preview table tbody,
|
|
#inv_send_mail table tbody {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100% !important;
|
|
}
|
|
#vabila > table > tbody > tr,
|
|
#vabila > table > tbody > tr > td,
|
|
table.invitations_settings > tbody > tr,
|
|
table.invitations_settings > tbody > tr > td,
|
|
#inv_msg_preview table > tbody > tr,
|
|
#inv_msg_preview table > tbody > tr > td,
|
|
#inv_send_mail table > tbody > tr,
|
|
#inv_send_mail table > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
#vabila > table > tbody > tr > td,
|
|
table.invitations_settings > tbody > tr > td,
|
|
#inv_msg_preview table > tbody > tr > td,
|
|
#inv_send_mail table > tbody > tr > td {
|
|
height: auto !important;
|
|
margin: 0;
|
|
padding: 0 !important;
|
|
}
|
|
#vabila > table > tbody > tr > td > br,
|
|
table.invitations_settings > tbody > tr > td > br,
|
|
#inv_msg_preview table > tbody > tr > td > br,
|
|
#inv_send_mail table > tbody > tr > td > br {
|
|
display: none;
|
|
}
|
|
#vabila > table > tbody > tr > td > div,
|
|
#vabila > table > tbody > tr > td > fieldset,
|
|
table.invitations_settings > tbody > tr > td > div,
|
|
table.invitations_settings > tbody > tr > td > fieldset,
|
|
#inv_msg_preview table > tbody > tr > td > div,
|
|
#inv_msg_preview table > tbody > tr > td > fieldset,
|
|
#inv_send_mail table > tbody > tr > td > div,
|
|
#inv_send_mail table > tbody > tr > td > fieldset {
|
|
margin: 15px 0;
|
|
}
|
|
#vabila > table colgroup,
|
|
#vabila > table colgroup col,
|
|
table.invitations_settings colgroup,
|
|
table.invitations_settings colgroup col,
|
|
#inv_msg_preview table colgroup,
|
|
#inv_msg_preview table colgroup col,
|
|
#inv_send_mail table colgroup,
|
|
#inv_send_mail table colgroup col {
|
|
width: 100% !important;
|
|
}
|
|
#vabila > table p label,
|
|
table.invitations_settings p label,
|
|
#inv_msg_preview table p label,
|
|
#inv_send_mail table p label {
|
|
width: 100%;
|
|
}
|
|
#vabila > table p label input[type=text],
|
|
#vabila > table p label input[type=number],
|
|
#vabila > table p label input[type=password],
|
|
table.invitations_settings p label input[type=text],
|
|
table.invitations_settings p label input[type=number],
|
|
table.invitations_settings p label input[type=password],
|
|
#inv_msg_preview table p label input[type=text],
|
|
#inv_msg_preview table p label input[type=number],
|
|
#inv_msg_preview table p label input[type=password],
|
|
#inv_send_mail table p label input[type=text],
|
|
#inv_send_mail table p label input[type=number],
|
|
#inv_send_mail table p label input[type=password] {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#surveyInvitationSetting,
|
|
#surveyInvitationSettingServer {
|
|
min-width: 100% !important;
|
|
width: 100% !important;
|
|
margin: 10px 0 !important;
|
|
box-sizing: border-box !important;
|
|
}
|
|
|
|
#inv_top_navi {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#inv_top_navi .inv_space {
|
|
display: none;
|
|
}
|
|
#inv_top_navi > #inv_step_nav {
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0 0 15px 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav .inv_step {
|
|
height: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav span.label {
|
|
padding: 0;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step span.circle {
|
|
width: 18px;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step span.label {
|
|
padding: 0 0 0 3px;
|
|
}
|
|
#inv_top_navi > #inv_step_nav.yellow .inv_step_space {
|
|
display: none;
|
|
}
|
|
|
|
#inv_recipients_profiles_holder,
|
|
#inv_import_list_container,
|
|
#inv_messages_profiles_holder,
|
|
#inv_msg_preview_hld,
|
|
#invitation_profile_notes,
|
|
#inv_select_mail_to,
|
|
#inv_select_mail_preview {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 15px 0 !important;
|
|
}
|
|
#inv_recipients_profiles_holder textarea,
|
|
#inv_import_list_container textarea,
|
|
#inv_messages_profiles_holder textarea,
|
|
#inv_msg_preview_hld textarea,
|
|
#invitation_profile_notes textarea,
|
|
#inv_select_mail_to textarea,
|
|
#inv_select_mail_preview textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
#inv_msg_preview table th {
|
|
height: auto !important;
|
|
width: 100% !important;
|
|
margin: 0;
|
|
padding: 20px 0 0 0 !important;
|
|
text-align: left;
|
|
}
|
|
#inv_msg_preview table input {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.addthis_toolbox {
|
|
line-height: 24px;
|
|
}
|
|
.addthis_toolbox .at-icon-wrapper {
|
|
height: 24px !important;
|
|
width: 24px !important;
|
|
}
|
|
.addthis_toolbox .at-icon-wrapper svg {
|
|
height: 24px !important;
|
|
width: 24px !important;
|
|
}
|
|
.addthis_toolbox .addthis_separator {
|
|
font-size: 16px;
|
|
}
|
|
|
|
#inv_field_container ul li {
|
|
width: 45%;
|
|
}
|
|
|
|
.page_data #vnosi_paginacija {
|
|
display: flex;
|
|
flex-direction: column;
|
|
float: none;
|
|
}
|
|
.page_data #vnosi_paginacija > div {
|
|
margin: 5px 0;
|
|
}
|
|
.page_data #vnosi_paginacija label {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.page_data #data_search_filter {
|
|
display: flex;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.page_data #data_search_filter input {
|
|
box-sizing: border-box;
|
|
margin-left: 10px;
|
|
width: 100%;
|
|
}
|
|
.page_data .dataSettingsBasic {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
.page_data #toggleDataCheckboxes {
|
|
display: none;
|
|
}
|
|
.page_data #div_vnosi_data #dataTableScroller {
|
|
display: none;
|
|
}
|
|
.page_data #div_vnosi_data #tableContainer {
|
|
overflow-y: hidden;
|
|
padding-bottom: 20px;
|
|
}
|
|
.page_data #bottom_data_legend {
|
|
display: block;
|
|
float: none;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 5px 0 10px 0;
|
|
}
|
|
|
|
.subpage_append,
|
|
.subpage_merge,
|
|
.subpage_calculation,
|
|
.subpage_coding_auto,
|
|
.subpage_recoding,
|
|
.subpage_coding,
|
|
.page_export {
|
|
flex-direction: column !important;
|
|
}
|
|
.subpage_append .anketa_edit_main,
|
|
.subpage_merge .anketa_edit_main,
|
|
.subpage_calculation .anketa_edit_main,
|
|
.subpage_coding_auto .anketa_edit_main,
|
|
.subpage_recoding .anketa_edit_main,
|
|
.subpage_coding .anketa_edit_main,
|
|
.page_export .anketa_edit_main {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
}
|
|
.subpage_append .anketa_edit_left,
|
|
.subpage_merge .anketa_edit_left,
|
|
.subpage_calculation .anketa_edit_left,
|
|
.subpage_coding_auto .anketa_edit_left,
|
|
.subpage_recoding .anketa_edit_left,
|
|
.subpage_coding .anketa_edit_left,
|
|
.page_export .anketa_edit_left {
|
|
display: none !important;
|
|
}
|
|
.subpage_append textarea,
|
|
.subpage_merge textarea,
|
|
.subpage_calculation textarea,
|
|
.subpage_coding_auto textarea,
|
|
.subpage_recoding textarea,
|
|
.subpage_coding textarea,
|
|
.page_export textarea {
|
|
width: 100% !important;
|
|
}
|
|
.subpage_append #inv_upload_recipients_nosbmt + span,
|
|
.subpage_merge #inv_upload_recipients_nosbmt + span,
|
|
.subpage_calculation #inv_upload_recipients_nosbmt + span,
|
|
.subpage_coding_auto #inv_upload_recipients_nosbmt + span,
|
|
.subpage_recoding #inv_upload_recipients_nosbmt + span,
|
|
.subpage_coding #inv_upload_recipients_nosbmt + span,
|
|
.page_export #inv_upload_recipients_nosbmt + span {
|
|
display: block;
|
|
clear: both;
|
|
margin: 40px 0 0 0 !important;
|
|
}
|
|
|
|
.analysis_bottom_settings a:first-child {
|
|
display: block;
|
|
margin: 0 0 20px 0 !important;
|
|
}
|
|
|
|
.chart_holder {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.chart_holder .chart_img {
|
|
min-height: auto;
|
|
float: none;
|
|
pointer-events: none;
|
|
}
|
|
.chart_holder .chart_img img {
|
|
width: 100%;
|
|
}
|
|
.chart_holder .chart_settings {
|
|
display: none;
|
|
}
|
|
.chart_holder .chart_bottom_settings:first-child {
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
table.analysis_reports {
|
|
border-spacing: 0px;
|
|
}
|
|
table.analysis_reports > tbody > tr,
|
|
table.analysis_reports > tbody > tr > td {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
table.analysis_reports > tbody > tr > td {
|
|
margin: 10px 0;
|
|
}
|
|
table.analysis_reports fieldset {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.noSurvey_sequence {
|
|
padding: 0;
|
|
}
|
|
.noSurvey_sequence .main_holder.main {
|
|
flex-direction: column;
|
|
}
|
|
.noSurvey_sequence .main_holder .left_holder {
|
|
width: 90% !important;
|
|
margin: auto;
|
|
}
|
|
.noSurvey_sequence .main_holder .right_holder {
|
|
width: 90% !important;
|
|
margin: auto;
|
|
}
|
|
.noSurvey_sequence .buttons_holder {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.noSurvey_sequence .buttons_holder a .button {
|
|
margin: 10px 30px;
|
|
}
|
|
|
|
#table-horizontal-scroll-wrapper1-userchanges {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
#table-horizontal-scroll-wrapper2-userchanges {
|
|
display: table-cell;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
#table-horizontal-scroll-wrapper2-userchanges table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.page_arhivi,
|
|
.page_tracking,
|
|
.subpage_anal_arch,
|
|
.subpage_view_archive,
|
|
.subpage_anal_arch {
|
|
flex-direction: column !important;
|
|
}
|
|
.page_arhivi .anketa_edit_left,
|
|
.page_tracking .anketa_edit_left,
|
|
.subpage_anal_arch .anketa_edit_left,
|
|
.subpage_view_archive .anketa_edit_left,
|
|
.subpage_anal_arch .anketa_edit_left {
|
|
display: none !important;
|
|
}
|
|
.page_arhivi .anketa_edit_main,
|
|
.page_tracking .anketa_edit_main,
|
|
.subpage_anal_arch .anketa_edit_main,
|
|
.subpage_view_archive .anketa_edit_main,
|
|
.subpage_anal_arch .anketa_edit_main {
|
|
width: 100% !important;
|
|
box-sizing: border-box;
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=admin_new.css.map */
|