144 lines
3.7 KiB
SCSS
144 lines
3.7 KiB
SCSS
![]() |
#anketa_knjiznica{
|
||
|
|
||
|
#libraryInner{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
|
||
|
|
||
|
#searchLibrarySurveys{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
ul{
|
||
|
list-style-type: none;
|
||
|
|
||
|
margin: 0;
|
||
|
|
||
|
li{
|
||
|
list-style-type: none;
|
||
|
|
||
|
.folder_box{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
height: 41px;
|
||
|
width: 100%;
|
||
|
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 16px;
|
||
|
margin-bottom: 16px;
|
||
|
|
||
|
border: 1px $gray solid;
|
||
|
border-radius: 4px;
|
||
|
|
||
|
transition: 0.2s;
|
||
|
|
||
|
.faicon.new_folder,
|
||
|
.faicon.delete_folder{
|
||
|
display: none;
|
||
|
cursor: pointer;
|
||
|
|
||
|
margin-left: 8px;
|
||
|
|
||
|
transition: 0.2s;
|
||
|
|
||
|
&:before{
|
||
|
color: $blue;
|
||
|
font-size: 15px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.folder_arrow_icon{
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.folder_arrow_icon::before{
|
||
|
content: "\f078";
|
||
|
font-size: 14px;
|
||
|
color: $black;
|
||
|
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
.folder::before{
|
||
|
content: "\f07b";
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
color: $blue;
|
||
|
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
&:hover{
|
||
|
background-color: $light-gray;
|
||
|
|
||
|
.faicon.new_folder,
|
||
|
.faicon.delete_folder{
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.open{
|
||
|
background-color: $light-gray;
|
||
|
|
||
|
.faicon.new_folder,
|
||
|
.faicon.delete_folder{
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.folder_arrow_icon::before{
|
||
|
content: "\f077";
|
||
|
}
|
||
|
.folder::before{
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.folder_container{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
height: 41px;
|
||
|
width: 100%;
|
||
|
|
||
|
box-sizing: border-box;
|
||
|
padding: 0 16px;
|
||
|
margin-bottom: 16px;
|
||
|
|
||
|
|
||
|
border: 1px $gray solid;
|
||
|
border-radius: 4px;
|
||
|
|
||
|
.folder_left{
|
||
|
|
||
|
.faicon{
|
||
|
margin-right: 8px;
|
||
|
|
||
|
&:before{
|
||
|
color: $blue;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.folder_right{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
button{
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ul{
|
||
|
padding-left: 36px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|