Update custom.css

This commit is contained in:
Tara Rostami 2023-05-08 07:28:18 +03:30 committed by GitHub
parent 369acb0a1f
commit ebce52589c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@
} }
.ant-card { .ant-card {
border-radius: 10px; border-radius: 1.5rem;
} }
.ant-card-hoverable { .ant-card-hoverable {
@ -180,11 +180,11 @@
.ant-card-dark:hover { .ant-card-dark:hover {
border-color: #e8e8e8; border-color: #e8e8e8;
/* box-shadow: 0 3px 12px -0.8px #0000005c; */ box-shadow: 0 1px 10px -1px rgb(154 175 238);
} }
.ant-card-bordered:hover { .ant-card-bordered:hover {
box-shadow: 0 3px 12px -0.8px #0000005c; /*box-shadow: 0 3px 12px -0.8px #0000005c;*/
} }
.ant-card-dark .ant-table-thead th { .ant-card-dark .ant-table-thead th {
@ -264,11 +264,12 @@
.ant-card-dark .ant-collapse-item { .ant-card-dark .ant-collapse-item {
color: hsla(0,0%,100%,.65); color: hsla(0,0%,100%,.65);
background-color: #161b22; background-color: #161b22;
border-radius: 0.5rem 0.5rem 0 0;
} }
.ant-dropdown-menu-dark, .ant-dropdown-menu-dark,
.ant-card-dark .ant-modal-content { .ant-card-dark .ant-modal-content {
border: 1px solid rgba(255, 255, 255, 0.65); border:1px solid rgb(100 100 100 / 20%);
box-shadow: 0 2px 8px rgba(255,255,255,.15); box-shadow: 0 2px 8px rgba(255,255,255,.15);
} }
@ -280,7 +281,7 @@
} }
.ant-card-dark .ant-calendar-selected-day .ant-calendar-date { .ant-card-dark .ant-calendar-selected-day .ant-calendar-date {
background-color: #1668dc; background-color: rgb(0 150 112);
} }
.ant-card-dark .ant-calendar-time-picker-select li:hover { .ant-card-dark .ant-calendar-time-picker-select li:hover {
@ -333,9 +334,9 @@
} }
.ant-card-dark .ant-tag-green { .ant-card-dark .ant-tag-green {
color: #6abe39; color: #37b998;
background: #162312; background: #101e1a;
border-color: #274916; border-color: #144237;
} }
.ant-card-dark .ant-tag-cyan { .ant-card-dark .ant-tag-cyan {
@ -362,7 +363,7 @@
} }
.ant-card-dark .ant-switch-checked { .ant-card-dark .ant-switch-checked {
background-color: #0c61b0; background-color: #009670;
} }
.ant-card-dark .ant-btn, .ant-card-dark .ant-btn,
@ -378,14 +379,14 @@
.ant-card-dark .ant-btn-primary { .ant-card-dark .ant-btn-primary {
color: hsla(0,0%,100%,.65); color: hsla(0,0%,100%,.65);
background-color: #073763; background-color: rgb(7 98 75 / 50%);
border-color: #1890ff; border-color: #009670;
text-shadow: 0 -1px 0 rgba(255,255,255,.12); text-shadow: 0 -1px 0 rgba(255,255,255,.12);
box-shadow: 0 2px 0 rgba(255,255,255,.045); box-shadow: 0 2px 0 rgba(255,255,255,.045);
} }
.ant-card-dark .ant-btn-primary:hover { .ant-card-dark .ant-btn-primary:hover {
background-color: #40a9ff; background-color: #009670;
border-color: #40a9ff; border-color: #40a9ff00;
} }
.ant-dark .ant-popover-content { .ant-dark .ant-popover-content {
@ -408,15 +409,18 @@
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 0.7em;
}
::-webkit-scrollbar-track {
background: rgb(50 62 82 / 25%);
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: #11141a57; background: rgb(133 133 133 / 80%);
border-radius: 20px; border-radius: 100vw;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: #11141a66; background: #919191;
border-radius: 20px; }
}