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;
|
position: fixed;
|
||||||
bottom: 30px;
|
bottom: 30px;
|
||||||
right: 30px;
|
right: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gemmy-container img {
|
.gemmy-container img {
|
||||||
|
|
@ -23,10 +26,14 @@ If your plugin does not need CSS, delete this file.
|
||||||
border-radius: var(--gemmy-size);
|
border-radius: var(--gemmy-size);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gemmy-tooltip {
|
.gemmy-container[aria-label]::before {
|
||||||
--background-modifier-message: #FFFFCB;
|
--background-modifier-message: #FFFFCB;
|
||||||
|
content: attr(aria-label);
|
||||||
color: #202020;
|
color: #202020;
|
||||||
font-size: var(--font-ui-medium);
|
font-size: var(--font-ui-medium);
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
padding: var(--size-4-3) var(--size-4-6);
|
padding: var(--size-4-3) var(--size-4-6);
|
||||||
}
|
width: 150px;
|
||||||
|
background: var(--background-modifier-message);
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in a new issue