159 lines
3.4 KiB
SCSS
Raw Normal View History

/*
2022-02-23 12:48:17 +01:00
Knjiznica v urejanju ankete
*/
2022-02-23 12:48:17 +01:00
// Popup knjiznica v urejanju ankete - tabi
.lib_tabs{
display: flex;
.tab{
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 50%;
height: 40px;
margin-bottom: 16px;
margin-top: -16px;
background-color: $light-gray;
2022-02-23 12:48:17 +01:00
&.active{
color: $blue;
background-color: $white;
}
}
}
2022-02-23 12:48:17 +01:00
// Popup knjiznica - vsebina
.tab_content{
display: flex;
2022-02-23 12:48:17 +01:00
.content_left{
width: 300px;
height: 540px;
max-height: 540px;
overflow-y: auto;
2022-02-23 12:48:17 +01:00
padding: 16px 16px 16px 0;
> ul {
margin-left: 0 !important;
}
ul{
margin: 0 0 0 16px;
padding: 0;
li.folder_item{
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
box-sizing: border-box;
height: 40px;
width: 100%;
padding: 0 8px;
margin-bottom: 8px;
border: 1px solid $gray;
border-radius: 2px;
transition: 0.2s;
&.active{
border-color: $blue;
background-color: $light-gray;
}
&:hover{
background-color: $light-gray;
}
span{
margin-right: 8px;
font-size: 14px;
}
}
}
2022-02-23 12:48:17 +01:00
}
.content_right{
display: flex;
flex-direction: column;
width: 760px;
2022-02-23 12:48:17 +01:00
.question_list{
display: flex;
flex-direction: column;
height: 440px;
max-height: 440px;
overflow-y: auto;
padding: 16px;
border-bottom: 1px $gray solid;
2022-02-23 12:48:17 +01:00
.question_item_holder{
cursor: pointer;
2022-02-23 12:48:17 +01:00
display: flex;
align-items: center;
2022-02-23 12:48:17 +01:00
margin-bottom: 8px;
&.active{
.question_item_info{
background-color: $light-gray;
}
}
2022-02-23 12:48:17 +01:00
>label{
margin-right: 8px;
2022-02-23 12:48:17 +01:00
&:before{
letter-spacing: 0;
}
}
2022-02-23 12:48:17 +01:00
.question_item_info{
display: flex;
align-items: center;
2022-02-23 12:48:17 +01:00
box-sizing: border-box;
height: 36px;
width: 100%;
padding: 0 16px;
border: 1px $gray solid;
border-radius: 2px;
2022-02-23 12:48:17 +01:00
transition: 0.2s;
&:hover{
2022-02-23 12:48:17 +01:00
background-color: $light-gray;
}
2022-02-23 12:48:17 +01:00
span{
margin-right: 8px;
font-size: 14px;
2022-02-23 12:48:17 +01:00
&.faicon{
color: $blue;
}
}
}
}
}
2022-02-23 12:48:17 +01:00
.button_holder{
}
}
2022-02-23 12:48:17 +01:00
}