diff options
| author | Tara Rostami <132676256+TaraRostami@users.noreply.github.com> | 2024-03-09 16:06:16 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-09 16:06:16 +0300 |
| commit | ffa531f9cac29802af8778404679d6112b7a6b97 (patch) | |
| tree | a6b3f7db19da353277a64a02ab78b766627e3168 /web/assets/css/custom.css | |
| parent | 05deb89451b53b57b6ebe90f6b6df6a0b98bd156 (diff) | |
Minor Fixes (#1992)
autocomplete
max - min for input-number
Diffstat (limited to 'web/assets/css/custom.css')
| -rw-r--r-- | web/assets/css/custom.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css index 4ab6c5a8..506a0439 100644 --- a/web/assets/css/custom.css +++ b/web/assets/css/custom.css @@ -80,6 +80,11 @@ html[data-theme='ultra-dark'] { .dark .waves-header { background-color: #0a2227; } + .dark .ant-calendar-year-panel-year:hover, + .dark .ant-calendar-month-panel-month:hover, + .dark .ant-calendar-decade-panel-decade:hover { + background-color: var(--dark-color-surface-600); + } } html, @@ -175,7 +180,7 @@ style attribute { position: relative; clear: both; } -.ant-table-body { +.ant-table-wrapper > div > div > div > div > div > div { overflow-x: auto !important; } .ant-card-hoverable { @@ -791,6 +796,15 @@ style attribute { border-color: var(--dark-color-surface-500); } +@media (max-width: 768px) { + .dark .ant-popover-inner { + background-color: var(--dark-color-surface-200); + } + .dark > .ant-popover-content > .ant-popover-arrow { + border-color: var(--dark-color-surface-200); + } +} + .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover, .dark .ant-select-dropdown-menu-item-selected, .dark .ant-calendar-time-picker-select-option-selected { @@ -1257,3 +1271,8 @@ b, strong { .ant-empty-small .ant-empty-image { height: 20px; } + +.ant-menu-theme-switch:hover { + background-color: transparent !important; + cursor: default !important; +} |
