opus-react 0.2.41 → 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 +130 -124
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +45 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +375 -369
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -9547,6 +9547,51 @@
|
|
|
9547
9547
|
outline: none;
|
|
9548
9548
|
}
|
|
9549
9549
|
|
|
9550
|
+
.opus_PaKREB_grip {
|
|
9551
|
+
z-index: 1;
|
|
9552
|
+
border: 1px solid color-mix(in srgb, var(--opus-muted) 52%, var(--opus-panel));
|
|
9553
|
+
background-color: color-mix(in srgb, var(--opus-muted) 42%, var(--opus-panel));
|
|
9554
|
+
pointer-events: none;
|
|
9555
|
+
border-radius: 999px;
|
|
9556
|
+
justify-content: center;
|
|
9557
|
+
align-items: center;
|
|
9558
|
+
gap: 2px;
|
|
9559
|
+
transition: border-color .16s, background-color .16s, box-shadow .16s;
|
|
9560
|
+
display: flex;
|
|
9561
|
+
position: absolute;
|
|
9562
|
+
top: 50%;
|
|
9563
|
+
left: 50%;
|
|
9564
|
+
transform: translate(-50%, -50%);
|
|
9565
|
+
box-shadow: 0 1px 3px #00000047, inset 0 1px #ffffff1f;
|
|
9566
|
+
}
|
|
9567
|
+
|
|
9568
|
+
.opus_PaKREB_handle[data-orientation="vertical"] .opus_PaKREB_grip {
|
|
9569
|
+
flex-direction: column;
|
|
9570
|
+
width: 12px;
|
|
9571
|
+
height: 30px;
|
|
9572
|
+
}
|
|
9573
|
+
|
|
9574
|
+
.opus_PaKREB_handle[data-orientation="horizontal"] .opus_PaKREB_grip {
|
|
9575
|
+
flex-direction: row;
|
|
9576
|
+
width: 30px;
|
|
9577
|
+
height: 12px;
|
|
9578
|
+
}
|
|
9579
|
+
|
|
9580
|
+
.opus_PaKREB_dot {
|
|
9581
|
+
background: #070912;
|
|
9582
|
+
border-radius: 50%;
|
|
9583
|
+
flex: 0 0 4px;
|
|
9584
|
+
width: 4px;
|
|
9585
|
+
height: 4px;
|
|
9586
|
+
}
|
|
9587
|
+
|
|
9588
|
+
.opus_PaKREB_handle:hover .opus_PaKREB_grip, .opus_PaKREB_handle:focus-visible .opus_PaKREB_grip {
|
|
9589
|
+
border-color: color-mix(in srgb, var(--opus-accent) 68%, var(--opus-border));
|
|
9590
|
+
background-color: color-mix(in srgb, var(--opus-accent) 68%, var(--opus-panel));
|
|
9591
|
+
box-shadow: 0 1px 4px #00000052,
|
|
9592
|
+
0 0 5px color-mix(in srgb, var(--opus-accent) 14%, transparent);
|
|
9593
|
+
}
|
|
9594
|
+
|
|
9550
9595
|
/* components/Splitter/Splitter.module.css */
|
|
9551
9596
|
.opus_Khgx9s_root {
|
|
9552
9597
|
border: 1px solid var(--opus-border);
|