2022-09-12 19:14:08 +03:00
|
|
|
* {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
2022-09-21 11:54:22 +03:00
|
|
|
|
|
|
|
body {
|
2022-10-12 22:40:57 +03:00
|
|
|
background: #4a4a4a;
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2022-10-12 22:40:57 +03:00
|
|
|
margin: 0 auto;
|
2022-09-21 11:54:22 +03:00
|
|
|
display: flex;
|
2022-10-12 22:40:57 +03:00
|
|
|
align-items: baseline;
|
2022-10-12 14:36:49 +03:00
|
|
|
justify-content: space-between;
|
2022-10-13 13:42:46 +03:00
|
|
|
flex-wrap: wrap;
|
2022-10-12 22:40:57 +03:00
|
|
|
width: 900px;
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
2022-10-14 16:36:12 +03:00
|
|
|
// ----Layout----
|
2022-10-12 22:40:57 +03:00
|
|
|
.cg-dropdown {
|
|
|
|
min-width: 235px;
|
|
|
|
margin-left: 0;
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
border-radius: 10px;
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
.cg-select {
|
2022-10-10 16:15:23 +03:00
|
|
|
padding: 5px;
|
2022-10-24 20:13:08 +03:00
|
|
|
flex-grow: 1;
|
2022-10-12 22:40:57 +03:00
|
|
|
min-height: 50px;
|
2022-09-12 19:14:08 +03:00
|
|
|
color: #fff;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-10-03 21:43:22 +03:00
|
|
|
text-overflow: ellipsis;
|
2022-09-12 19:14:08 +03:00
|
|
|
background: #2a2f3b;
|
2022-10-12 14:36:49 +03:00
|
|
|
border: none;
|
2022-09-12 19:14:08 +03:00
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: 0.5s;
|
|
|
|
|
2022-10-03 21:43:22 +03:00
|
|
|
.selected {
|
2022-10-12 22:40:57 +03:00
|
|
|
max-width: 195px;
|
|
|
|
|
2022-10-10 16:15:23 +03:00
|
|
|
margin: 5px;
|
2022-10-03 21:43:22 +03:00
|
|
|
}
|
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
&:hover {
|
|
|
|
transition: 0.5s;
|
|
|
|
background: #394050;
|
|
|
|
}
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.caret {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2022-10-10 16:15:23 +03:00
|
|
|
margin-right: 10px;
|
2022-09-12 19:14:08 +03:00
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-top: 6px solid #fff;
|
|
|
|
transition: 0.5s;
|
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
&_rotate {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
2022-09-21 11:54:22 +03:00
|
|
|
max-height: 230px;
|
|
|
|
overflow-y: auto;
|
2022-09-12 19:14:08 +03:00
|
|
|
position: absolute;
|
2022-10-12 22:40:57 +03:00
|
|
|
|
2022-10-10 16:15:23 +03:00
|
|
|
width: 220px;
|
2022-09-12 19:14:08 +03:00
|
|
|
padding: 7px;
|
2022-09-21 11:54:22 +03:00
|
|
|
margin-top: -0.2px;
|
2022-09-12 19:14:08 +03:00
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
color: white;
|
|
|
|
background: #2a2f3b;
|
|
|
|
border: 1px #0a0b0e solid;
|
|
|
|
box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: 0.5s;
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
display: none;
|
|
|
|
z-index: 1;
|
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
&__item {
|
2022-10-12 22:40:57 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-09-12 19:14:08 +03:00
|
|
|
transition: 0.5s;
|
2022-09-21 11:54:22 +03:00
|
|
|
padding: 15px;
|
2022-09-12 19:14:08 +03:00
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
&:hover {
|
|
|
|
transition: 0.5s;
|
|
|
|
cursor: pointer;
|
|
|
|
background: #8282822c;
|
|
|
|
}
|
|
|
|
}
|
2022-10-25 21:03:10 +03:00
|
|
|
|
|
|
|
.inputSearch {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid white;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
2022-10-28 12:37:35 +03:00
|
|
|
color: white;
|
2022-10-25 21:03:10 +03:00
|
|
|
}
|
|
|
|
}
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
2022-10-10 16:15:23 +03:00
|
|
|
.multiselect-tag {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 2px 4px 2px 4px;
|
|
|
|
background: #76767659;
|
|
|
|
height: 20px;
|
|
|
|
margin: 0 5px 5px 0;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
&__button {
|
|
|
|
width: 15px;
|
|
|
|
height: 16px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-14 15:26:17 +03:00
|
|
|
.category {
|
|
|
|
height: 20px;
|
|
|
|
margin: 6px 5px 0 7px;
|
|
|
|
font-size: 17px;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-10-10 16:15:23 +03:00
|
|
|
input[type='checkbox'] {
|
|
|
|
cursor: pointer;
|
2022-10-12 22:40:57 +03:00
|
|
|
margin: 0 5px 0 0;
|
2022-10-10 16:15:23 +03:00
|
|
|
}
|
|
|
|
|
2022-10-14 16:36:12 +03:00
|
|
|
// --------SVG--------
|
2022-10-10 16:15:23 +03:00
|
|
|
.svg-icon {
|
|
|
|
width: 16px;
|
|
|
|
margin-left: 3px;
|
|
|
|
background-color: #bebebc;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: 1s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transition: 1s;
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
}
|
2022-10-14 15:26:17 +03:00
|
|
|
|
2022-10-10 16:15:23 +03:00
|
|
|
.svg-icon path {
|
|
|
|
color: black;
|
|
|
|
stroke: currentcolor;
|
|
|
|
transition: 0.2s;
|
|
|
|
stroke-width: 0.5;
|
|
|
|
}
|
|
|
|
|
2022-10-14 16:36:12 +03:00
|
|
|
//-------Behavior--------
|
2022-09-12 19:14:08 +03:00
|
|
|
.active {
|
2022-09-21 11:54:22 +03:00
|
|
|
background: #8282822c;
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
|
|
|
|
2022-09-21 11:54:22 +03:00
|
|
|
.open {
|
2022-09-12 19:14:08 +03:00
|
|
|
transition: 0.5s;
|
|
|
|
display: block;
|
|
|
|
opacity: 1;
|
2022-10-14 15:26:17 +03:00
|
|
|
|
|
|
|
&_none {
|
|
|
|
opacity: 0 !important;
|
|
|
|
}
|
2022-09-12 19:14:08 +03:00
|
|
|
}
|
2022-09-28 15:09:33 +03:00
|
|
|
|
2022-10-14 16:36:12 +03:00
|
|
|
.disabled {
|
|
|
|
background-color: #8f9195 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overflow-hidden {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------SCROLLBAR------
|
2022-09-28 15:09:33 +03:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background-color: #d1d1d19d;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #4d4d4d;
|
|
|
|
}
|
2022-10-24 20:13:08 +03:00
|
|
|
|
|
|
|
.displayHide {
|
|
|
|
display: none;
|
|
|
|
}
|