192 lines
4.1 KiB
SCSS
192 lines
4.1 KiB
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-tip{
|
|
display: none !important;
|
|
}
|
|
|
|
.qtip-wrapper{
|
|
overflow: visible !important;
|
|
|
|
border: 0 !important;
|
|
|
|
/* Krizec za zaprtje vprasajcka */
|
|
.qtip-contentWrapper {
|
|
border: 0 !important;
|
|
|
|
.qtip-title {
|
|
padding: 0 !important;
|
|
/*margin-top: 10px;*/
|
|
|
|
.qtip-button{
|
|
position: absolute !important;
|
|
top: -16px;
|
|
right: -10px;
|
|
|
|
font-size: 12px !important;
|
|
color: $very-dark-gray;
|
|
|
|
&:hover{
|
|
color: $black;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Vsebina vprasajcka */
|
|
.qtip-content {
|
|
overflow: visible !important;
|
|
padding: 0 !important;
|
|
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
|
|
background-color: white !important;
|
|
border: 0;
|
|
|
|
textarea{
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Naslov - opcijsko */
|
|
h1{
|
|
margin: 0 0 16px 0;
|
|
|
|
color: $black !important;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
|
|
background-color: white !important;
|
|
|
|
&::before{
|
|
padding-right: 8px;
|
|
|
|
font-family: $fontawesome;
|
|
content: "\f059";
|
|
|
|
font-size: 20px;
|
|
color: $blue;
|
|
vertical-align: -1px;
|
|
}
|
|
}
|
|
|
|
p{
|
|
margin-bottom: 8px;
|
|
|
|
&:last-of-type{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
ul,
|
|
ol{
|
|
margin-bottom: 8px;
|
|
margin: 8px 0 8px 0;
|
|
padding: 0 0 0 20px;
|
|
|
|
li{
|
|
margin: 4px 0;
|
|
}
|
|
}
|
|
|
|
/* Link "Več >" */
|
|
.qtip-more{
|
|
display: block;
|
|
margin-top: 16px;
|
|
|
|
font-weight: 600;
|
|
|
|
a{
|
|
text-decoration: none;
|
|
|
|
&:hover{
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&::after{
|
|
cursor: pointer;
|
|
|
|
padding-left: 8px;
|
|
vertical-align: middle;
|
|
|
|
font-family: $fontawesome;
|
|
content: "\f054";
|
|
font-size: 8px;
|
|
|
|
color: $blue;
|
|
|
|
transition: 0.2s;
|
|
}
|
|
|
|
&:hover{
|
|
|
|
&::after{
|
|
color: $dark-blue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.qtip-borderTop, .qtip-borderBottom {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
|
|
/* toostip popups */
|
|
.expanded-tooltip {
|
|
@include hover_basic();
|
|
|
|
z-index: 99999;
|
|
position: absolute;
|
|
top: -45px;
|
|
left: -25px;
|
|
|
|
display: block;
|
|
width: 200px;
|
|
height: 29px;
|
|
margin: 0;
|
|
}
|
|
|
|
.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;
|
|
|
|
span.arrow {
|
|
left: 12%;
|
|
}
|
|
}
|
|
}
|