@neo4j-ndl/base 3.0.0-alpha-9886872 → 3.0.0-alpha-5f92d5f
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +12 -7
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -2936,11 +2936,14 @@ a.ndl-btn {
|
|
|
2936
2936
|
.ndl-dialog {
|
|
2937
2937
|
border-radius:16px;
|
|
2938
2938
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
2939
|
-
padding:
|
|
2939
|
+
padding:32px;
|
|
2940
2940
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
2941
2941
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
2942
2942
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2943
2943
|
}
|
|
2944
|
+
.ndl-dialog .ndl-dialog-type-icon{
|
|
2945
|
+
width:88px;
|
|
2946
|
+
}
|
|
2944
2947
|
.ndl-dialog .ndl-dialog-type-icon.ndl-info {
|
|
2945
2948
|
color:rgb(var(--theme-palette-primary-icon));
|
|
2946
2949
|
}
|
|
@@ -2953,13 +2956,18 @@ a.ndl-btn {
|
|
|
2953
2956
|
.ndl-dialog .ndl-dialog-type-icon.ndl-danger {
|
|
2954
2957
|
color:rgb(var(--theme-palette-danger-icon));
|
|
2955
2958
|
}
|
|
2959
|
+
.ndl-dialog.ndl-with-icon .ndl-dialog-close {
|
|
2960
|
+
top:48px;
|
|
2961
|
+
}
|
|
2962
|
+
.ndl-dialog.ndl-with-icon .ndl-dialog-header {
|
|
2963
|
+
margin-bottom:24px;
|
|
2964
|
+
}
|
|
2956
2965
|
.ndl-dialog .ndl-dialog-close {
|
|
2957
2966
|
position:absolute;
|
|
2958
|
-
top:48px;
|
|
2959
2967
|
right:48px;
|
|
2960
2968
|
}
|
|
2961
2969
|
.ndl-dialog-header {
|
|
2962
|
-
margin-bottom:
|
|
2970
|
+
margin-bottom:4px;
|
|
2963
2971
|
}
|
|
2964
2972
|
.ndl-dialog.ndl-with-close-button .ndl-dialog-header {
|
|
2965
2973
|
margin-right:48px;
|
|
@@ -3115,7 +3123,7 @@ a.ndl-btn {
|
|
|
3115
3123
|
max-width:40rem;
|
|
3116
3124
|
}
|
|
3117
3125
|
.ndl-modal.ndl-medium{
|
|
3118
|
-
max-width:
|
|
3126
|
+
max-width:44rem;
|
|
3119
3127
|
}
|
|
3120
3128
|
.ndl-modal.ndl-large{
|
|
3121
3129
|
max-width:60rem;
|
|
@@ -7160,9 +7168,6 @@ button.ndl-avatar:focus-visible {
|
|
|
7160
7168
|
.n-w-\[300px\] {
|
|
7161
7169
|
width:300px;
|
|
7162
7170
|
}
|
|
7163
|
-
.n-w-\[640px\] {
|
|
7164
|
-
width:640px;
|
|
7165
|
-
}
|
|
7166
7171
|
.n-w-full {
|
|
7167
7172
|
width:100%;
|
|
7168
7173
|
}
|
package/lib/tokens/js/tokens.js
CHANGED