Feat v0.6.14 visual polish (#49)
All checks were successful
All checks were successful
Co-authored-by: Jeffrey Smith <jasafpro@gmail.com> Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #49.
This commit is contained in:
@@ -166,7 +166,7 @@
|
||||
cursor: pointer;
|
||||
padding: 2px;
|
||||
border-radius: 50%;
|
||||
transition: box-shadow var(--transition, 0.15s ease);
|
||||
transition: box-shadow var(--transition);
|
||||
}
|
||||
.sw-user-menu__trigger:hover {
|
||||
box-shadow: 0 0 0 2px var(--accent-dim);
|
||||
@@ -191,28 +191,28 @@
|
||||
height: 32px;
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
color: var(--text-3, #555);
|
||||
border-radius: var(--radius);
|
||||
color: var(--text-3);
|
||||
cursor: pointer;
|
||||
transition: color 0.15s, background 0.15s;
|
||||
}
|
||||
|
||||
.sw-notification-bell__trigger:hover {
|
||||
color: var(--text, #eee);
|
||||
background: var(--bg, #0e0e10);
|
||||
color: var(--text);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.sw-notification-bell__badge {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
background: var(--danger, #ef4444);
|
||||
background: var(--danger);
|
||||
color: #fff;
|
||||
font-size: 9px;
|
||||
font-weight: 700;
|
||||
min-width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 7px;
|
||||
border-radius: var(--radius);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -227,9 +227,9 @@
|
||||
margin-top: 6px;
|
||||
width: 320px;
|
||||
max-height: 420px;
|
||||
background: var(--bg-secondary, #151517);
|
||||
border: 1px solid var(--border, #2a2a2e);
|
||||
border-radius: 10px;
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
|
||||
z-index: 200;
|
||||
overflow: hidden;
|
||||
@@ -242,24 +242,24 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: var(--sp-3) var(--sp-3);
|
||||
border-bottom: 1px solid var(--border, #2a2a2e);
|
||||
border-bottom: 1px solid var(--border);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--text, #eee);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.sw-notification-bell__mark-all {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--accent, #b38a4e);
|
||||
color: var(--accent);
|
||||
font-size: 11px;
|
||||
cursor: pointer;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
.sw-notification-bell__mark-all:hover {
|
||||
background: var(--accent-dim, rgba(179, 138, 78, 0.1));
|
||||
background: var(--accent-dim);
|
||||
}
|
||||
|
||||
.sw-notification-bell__list {
|
||||
@@ -270,13 +270,13 @@
|
||||
.sw-notification-bell__empty {
|
||||
padding: var(--sp-6) var(--sp-3);
|
||||
text-align: center;
|
||||
color: var(--text-3, #555);
|
||||
color: var(--text-3);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.sw-notification-bell__item {
|
||||
padding: var(--sp-3) var(--sp-3);
|
||||
border-bottom: 1px solid var(--border, #2a2a2e);
|
||||
border-bottom: 1px solid var(--border);
|
||||
cursor: pointer;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
@@ -286,11 +286,11 @@
|
||||
}
|
||||
|
||||
.sw-notification-bell__item:hover {
|
||||
background: var(--bg, #0e0e10);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.sw-notification-bell__item--unread {
|
||||
background: var(--accent-dim, rgba(179, 138, 78, 0.05));
|
||||
background: var(--accent-dim);
|
||||
}
|
||||
|
||||
.sw-notification-bell__item--unread::before {
|
||||
@@ -299,27 +299,27 @@
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent, #b38a4e);
|
||||
background: var(--accent);
|
||||
margin-right: 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sw-notification-bell__item-text {
|
||||
font-size: 12px;
|
||||
color: var(--text, #eee);
|
||||
color: var(--text);
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.sw-notification-bell__item-body {
|
||||
font-size: 11px;
|
||||
color: var(--text-3, #555);
|
||||
color: var(--text-3);
|
||||
margin-top: 3px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.sw-notification-bell__item-time {
|
||||
font-size: 10px;
|
||||
color: var(--text-3, #555);
|
||||
color: var(--text-3);
|
||||
margin-top: 3px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -332,7 +332,7 @@
|
||||
|
||||
.sw-notification-bell__item-action {
|
||||
font-size: 10px;
|
||||
color: var(--accent, #4a9eff);
|
||||
color: var(--accent);
|
||||
font-weight: 600;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s;
|
||||
|
||||
Reference in New Issue
Block a user