This commit is contained in:
kakkokari-gtyih 2025-08-08 14:23:06 +09:00
parent 199a68d82f
commit 9d29f63623
1 changed files with 7 additions and 2 deletions

View File

@ -118,11 +118,16 @@ function choose(visibility: typeof Misskey.noteVisibilities[number]): void {
width: 100%;
box-sizing: border-box;
&:hover {
&:disabled {
opacity: 0.8;
cursor: not-allowed;
}
&:not(:disabled):hover {
background: rgba(0, 0, 0, 0.05);
}
&:active {
&:not(:disabled):active {
background: rgba(0, 0, 0, 0.1);
}