fixed loading select

This commit is contained in:
Rohit
2019-06-27 14:38:35 -04:00
parent db1c5d7ecc
commit 9f378f7e8d
3 changed files with 88 additions and 18 deletions

View File

@@ -409,11 +409,64 @@ html, body {
transition: height 600ms ease 0ms;
}
.loading-options {
transition: height 600ms ease 0ms;
transition: height 420ms ease 0ms;
}
.tagging-options.open {
height: 122px;
}
.loading-options.open {
height: 85px;
}
}
.bag-option > div {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
}
.bag-option .filename {
width: 60%;
font-size: 12pt;
font-weight: 600;
}
.bag-option .category {
width: 40%;
font-weight: 600;
}
.bag-option .tags {
width: 60%;
}
.bag-option .timestamp {
width: 40%;
}
.loading-options .selectize-input {
font-size: 13pt;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 600;
}
/*
.selectize-dropdown, .selectize-dropdown.form-control{
height: 90vh !important;
}
.selectize-dropdown-content{
max-height: 100% !important;
height: 100% !important;
}
*/