Redesign - urejanje vprasanja - desni box - V DELU
This commit is contained in:
parent
4360a668df
commit
6bd2cb242f
File diff suppressed because it is too large
Load Diff
@ -7,3 +7,5 @@
|
|||||||
@import "dodeljeni_uporabniki";
|
@import "dodeljeni_uporabniki";
|
||||||
|
|
||||||
@import "custom_report";
|
@import "custom_report";
|
||||||
|
|
||||||
|
@import "survey_edit";
|
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
Urejanje vprasalnika - popupi
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// Urejanje posamezne vrednosti v urejanju vprasalnika
|
||||||
|
#vrednost_edit {
|
||||||
|
@include popup_general();
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
z-index: 89;
|
||||||
|
min-height: 130px;
|
||||||
|
width: 600px;
|
||||||
|
|
||||||
|
p {
|
||||||
|
padding: 1px 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
padding: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea[name=naslov] {
|
||||||
|
width: 99%;
|
||||||
|
height: 60px;
|
||||||
|
}
|
||||||
|
}
|
@ -1,11 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
To change this license header, choose License Headers in Project Properties.
|
Urejanje vprasanja - nastavitve na desni
|
||||||
To change this template file, choose Tools | Templates
|
|
||||||
and open the template in the editor.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
Created on : 02-Aug-2018, 13:40:52
|
|
||||||
Author : podkrizniku
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.texteditor {
|
.texteditor {
|
||||||
@ -19,7 +13,71 @@ and open the template in the editor.
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
#vprasanje_edit {
|
|
||||||
|
|
||||||
|
#vprasanje_float_editing {
|
||||||
|
display: none;
|
||||||
|
position: relative;
|
||||||
|
z-index: 70;
|
||||||
|
align-self: flex-start;
|
||||||
|
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 305px;
|
||||||
|
margin-left: 20px;
|
||||||
|
|
||||||
|
border: 1px solid $blue;
|
||||||
|
background-color: white;
|
||||||
|
box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.07);
|
||||||
|
|
||||||
|
|
||||||
|
// Tabi na vrhu
|
||||||
|
#vprasanje_tabs {
|
||||||
|
select {
|
||||||
|
float: right;
|
||||||
|
margin: 5px 10px 0 0;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
margin-top: -1px;
|
||||||
|
position: absolute;
|
||||||
|
background-color: $blue;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 100;
|
||||||
|
a.tab_link {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
height: 19px;
|
||||||
|
padding: 7px 4px;
|
||||||
|
margin: 0 1px 0 0;
|
||||||
|
font-size: 12px;
|
||||||
|
border-bottom: 1px solid $blue;
|
||||||
|
color: $gray;
|
||||||
|
background-color: $blue;
|
||||||
|
}
|
||||||
|
a.tab_link.active {
|
||||||
|
border-bottom: 1px solid white;
|
||||||
|
margin: 0 1px 0 0;
|
||||||
|
color: $gray;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
.tab_link_tracking {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: -59px;
|
||||||
|
width: 30px;
|
||||||
|
a.tab_link {
|
||||||
|
background-color: white;
|
||||||
|
color: $blue;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
a.tab_link.active {
|
||||||
|
background-color: white;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Glavna vsebina
|
||||||
|
#vprasanje_edit {
|
||||||
margin: 0px 0px;
|
margin: 0px 0px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -54px;
|
top: -54px;
|
||||||
@ -41,22 +99,29 @@ and open the template in the editor.
|
|||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
margin: 20px 0 20px 0;
|
margin-bottom: 16px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
border: 0;
|
border: 0;
|
||||||
border-top: 1px solid $blue;
|
border-top: 1px solid #D3D3D3;
|
||||||
}
|
}
|
||||||
|
|
||||||
legend {
|
legend {
|
||||||
background-color: transparent;
|
|
||||||
color: $blue;
|
|
||||||
font-weight: 500;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 10px 0 5px;
|
padding: 0 10px 0 5px;
|
||||||
|
|
||||||
|
color: $black;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
text-transform: none;
|
||||||
|
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jquery-selectbox {
|
.jquery-selectbox {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
form[name=vprasanje_edit] {
|
form[name=vprasanje_edit] {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
}
|
}
|
||||||
@ -133,94 +198,19 @@ and open the template in the editor.
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#vprasanje_buttons {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 15px;
|
|
||||||
}
|
|
||||||
#vprasanje_tabs {
|
|
||||||
select {
|
|
||||||
float: right;
|
|
||||||
margin: 5px 10px 0 0;
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
margin-top: -1px;
|
|
||||||
position: absolute;
|
|
||||||
background-color: $blue;
|
|
||||||
width: 100%;
|
|
||||||
z-index: 100;
|
|
||||||
a.tab_link {
|
|
||||||
float: left;
|
|
||||||
display: block;
|
|
||||||
height: 19px;
|
|
||||||
padding: 7px 4px;
|
|
||||||
margin: 0 1px 0 0;
|
|
||||||
font-size: 12px;
|
|
||||||
border-bottom: 1px solid $blue;
|
|
||||||
color: $gray;
|
|
||||||
background-color: $blue;
|
|
||||||
}
|
|
||||||
a.tab_link.active {
|
|
||||||
border-bottom: 1px solid white;
|
|
||||||
margin: 0 1px 0 0;
|
|
||||||
color: $gray;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
.tab_link_tracking {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: -59px;
|
|
||||||
width: 30px;
|
|
||||||
a.tab_link {
|
|
||||||
background-color: white;
|
|
||||||
color: $blue;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
a.tab_link.active {
|
|
||||||
background-color: white;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#vrednost_edit {
|
|
||||||
@include popup_general();
|
|
||||||
|
|
||||||
display: none;
|
#vprasanje_edit_bottom_placeholder {
|
||||||
|
|
||||||
z-index: 89;
|
|
||||||
min-height: 130px;
|
|
||||||
width: 600px;
|
|
||||||
|
|
||||||
p {
|
|
||||||
padding: 1px 3px;
|
|
||||||
}
|
|
||||||
div {
|
|
||||||
padding: -10px;
|
|
||||||
}
|
|
||||||
textarea[name=naslov] {
|
|
||||||
width: 99%;
|
|
||||||
height: 60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#vprasanje_float_editing {
|
|
||||||
display: none;
|
|
||||||
position: relative;
|
|
||||||
z-index: 70;
|
|
||||||
align-self: flex-start;
|
|
||||||
|
|
||||||
width: 315px;
|
|
||||||
margin-left: 20px;
|
|
||||||
|
|
||||||
border: 1px solid $blue;
|
|
||||||
background-color: white;
|
|
||||||
box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.07);
|
|
||||||
}
|
|
||||||
|
|
||||||
#vprasanje_edit_bottom_placeholder {
|
|
||||||
display: block;
|
display: block;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
border-top: 1px solid $blue;
|
border-top: 1px solid $blue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Gumbi na dnu
|
||||||
|
#vprasanje_buttons {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user