Minor UI bug fixes (#689)

* minor css modification
* JSON Editor color correction
* Added Line-Hover class
* Update web/assets/css/custom.css
* Update web/assets/css/custom.css

Co-authored-by: Shellgate <128194280+Shellgate@users.noreply.github.com>
This commit is contained in:
Tara Rostami
2023-12-04 22:48:55 +03:30
committed by GitHub
parent 1f0c9acd89
commit 7ed106a0f0
3 changed files with 68 additions and 16 deletions

View File

@@ -26,7 +26,7 @@ html {
::selection {
color: #0e49b5;
background-color: #0e49b530;
background-color: #d2ddf1;
}
#app {
@@ -750,5 +750,47 @@ style attribute {
}
.dark .ant-spin-dot-item {
background-color: #ffffffff;
}
background-color: #ffffff;
}
.ant-radio-button-wrapper {
user-select: none;
}
.ant-menu {
user-select: none;
}
.ant-calendar-date:hover {
background: #dae9f5;
cursor: pointer
}
.ant-calendar-date:active {
background: #dae9f5;
color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-today .ant-calendar-date {
color: #0e49b5;
font-weight: 700;
border-color: #0e49b5
}
.dark .ant-calendar-today .ant-calendar-date {
color: #ffffff;
font-weight: 700;
border-color: #0e49b5
}
.ant-calendar-selected-day .ant-calendar-date {
background: #0E49B5;
color: #ffffff;
}
li.ant-select-dropdown-menu-item:empty:after {
content: "None";
font-weight:normal;
color:rgb(0 0 0 / 25%);
}