diff options
Diffstat (limited to 'src/app/css/selection.css')
-rw-r--r-- | src/app/css/selection.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/app/css/selection.css b/src/app/css/selection.css new file mode 100644 index 0000000..5b7d647 --- /dev/null +++ b/src/app/css/selection.css @@ -0,0 +1,23 @@ +#selection { + z-index: 99999999999999; + + transition: 0.15s ease-in-out; + transition-property: + opacity, border-radius, background, + transform, width, height, top, left; + + position: fixed; + pointer-events: none; + transform: scale(1.0); + background: rgba(255, 255, 255, 0.3); + border-radius: calc(var(--padding) / 2); +} + +:has(.active-selection.scroll-selection) #selection { + background: rgba(255, 255, 255, 0.2); +} + +#selection.keyboard-selecting, +#selection.controller-selecting { + transform: scale(1.1); +} |