@syntrologie/adapt-nav 2.22.0 → 2.23.0
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/editor.js +5 -5
- package/dist/editor.js.map +3 -3
- package/package.json +1 -1
package/dist/editor.js
CHANGED
|
@@ -4362,11 +4362,11 @@ var EditorCardLit = class extends LitElement4 {
|
|
|
4362
4362
|
};
|
|
4363
4363
|
}
|
|
4364
4364
|
render() {
|
|
4365
|
-
const
|
|
4366
|
-
const
|
|
4367
|
-
const
|
|
4368
|
-
const
|
|
4369
|
-
const
|
|
4365
|
+
const _base = "py-2 px-2.5 rounded-lg border shadow-sm mb-1 text-sm";
|
|
4366
|
+
const _borderCls = this.validated ? "border-green-500/50" : "border-white/10";
|
|
4367
|
+
const _bgCls = "bg-white/[0.02]";
|
|
4368
|
+
const _colorCls = "text-slate-200";
|
|
4369
|
+
const _interactiveCls = this.clickable ? "cursor-pointer hover:border-white/20 hover:bg-white/[0.04] transition-colors" : "";
|
|
4370
4370
|
return html5`
|
|
4371
4371
|
<style>
|
|
4372
4372
|
:host { display: block; }
|