We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe974f commit b86bc21Copy full SHA for b86bc21
packages/webui/src/client/styles/elementSelected.scss
@@ -1,11 +1,18 @@
1
@import '_variables';
2
3
.element-selected {
4
- animation: blinker 1.5s linear infinite;
+ // Base glow
5
+ box-shadow: inset 0 0 15px var(--primary-color, #ffffff7a);
6
+ // Changed animation name from 'blinker' to 'glow' to better reflect its purpose
7
+ animation: glow 1s ease-in-out infinite;
8
- @keyframes blinker {
- 20% {
- opacity: 0.2;
9
- }
10
11
-}
+ @keyframes glow {
+ 0%, 100% {
+ box-shadow: inset 0 0 15px var(--primary-color, #ffffff7b);
12
+ }
13
+ 50% {
14
+ box-shadow: inset 0 0 20px var(--primary-color, #ffffff84),
15
+ inset 0 0 30px var(--primary-light-color, #ffffff86);
16
17
18
+}
0 commit comments