| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- @use "sass:map";
- @use "src/css/quasar.variables.scss";
- .flex-grow {
- flex-grow: 1;
- flex-shrink: 1;
- flex-basis: 0;
- }
- .round {
- border-radius: 50%;
- }
- .self-center {
- align-self: center;
- }
- .input-disable {
- .q-field--outlined .q-field__control::before {
- border: 1px solid #b9b9b9 !important;
- transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
- }
- }
- .q-item__section--avatar {
- min-width: 0;
- }
- .q-toolbar {
- position: relative;
- padding: 0 12px;
- min-height: 50px;
- width: auto;
- }
- .q-drawer:has(.detached-container) {
- margin: 16px !important;
- margin-bottom: 16px !important;
- margin-left: 10px !important;
- border-radius: 8px !important;
- transition: all;
- color: #8b8b8b;
- }
- body.body--light {
- .q-drawer:has(.detached-container) {
- background: #{map.get($colors, "surface")} !important;
- }
- .q-menu {
- background: $neutral-light !important;
- color: $color-text !important;
- .q-item {
- color: $color-text;
- }
- .q-item--active,
- .q-item:hover {
- background: $violet-light !important;
- color: $violet-normal !important;
- }
- }
- .q-dialog {
- .q-card {
- background: #{map.get($colors, "surface-dark")};
- }
- }
- background: #{map.get($colors, "page")} !important;
- .q-list--dark,
- .q-item--dark:not(.q-item--active) {
- color: black;
- }
- .q-field--dark {
- .q-field__control:not(.text-negative) {
- .q-field__marginal {
- color: rgba(0, 0, 0, 0.54);
- }
- & ~ .q-field__bottom {
- color: rgba(0, 0, 0, 0.54);
- }
- }
- &:not(.q-field--highlighted)
- .q-field__control:not(.text-negative)
- .q-field__label {
- color: rgba(0, 0, 0, 0.54);
- }
- }
- .card-ring {
- box-shadow: 0 0 0 1px #c0c0c0c0 !important;
- }
- .menu-drawer {
- color: #8b8b8b;
- }
- }
- // body.body--dark {
- // background: #{map.get($colors-dark, "page")};
- // .q-drawer:has(.detached-container) {
- // background: #{map.get($colors-dark, "surface")} !important;
- // }
- // .q-menu {
- // background: #{map.get($colors-dark, "surface")};
- // }
- // .card-ring {
- // box-shadow: 0 0 0 1px #505050 !important;
- // }
- // }
- .q-card__actions .q-btn {
- padding: 10px 16px;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- margin: 0;
- }
- .q-separator {
- padding-top: 0px;
- padding-left: 0;
- }
- .q-scrollarea__content {
- display: flex;
- flex-direction: column;
- flex: 1 1 auto !important;
- }
- .remove-header-expansion-item {
- .q-list--dense > .q-item,
- .q-item--dense {
- display: none;
- }
- }
- .q-field__control {
- background: #fff !important;
- }
- .q-field--dark .q-field__native {
- color: black;
- }
- .q-field--dark .q-field__native,
- .q-field--dark .q-field__prefix,
- .q-field--dark .q-field__suffix,
- .q-field--dark .q-field__input {
- color: black;
- }
- .q-field--dark:not(.q-field--highlighted) .q-field__label,
- .q-field--dark .q-field__marginal,
- .q-field--dark {
- color: black;
- }
- .q-field--standout.q-field--rounded .q-field__control {
- border-radius: 8px;
- box-shadow: 0 0 0 1px #c0c0c0c0;
- }
- .q-btn--rectangle {
- border-radius: 8px;
- }
- .q-table__select {
- .q-field__inner {
- .q-field__control {
- padding-left: 6px;
- border-radius: 8px;
- overflow: hidden;
- }
- }
- }
|