search_ui/assets/entity/scss/entity.scss
2025-02-01 14:36:10 +03:30

272 lines
6.2 KiB
SCSS

.entity-view-system {
// background-color: var(--main-background-body);
.main-page__content {
margin-right: var(--sidebar-collapsed-width);
&.expanded {
margin-right: var(--sidebar-width);
}
.search-container {
.input-group {
/* justify-content: space-between; */
border-radius: 50px;
.form-control {
border: 0;
border-right: 1px solid #eee;
border-left: 1px solid #eee;
height: 3em;
}
.btn-primary {
border-radius: 50px 0 0 50px;
min-width: 5em;
}
}
}
// .search-icon {
// background-color: #00baba;
// }
// .search-icon:hover {
// background-color: #088585;
// }
.search-items {
overflow-y: auto;
height: calc(100vh - 10.5em);
}
.circle--button {
position: absolute;
border: 1px solid;
border-radius: 50%;
width: 2em;
z-index: 150;
height: 2em;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
&:hover {
// right: 48px;
}
svg {
width: 25px;
height: 16px;
}
}
.main-tree {
&.category_list {
padding: 2em 1em;
width: 22em;
max-width: 100%;
background-color: #fff;
border-left: 1px solid #f2f2e6;
height: calc(100dvh - 13em);
overflow-y: auto;
transition: width 0.2s;
&.custome-mode {
height: calc(100dvh - 8em);
// : 'calc(100dvh - 6em)',
}
.filter-list {
.filter-list {
white-space: nowrap;
overflow-x: auto;
}
}
}
}
.main-tree-select {
.form-control {
border-radius: 0.35rem !important;
width: 92% !important;
margin: 15px auto;
}
}
.advanced-search {
position: absolute;
top: 0;
right: 0;
bottom: 0;
padding-top: 1em;
padding-bottom: 1em;
width: 20em;
// height: calc(100dvh - 10em);
overflow-y: auto;
background: #fff;
z-index: 99;
box-shadow: 0 0.4688rem 2.1875rem rgba(4, 9, 20, 0.03),
0 0.9375rem 1.4063rem rgba(4, 9, 20, 0.03),
0 0.25rem 0.5313rem rgba(4, 9, 20, 0.03),
0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
// border-radius: 0.25em;
.multiselect__tags {
border: unset !important;
}
.bottom-close-form {
&:hover {
color: #6acfef;
}
}
@media (max-width: 768px) {
.bottom-close-form {
position: absolute;
bottom: 7em !important;
}
}
// .search-page__search.in-search {
// input {
// padding-right: 5em !important;
// border: 1px solid transparent;
// }
// }
.form-group {
&.inside-advanced-search {
.form-control {
// border-radius: 0.5em;
border: 1px solid #ced4da;
// padding: 1.2em;
// width: 14em;
&:focus {
border: 1px solid #61bb9e;
}
}
.date-picker {
.vpd-input-group {
direction: ltr;
.vpd-icon-btn {
margin-bottom: 0;
// position: absolute;
// right: 15.6em;
// height: 3em;
border-radius: 0.5em 0em 0em 0.5em;
}
.form-control {
border-radius: 0 0.5em 0.5em 0;
}
}
}
}
}
.select.in-advanced-search {
// padding: 0.3em !important;
border-radius: 0.5em;
font-size: 1rem;
// height: 3em;
// width: 15em !important;
border: 1px solid #ced4da !important;
&:focus {
border: 1px solid rgb(127, 170, 170) !important;
}
}
// .tribute.in-advanced-search {
// width: 18em !important;
// }
.form-control {
height: 2.2em;
}
}
.page-title {
// background-color: var(--primary-color);
// background-color: var(--majles-bg-primary);
align-items: center;
display: flex;
justify-content: center;
// color: #fff;
padding: 0.35em 0;
}
.form-group {
&.inside-entity {
.form-control {
border-radius: 0.5rem;
border: 2px solid rgb(127, 170, 170);
font-size: 14px;
height: 3em;
&.error {
border: 2px solid red !important;
}
&:focus {
border: 2px solid #61bb9e !important;
}
&.select.in-advanced-search {
height: 3em;
border: 2px solid rgb(127, 170, 170) !important;
&:focus {
border: 2px solid rgb(127, 170, 170) !important;
}
}
}
.date-picker {
.vpd-input-group {
.vpd-icon-btn {
position: absolute;
right: 13.7em;
height: 2.8em;
border-radius: 0.5em 0em 0em 0.5em;
}
.form-control {
width: 17.2em;
}
}
}
}
}
.button-meno {
font-size: 12px;
transform: rotate(90deg);
width: 10px;
height: 10px;
margin-top: 15px;
text-decoration: none;
span:hover {
color: #00b6e3;
}
}
.select-text {
text-align: right;
background-color: #fff;
font-size: 14px;
border-radius: 8px;
border-color: #f1f1f1;
padding: 6px;
&:hover {
border-color: #afbac6;
}
}
.more-btn-container {
display: flex;
justify-content: center;
.btn {
border: 1px dashed;
width: 4em;
height: 4em;
border-radius: 50%;
flex: unset;
}
}
}
.majles-header-color {
// background: linear-gradient(to top, #fcfcfc 0%, #eee 90%);
background: rgb(230, 231, 232);
}
.monir-header-color {
// background: linear-gradient(to bottom, #fcfcfc 0%, #eee 90%);
background: rgb(230, 231, 232);
}
@import "./components/search-filter.scss";
@import "./responsive/responsive";
}