mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
- currently enabled on #sheld when window is over 1000px wide. - click top right gripper dots to drag sheld around - resize with lower right size dragger. - snaps to static view and hides grabbers when windows under 1000px - position not remembered across sessions..yet - updated styles on dice, options, and send_but
26 lines
453 B
CSS
26 lines
453 B
CSS
#roll_dice {
|
|
order: 100;
|
|
width: 40px;
|
|
height: 40px;
|
|
margin: 0;
|
|
padding: 1px;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
opacity: 0.7;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
#roll_dice:hover {
|
|
opacity: 1;
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
#dice_dropdown {
|
|
z-index: 100;
|
|
backdrop-filter: blur(--SmartThemeBlurStrength);
|
|
} |