Mobile icon, zoom, profilePicOverrideThumbnail

This commit is contained in:
Natsumi
2024-05-30 08:56:00 +12:00
parent d040f70aab
commit 2742d6edb0
12 changed files with 227 additions and 92 deletions

View File

@@ -103,11 +103,15 @@ textarea {
.el-dialog,
.el-dropdown-menu,
.el-tooltip__popper.is-dark {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
box-shadow:
0 3px 6px rgba(0, 0, 0, 0.16),
0 3px 6px rgba(0, 0, 0, 0.23);
}
.el-dropdown-menu__item,
.x-friend-item {
transition: background-color ease-in-out 0.1s, color ease-in-out 0.1s;
transition:
background-color ease-in-out 0.1s,
color ease-in-out 0.1s;
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
@@ -144,6 +148,17 @@ textarea {
.el-textarea__inner {
border: var(--lighter-border);
}
.el-input-number {
background-color: var(--lighter-bg);
border: 1px solid #404040;
border-radius: 5px;
}
.el-input-number__decrease {
border-right: 1px solid #404040;
}
.el-input-number__increase {
border-left: 1px solid #404040;
}
.el-dropdown-menu__item--divided {
border-top: 2px solid var(--lighter-lighter-lighter-lighter-bg);
}