@nivaro/react 0.1.82 → 0.1.83
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/full.css +10 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +14035 -13814
- package/package.json +1 -1
- package/styles.css +10 -0
package/package.json
CHANGED
package/styles.css
CHANGED
|
@@ -122,3 +122,13 @@ table {
|
|
|
122
122
|
background: linear-gradient(90deg, hsl(220 10% 16%) 25%, hsl(220 8% 21%) 50%, hsl(220 10% 16%) 75%);
|
|
123
123
|
background-size: 200% 100%;
|
|
124
124
|
}
|
|
125
|
+
|
|
126
|
+
/* Line-comment "bring me to the line" flash — a note's link scrolls the grid
|
|
127
|
+
row into view and pulses it. */
|
|
128
|
+
@keyframes nvr-row-flash-kf {
|
|
129
|
+
0%, 60% { background-color: rgb(var(--nvr-cyan-rgb) / 0.18); }
|
|
130
|
+
100% { background-color: transparent; }
|
|
131
|
+
}
|
|
132
|
+
tr.nvr-row-flash > td {
|
|
133
|
+
animation: nvr-row-flash-kf 2.4s ease-out;
|
|
134
|
+
}
|