api-render-ui 1.1.4 → 1.1.5
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 +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api-render-ui.css +10 -1
- package/src/inlined-styles.ts +10 -1
package/dist/index.js
CHANGED
|
@@ -68,7 +68,10 @@ var GLOBAL_STYLES = `.codigma-apioperatorlist {
|
|
|
68
68
|
|
|
69
69
|
.codigma-apioperator:hover {
|
|
70
70
|
cursor: pointer;
|
|
71
|
-
color: var(--
|
|
71
|
+
color: var(--text, black);
|
|
72
|
+
background-color: var(--hover-bg, rgba(169,199,239,0.12));
|
|
73
|
+
transition: background-color .12s ease, color .12s ease;
|
|
74
|
+
border-radius: 4px;
|
|
72
75
|
}
|
|
73
76
|
.codigma-apioperator:active {
|
|
74
77
|
color: var(--main-color, var(--primary, #404040));
|
|
@@ -291,6 +294,12 @@ var GLOBAL_STYLES = `.codigma-apioperatorlist {
|
|
|
291
294
|
flex: 1 1 0;
|
|
292
295
|
min-height: 5rem;
|
|
293
296
|
/* padding: 2px */
|
|
297
|
+
}
|
|
298
|
+
.codigma-apiunit-apioperator:hover {
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
color: var(--text, black);
|
|
301
|
+
background-color: var(--hover-bg, rgba(169,199,239,0.08));
|
|
302
|
+
transition: background-color .12s ease, color .12s ease;
|
|
294
303
|
}`;
|
|
295
304
|
|
|
296
305
|
// src/api-render-ui.ts
|