diff options
| author | Tara Rostami <132676256+TaraRostami@users.noreply.github.com> | 2023-12-14 16:14:45 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-12-14 16:15:02 +0300 |
| commit | b9b74139bf6ec75a352b317fff85c4879a4692cb (patch) | |
| tree | 0ba0d97f80dcf85beaee2c389b5e2b3bf950d5e1 /web/assets/css | |
| parent | 653e26dad6e9898192fb1fb770abdb8141e5e6d2 (diff) | |
Better login page & css correction (#1368)v2.0.1
* Update custom.css
* Update login.html
* Update inbounds.html
* Update custom.css
* Update custom.css
Diffstat (limited to 'web/assets/css')
| -rw-r--r-- | web/assets/css/custom.css | 52 |
1 files changed, 51 insertions, 1 deletions
diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css index b633d644..308d24a6 100644 --- a/web/assets/css/custom.css +++ b/web/assets/css/custom.css @@ -852,6 +852,13 @@ style attribute { user-select: none; } +.ant-calendar-date, +.ant-calendar-year-panel-year, +.ant-calendar-decade-panel-decade, +.ant-calendar-month-panel-month { + border-radius: 5px; +} + .ant-calendar-date:hover { background-color: rgb(232 244 242); } @@ -908,7 +915,7 @@ li.ant-select-dropdown-menu-item:empty:after { .ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon { - color: #3c89e8; + color: #008771; } .ant-select-selection:hover, .ant-input-number-focused, @@ -1049,3 +1056,46 @@ li.ant-select-dropdown-menu-item:empty:after { .ant-input-number { overflow: clip; } + +.ant-modal-body, +.ant-collapse-content>.ant-collapse-content-box { + overflow-x: auto; +} + +.ant-calendar-year-panel-year:hover, +.ant-calendar-decade-panel-decade:hover, +.ant-calendar-month-panel-month:hover, +.ant-dropdown-menu-item:hover, +.ant-dropdown-menu-submenu-title:hover, +.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled), +.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled), +.ant-table-tbody + > tr.ant-table-row-hover:not(.ant-table-expanded-row):not( + .ant-table-row-selected + ) + > td, +.ant-table-tbody + > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) + > td, +.ant-table-thead + > tr.ant-table-row-hover:not(.ant-table-expanded-row):not( + .ant-table-row-selected + ) + > td, +.ant-table-thead + > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) + > td { + background-color: rgb(232 244 242); +} + +.dark .ant-dropdown-menu-item:hover, +.dark .ant-dropdown-menu-submenu-title:hover, +.dark .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled), +.dark .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) { + background-color: #313f5a; +} + +.ant-popover-inner-content { + max-height: 400px; + overflow-y: auto; +} |
