mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-15 15:22:55 +03:00
7252b1dde2
added tooltip support. Added Artist image tooltips.
49 lines
735 B
CSS
49 lines
735 B
CSS
*
|
|
{
|
|
padding: 0px;
|
|
margin: 0px;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-o-user-select: none;
|
|
}
|
|
|
|
body
|
|
{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#suggestionArea
|
|
{
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
span
|
|
{
|
|
border: 1px solid rgba(250, 250, 250, 0.2);
|
|
border-radius: 0.25rem;
|
|
font-size: 1rem;
|
|
font-family: "Source Sans Pro", sans-serif;
|
|
|
|
background-color: rgb(38, 39, 48);
|
|
color: white;
|
|
display: inline-block;
|
|
padding: 0.5rem;
|
|
margin-right: 3px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-o-user-select: none;
|
|
}
|
|
|
|
span:hover
|
|
{
|
|
color: rgb(255,75,75);
|
|
border-color: rgb(255,75,75);
|
|
} |