271 lines
3.8 KiB
SCSS
271 lines
3.8 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 : 24-Jul-2018, 12:47:41
|
|
Author : podkrizniku
|
|
*/
|
|
|
|
.as_link {
|
|
color: $strong_blue;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
display: inline;
|
|
&:hover {
|
|
color: $orange;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
@mixin link_class() {
|
|
color: $strong_blue;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: $orange;
|
|
}
|
|
}
|
|
.link {
|
|
@include link_class();
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
.bold {
|
|
font-weight: 600;
|
|
}
|
|
.strong {
|
|
font-weight: 600;
|
|
}
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
b {
|
|
font-weight: 600;
|
|
}
|
|
.semibold {
|
|
font-weight: 500;
|
|
}
|
|
.autoWidth {
|
|
width: auto;
|
|
p {
|
|
width: auto;
|
|
}
|
|
}
|
|
.textItalic {
|
|
font-style: italic;
|
|
font-weight: normal !important;
|
|
}
|
|
.italic {
|
|
font-style: italic;
|
|
font-weight: normal !important;
|
|
}
|
|
.spaceLeft {
|
|
margin-left: 8px !important;
|
|
}
|
|
.spaceLeftBig {
|
|
margin-left: 20px !important;
|
|
}
|
|
.spaceRight {
|
|
margin-right: 8px !important;
|
|
}
|
|
.spaceRightBig {
|
|
margin-right: 20px !important;
|
|
}
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
.fullHeight {
|
|
height: 100%;
|
|
}
|
|
.fullWidth {
|
|
width: 100%;
|
|
}
|
|
.halfWidth {
|
|
width: 50%;
|
|
}
|
|
.taLeft {
|
|
text-align: left;
|
|
}
|
|
.taRight {
|
|
text-align: right;
|
|
}
|
|
.taCenter {
|
|
text-align: center;
|
|
}
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
.clr {
|
|
clear: both;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
height: 0px;
|
|
&:after {
|
|
content: ".";
|
|
display: block;
|
|
height: 0;
|
|
clear: both;
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
.floatLeft {
|
|
float: left;
|
|
display: block;
|
|
width: auto;
|
|
}
|
|
.floatRight {
|
|
float: right;
|
|
display: block;
|
|
width: auto;
|
|
}
|
|
.displayTop {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
}
|
|
.displayNone {
|
|
display: none;
|
|
}
|
|
.displayBlock {
|
|
display: block !important;
|
|
}
|
|
|
|
.link_no_decoration {
|
|
a {
|
|
color: $strong_blue;
|
|
text-decoration: none;
|
|
&:hover {
|
|
color: $strong_blue;
|
|
text-decoration: none;
|
|
}
|
|
&:visited {
|
|
color: $strong_blue;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
.visibility_hidden {
|
|
visibility: hidden;
|
|
}
|
|
.small {
|
|
font-size: smaller;
|
|
}
|
|
.movable {
|
|
cursor: move;
|
|
}
|
|
.move {
|
|
cursor: move;
|
|
}
|
|
.moveY {
|
|
cursor: n-resize;
|
|
}
|
|
.enkaIcon {
|
|
padding: 3px 2px 2px 2px !important;
|
|
}
|
|
label.middle {
|
|
input {
|
|
vertical-align: bottom;
|
|
}
|
|
}
|
|
label.top {
|
|
input {
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
.highlight {
|
|
font-weight: bold;
|
|
}
|
|
.down {
|
|
line-height: 16px;
|
|
vertical-align: bottom;
|
|
padding-top: 2px;
|
|
}
|
|
.noMargin {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
div.left-float {
|
|
display: inline-block;
|
|
float: left;
|
|
padding-bottom: 3px;
|
|
padding-right: 10px;
|
|
}
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
/*links*/
|
|
li.highlightLineTab {
|
|
a {
|
|
background-color: white;
|
|
border-bottom: medium none;
|
|
padding-bottom: 2px;
|
|
span {
|
|
font-weight: bold;
|
|
color: $red_error;
|
|
}
|
|
}
|
|
}
|
|
.option {
|
|
border-bottom: 1px solid white;
|
|
}
|
|
.div_error {
|
|
padding: 10px;
|
|
margin: 3px;
|
|
background-color: $soft_blue_very_lighten;
|
|
img {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
a.help {
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
color: $strong_blue;
|
|
&:hover {
|
|
text-decoration: none;
|
|
color: $orange;
|
|
}
|
|
}
|
|
a.edithelp {
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
color: $strong_blue;
|
|
&:VISITED {
|
|
color: $strong_blue;
|
|
}
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
.z-index200 {
|
|
z-index: 200 !important;
|
|
}
|
|
.editable[contenteditable=true] {
|
|
&:hover {
|
|
background-color: $soft_blue_very_lighten;
|
|
border: 1px solid $soft_blue;
|
|
}
|
|
&:focus {
|
|
background-color: $soft_blue_very_lighten;
|
|
border: 1px dashed $soft_blue_very_darken;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
border: 1px solid white;
|
|
}
|
|
.tab {
|
|
background-color: white;
|
|
}
|
|
.link-sv-moder {
|
|
color: $soft_blue;
|
|
&:hover {
|
|
color: $strong_blue;
|
|
}
|
|
}
|
|
.link-rdec {
|
|
color: $orange_darken;
|
|
}
|
|
@mixin margin_bottom_text_rows {
|
|
margin-bottom: 2px;
|
|
} |