@beisen-phoenix/lookup
Version:
---
88 lines (74 loc) • 1.63 kB
CSS
.phoenix-lookup__selectedWrapper {
height: 100%;
padding-top: 10px;
box-sizing: border-box;
}
.phoenix-lookup__selectedInfo {
height: 20px;
font-size: 12px;
line-height: 20px;
color: #565e66;
}
.phoenix-lookup__selectedTotal {
margin-left: 8px;
}
.phoenix-lookup__selectedLimit {
color: #bfc3c7;
}
.phoenix-lookup__clearSelected {
cursor: not-allowed;
float: right;
color: #bfc3c7;
}
.phoenix-lookup__clearSelected--active {
cursor: pointer;
color: #106ecc;
}
.phoenix-lookup__clearSelected--active:hover {
color: #1d86f0;
}
.phoenix-lookup__tagsWrapper {
width: 100%;
height: calc(100% - 30px);
margin-top: 10px;
overflow-x: hidden;
overflow-y: auto;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
display: -webkit-flex;
align-content: flex-start;
flex-wrap: wrap;
}
.phoenix-lookup__tagsWrapper::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.phoenix-lookup__tagsWrapper::-webkit-scrollbar-track {
border-radius: 100px;
background-color: transparent;
}
.phoenix-lookup__tagsWrapper::-webkit-scrollbar-thumb {
border: 2px solid transparent;
border-radius: 100px;
background-color: rgba(14, 17, 20, 0.1);
background-clip: content-box;
}
.phoenix-lookup__tagsWrapper::-webkit-scrollbar-thumb:hover {
background-color: rgba(14, 17, 20, 0.3);
}
.phoenix-lookup__tagItem {
margin-right: 12px;
margin-bottom: 10px;
}
.phoenix-lookup__emptyMsg {
font-size: 18px;
line-height: 26px;
top: 50%;
transform: translateY(-50%);
color: #bfc3c7;
position: absolute;
width: 100%;
text-align: center;
}