1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00

Feat dropdown check color (#6595)

* feat: dropdown check color

* feat: optimize code

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-21 10:57:16 +08:00
committed by GitHub
parent 315e95736f
commit ee38d54d9f
2 changed files with 7 additions and 6 deletions

View File

@@ -27,8 +27,3 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.users-filter-bar .dropdown-menu .dropdown-item:hover .sf2-icon-tick,
.users-filter-bar .dropdown-menu .dropdown-item:focus .sf2-icon-tick {
color: #fff !important;
}

View File

@@ -1099,6 +1099,10 @@ a.table-sort-op:hover {
color: #8c8c8c; color: #8c8c8c;
} }
.dropdown-item .sf2-icon-tick {
color: #798d99;
}
.btn-secondary.dropdown-toggle.dropdown-item { .btn-secondary.dropdown-toggle.dropdown-item {
line-height: 1.5; line-height: 1.5;
} }
@@ -1113,7 +1117,9 @@ a.table-sort-op:hover {
.dropdown-item:hover .dropdown-item-icon, .dropdown-item:hover .dropdown-item-icon,
.dropdown-item:hover .btn .dropdown-item-icon, .dropdown-item:hover .btn .dropdown-item-icon,
.dropdown-item:focus .dropdown-item-icon, .dropdown-item:focus .dropdown-item-icon,
.dropdown-item:focus .btn .dropdown-item-icon { .dropdown-item:focus .btn .dropdown-item-icon,
.dropdown-item:hover .sf2-icon-tick,
.dropdown-item:focus .sf2-icon-tick {
color: #fff; color: #fff;
} }