mirror of
https://github.com/ericaxu/gemmy.git
synced 2026-07-22 07:30:31 +00:00
Fixed Textbox Not Appearing
This commit is contained in:
parent
6e2384a001
commit
c1d71da4f9
1 changed files with 9 additions and 2 deletions
11
styles.css
11
styles.css
|
|
@ -15,6 +15,9 @@ If your plugin does not need CSS, delete this file.
|
|||
position: fixed;
|
||||
bottom: 30px;
|
||||
right: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.gemmy-container img {
|
||||
|
|
@ -23,10 +26,14 @@ If your plugin does not need CSS, delete this file.
|
|||
border-radius: var(--gemmy-size);
|
||||
}
|
||||
|
||||
.gemmy-tooltip {
|
||||
.gemmy-container[aria-label]::before {
|
||||
--background-modifier-message: #FFFFCB;
|
||||
content: attr(aria-label);
|
||||
color: #202020;
|
||||
font-size: var(--font-ui-medium);
|
||||
border-radius: 20px;
|
||||
padding: var(--size-4-3) var(--size-4-6);
|
||||
}
|
||||
width: 150px;
|
||||
background: var(--background-modifier-message);
|
||||
}
|
||||
|
||||
Loading…
Reference in a new issue