168 lines
2.5 KiB
SCSS
168 lines
2.5 KiB
SCSS
/* Generic popup */
|
|
#popup_note {
|
|
display: none;
|
|
max-width: 600px !important;
|
|
|
|
.popup_content{
|
|
margin-bottom: 40px;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
#clipboard {
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 50%;
|
|
margin-left: -180px;
|
|
width: 340px;
|
|
background-color: $blue;
|
|
color: white;
|
|
padding: 5px 10px 5px 10px;
|
|
z-index: 1000;
|
|
display: none;
|
|
p {
|
|
margin: 0;
|
|
}
|
|
a {
|
|
color: white;
|
|
}
|
|
}
|
|
#request_help_content {
|
|
a {
|
|
padding-left: 0 !important;
|
|
font-weight: 600 !important;
|
|
color: $blue !important;
|
|
|
|
&:hover {
|
|
color: $yellow !important;
|
|
}
|
|
}
|
|
}
|
|
/*active editors*/
|
|
.active-alert {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
background-color: $gray;
|
|
padding: 1px 10px;
|
|
border-left: 1px solid $red;
|
|
border-bottom: 1px solid $red;
|
|
z-index: 10;
|
|
}
|
|
span.active-editors {
|
|
color: $gray;
|
|
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 {
|
|
ul {
|
|
list-style: square inside;
|
|
}
|
|
li {
|
|
padding-bottom: 5px;
|
|
}
|
|
padding: 10px;
|
|
margin: 3px;
|
|
background-color: $blue;
|
|
border: 1px solid $blue;
|
|
img {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.alert_textarea {
|
|
border: 1px solid silver;
|
|
background-color: $gray;
|
|
}
|
|
#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: $blue;
|
|
text-transform: uppercase;
|
|
|
|
background-color: $blue;
|
|
background-image: none;
|
|
border: 2px solid $blue;
|
|
|
|
&:hover{
|
|
color: $yellow;
|
|
border-color: $yellow;
|
|
}
|
|
}
|
|
#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: $yellow;
|
|
border-top: $yellow 1px solid;
|
|
border-bottom: $yellow 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: $gray;
|
|
background-color: $yellow;
|
|
border: 1px solid $yellow;
|
|
}
|
|
#alternativno-obvestilo.error {
|
|
color: $yellow;
|
|
}
|
|
#alternativno-obvestilo.success {
|
|
color: $blue;
|
|
}
|