86 lines
1.4 KiB
SCSS
86 lines
1.4 KiB
SCSS
.page_kolektor{
|
|
|
|
button.kolektor_create_response{
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
// Tabela responsov
|
|
table.kolektor_reponses{
|
|
width: 100%;
|
|
|
|
tr{
|
|
|
|
td{
|
|
a,
|
|
span{
|
|
cursor: pointer;
|
|
|
|
color: $blue;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Popup za dodajanje respondenta
|
|
#kolektor_add_response{
|
|
max-height: 95vh;
|
|
overflow-y: auto;
|
|
|
|
#kolektor_add_response_form{
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.error_messages{
|
|
margin-bottom: 16px;
|
|
|
|
font-weight: 600;
|
|
|
|
ul{
|
|
margin: 0;
|
|
|
|
li.error_message{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.kolektor_setting{
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
&.error{
|
|
color: $red;
|
|
}
|
|
|
|
.setting_line{
|
|
margin-top: 8px;
|
|
}
|
|
}
|
|
|
|
#kolektor_respondent_settings{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
textarea{
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Popup za posiljanje opomnika respondentu
|
|
#kolektor_send_respondent_notification{
|
|
max-height: 95vh;
|
|
overflow-y: auto;
|
|
|
|
textarea{
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
}
|