mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-14 23:02:00 +03:00
40 lines
573 B
CSS
40 lines
573 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 black;
|
|
border-radius: 5px;
|
|
background-color: rgb(38, 39, 48);
|
|
color: white;
|
|
display: inline-block;
|
|
padding: 5px;
|
|
margin-right: 3px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-o-user-select: none;
|
|
} |