opus-react 0.2.42 → 0.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +129 -124
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +12 -25
- package/dist/index.css.map +1 -1
- package/dist/index.js +374 -369
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -9553,8 +9553,11 @@
|
|
|
9553
9553
|
background-color: color-mix(in srgb, var(--opus-muted) 42%, var(--opus-panel));
|
|
9554
9554
|
pointer-events: none;
|
|
9555
9555
|
border-radius: 999px;
|
|
9556
|
+
justify-content: center;
|
|
9557
|
+
align-items: center;
|
|
9558
|
+
gap: 2px;
|
|
9556
9559
|
transition: border-color .16s, background-color .16s, box-shadow .16s;
|
|
9557
|
-
display:
|
|
9560
|
+
display: flex;
|
|
9558
9561
|
position: absolute;
|
|
9559
9562
|
top: 50%;
|
|
9560
9563
|
left: 50%;
|
|
@@ -9562,40 +9565,24 @@
|
|
|
9562
9565
|
box-shadow: 0 1px 3px #00000047, inset 0 1px #ffffff1f;
|
|
9563
9566
|
}
|
|
9564
9567
|
|
|
9565
|
-
.opus_PaKREB_grip:after {
|
|
9566
|
-
content: "";
|
|
9567
|
-
position: absolute;
|
|
9568
|
-
inset: 0;
|
|
9569
|
-
}
|
|
9570
|
-
|
|
9571
9568
|
.opus_PaKREB_handle[data-orientation="vertical"] .opus_PaKREB_grip {
|
|
9569
|
+
flex-direction: column;
|
|
9572
9570
|
width: 12px;
|
|
9573
9571
|
height: 30px;
|
|
9574
9572
|
}
|
|
9575
9573
|
|
|
9576
|
-
.opus_PaKREB_handle[data-orientation="vertical"] .opus_PaKREB_grip:after {
|
|
9577
|
-
background-image: radial-gradient(circle, var(--opus-panel) 2.1px, transparent 2.35px),
|
|
9578
|
-
radial-gradient(circle, var(--opus-panel) 2.1px, transparent 2.35px),
|
|
9579
|
-
radial-gradient(circle, var(--opus-panel) 2.1px, transparent 2.35px),
|
|
9580
|
-
radial-gradient(circle, var(--opus-panel) 2.1px, transparent 2.35px);
|
|
9581
|
-
background-position: 50% 18%, 50% 39%, 50% 61%, 50% 82%;
|
|
9582
|
-
background-repeat: no-repeat;
|
|
9583
|
-
background-size: 5px 5px;
|
|
9584
|
-
}
|
|
9585
|
-
|
|
9586
9574
|
.opus_PaKREB_handle[data-orientation="horizontal"] .opus_PaKREB_grip {
|
|
9575
|
+
flex-direction: row;
|
|
9587
9576
|
width: 30px;
|
|
9588
9577
|
height: 12px;
|
|
9589
9578
|
}
|
|
9590
9579
|
|
|
9591
|
-
.
|
|
9592
|
-
background
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
background-repeat: no-repeat;
|
|
9598
|
-
background-size: 5px 5px;
|
|
9580
|
+
.opus_PaKREB_dot {
|
|
9581
|
+
background: #070912;
|
|
9582
|
+
border-radius: 50%;
|
|
9583
|
+
flex: 0 0 4px;
|
|
9584
|
+
width: 4px;
|
|
9585
|
+
height: 4px;
|
|
9599
9586
|
}
|
|
9600
9587
|
|
|
9601
9588
|
.opus_PaKREB_handle:hover .opus_PaKREB_grip, .opus_PaKREB_handle:focus-visible .opus_PaKREB_grip {
|