131 lines
2.6 KiB
SCSS
131 lines
2.6 KiB
SCSS
/*
|
|
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: $blue !important;
|
|
&:hover{
|
|
color: $dark-blue !important;
|
|
}
|
|
}
|
|
|
|
span.faicon.edit-vprasanje{
|
|
line-height: 25px;
|
|
|
|
&:before{
|
|
font-size: 18px;
|
|
content: "\f031";
|
|
}
|
|
}
|
|
|
|
a.faicon.edit::before{
|
|
font-size: 16px;
|
|
content: "\f304";
|
|
}
|
|
a.faicon.addif::before{
|
|
font-family: $font_family;
|
|
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{
|
|
@include icon_preview_before();
|
|
}
|
|
a.faicon.preview::after{
|
|
@include icon_preview_after();
|
|
}
|
|
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: $blue;
|
|
}
|
|
.variabla span.inline.faicon:hover::before{
|
|
color: $dark-blue;
|
|
}
|
|
|
|
.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: $red;
|
|
}
|
|
.variabla span.inline.faicon.odg_hidden.show-disable::before{
|
|
color: $yellow;
|
|
}
|
|
span.inline.faicon.odg_if_not::before{
|
|
font-family: $font_family;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
content: "IF*";
|
|
}
|
|
|
|
.variabla span.inline.faicon.odg_if_follow::before{
|
|
font-family: $font_family;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
//content: "IF🠞";
|
|
content: "IF";
|
|
}
|
|
.variabla span.inline.faicon.odg_if_follow::after{
|
|
font-size: 14px;
|
|
margin-left: 2px;
|
|
content: "\f0da";
|
|
}
|
|
|
|
.variabla span.inline.faicon.correct::before{
|
|
font-size: 14px;
|
|
font-weight: 900;
|
|
content: "\f00c";
|
|
}
|
|
|
|
.faicon.move_updown::before{
|
|
font-size: 16px;
|
|
color: $dark-blue;
|
|
content: "\f338";
|
|
}
|
|
|
|
.faicon.image_upload::before{
|
|
content: "\f03e";
|
|
font-weight: 400;
|
|
} |