140 lines
2.9 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;
padding: 16px 16px 16px 0;
2022-02-23 12:48:17 +01:00
.folder_item{
cursor: pointer;
2022-02-23 12:48:17 +01:00
display: flex;
align-items: center;
justify-content: flex-start;
2022-02-23 12:48:17 +01:00
box-sizing: border-box;
height: 40px;
width: 100%;
padding: 0 8px;
margin-bottom: 8px;
2022-02-23 12:48:17 +01:00
border: 1px solid $gray;
border-radius: 2px;
2022-02-23 12:48:17 +01:00
transition: 0.2s;
2022-02-23 12:48:17 +01:00
&.active{
border-color: $blue;
background-color: $light-gray;
}
2022-02-23 12:48:17 +01:00
&:hover{
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
}
.content_right{
display: flex;
flex-direction: column;
width: 760px;
padding: 16px;
.question_list{
display: flex;
flex-direction: column;
height: 400px;
2022-02-23 12:48:17 +01:00
.question_item_holder{
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
}