@likec4/styles 1.36.0 → 1.36.1
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/styles.css +4 -2
- package/package.json +3 -3
- package/preset.mjs +4 -3
package/dist/styles.css
CHANGED
|
@@ -4103,14 +4103,14 @@
|
|
|
4103
4103
|
padding-inline: var(--spacing-xs);
|
|
4104
4104
|
border-radius: var(--radii-0);
|
|
4105
4105
|
background-color: var(--colors-likec4-panel-bg);
|
|
4106
|
-
backdrop-filter: blur(10px);
|
|
4107
|
-
-webkit-backdrop-filter: blur(10px);
|
|
4108
4106
|
}
|
|
4109
4107
|
|
|
4110
4108
|
:is(.likec4-root[data-likec4-diagram-panning]) .layerStyle_likec4\.panel {
|
|
4111
4109
|
border-radius: var(--radii-0);
|
|
4112
4110
|
background-color: var(--colors-likec4-panel-bg-when-panning);
|
|
4113
4111
|
box-shadow: var(--shadows-none);
|
|
4112
|
+
backdrop-filter: none;
|
|
4113
|
+
-webkit-backdrop-filter: none;
|
|
4114
4114
|
}
|
|
4115
4115
|
|
|
4116
4116
|
.layerStyle_likec4\.dropdown {
|
|
@@ -4174,6 +4174,8 @@
|
|
|
4174
4174
|
padding: 2xs;
|
|
4175
4175
|
border-radius: var(--radii-md);
|
|
4176
4176
|
box-shadow: var(--shadows-lg);
|
|
4177
|
+
backdrop-filter: blur(10px);
|
|
4178
|
+
-webkit-backdrop-filter: blur(10px);
|
|
4177
4179
|
}
|
|
4178
4180
|
}
|
|
4179
4181
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@likec4/styles",
|
|
3
3
|
"description": "Shared PandaCSS preset and generated styles, used in LikeC4",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.36.
|
|
5
|
+
"version": "1.36.1",
|
|
6
6
|
"bugs": "https://github.com/likec4/likec4/issues",
|
|
7
7
|
"homepage": "https://likec4.dev",
|
|
8
8
|
"author": "Denis Davydkov <denis@davydkov.com>",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"nano-spawn": "^1.0.2",
|
|
79
79
|
"unbuild": "3.5.0",
|
|
80
80
|
"typescript": "5.9.2",
|
|
81
|
-
"@likec4/style-preset": "1.36.
|
|
82
|
-
"@likec4/tsconfig": "1.36.
|
|
81
|
+
"@likec4/style-preset": "1.36.1",
|
|
82
|
+
"@likec4/tsconfig": "1.36.1"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
85
|
"typecheck": "tsc --build --verbose",
|
package/preset.mjs
CHANGED
|
@@ -4840,15 +4840,16 @@ const layerStyles = defineLayerStyles({
|
|
|
4840
4840
|
_whenPanning: "likec4.panel.bg.whenPanning"
|
|
4841
4841
|
},
|
|
4842
4842
|
border: "1px solid {colors.likec4.panel.border}",
|
|
4843
|
-
backdropFilter: "blur(10px)",
|
|
4844
4843
|
"@/sm": {
|
|
4845
4844
|
boxShadow: "lg",
|
|
4846
4845
|
borderRadius: "md",
|
|
4847
|
-
padding: "2xs"
|
|
4846
|
+
padding: "2xs",
|
|
4847
|
+
backdropFilter: "blur(10px)"
|
|
4848
4848
|
},
|
|
4849
4849
|
_whenPanning: {
|
|
4850
4850
|
boxShadow: "none",
|
|
4851
|
-
borderRadius: "0"
|
|
4851
|
+
borderRadius: "0",
|
|
4852
|
+
backdropFilter: "none"
|
|
4852
4853
|
}
|
|
4853
4854
|
}
|
|
4854
4855
|
},
|