nve-designsystem 0.1.75 → 0.1.76
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.
|
@@ -7,6 +7,8 @@ const a = t`
|
|
|
7
7
|
align-items: center;
|
|
8
8
|
box-sizing: border-box;
|
|
9
9
|
position: relative;
|
|
10
|
+
border:none;
|
|
11
|
+
min-width: 119px;
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
.button ::slotted(nve-badge) {
|
|
@@ -101,14 +103,14 @@ const a = t`
|
|
|
101
103
|
|
|
102
104
|
/* PRIMARY */
|
|
103
105
|
.button--standard.button--primary {
|
|
104
|
-
background-color:
|
|
106
|
+
background-color: var(--interactive-primary-background-default, #0D0D0E);
|
|
105
107
|
border-color: var(--interactive-primary-background-default);
|
|
106
108
|
color: var(--interactive-primary-foreground-default);
|
|
107
109
|
}
|
|
108
110
|
.button--standard.button--primary:hover:not(.button--disabled),
|
|
109
111
|
.button--standard.button--primary:active:not(.button--disabled) {
|
|
110
112
|
border-color: var(--interactive-primary-background-hover);
|
|
111
|
-
background: var(--interactive-primary-background-hover);
|
|
113
|
+
background: var(--interactive-primary-background-hover, #3C3F44);
|
|
112
114
|
color: var(--interactive-primary-foreground-default);
|
|
113
115
|
}
|
|
114
116
|
|
|
@@ -117,6 +119,7 @@ const a = t`
|
|
|
117
119
|
border-color: var(--interactive-secondary-background-default);
|
|
118
120
|
background: var(--interactive-secondary-background-default);
|
|
119
121
|
color: var(--interactive-secondary-foreground-default);
|
|
122
|
+
border: none !important;
|
|
120
123
|
}
|
|
121
124
|
.button--standard.button--default:hover:not(.button--disabled) {
|
|
122
125
|
border-color: var(--interactive-secondary-background-hover);
|
|
@@ -131,10 +134,11 @@ const a = t`
|
|
|
131
134
|
background-color: transparent;
|
|
132
135
|
}
|
|
133
136
|
.button--standard.button--neutral {
|
|
134
|
-
border:
|
|
137
|
+
border-radius: var(--border-radius-small, 4px);
|
|
138
|
+
border: var(--border-width-default, 1px) solid #878C94;
|
|
135
139
|
}
|
|
136
140
|
.button--standard.button--neutral:hover:not(.button--disabled) {
|
|
137
|
-
background-color:
|
|
141
|
+
background-color: white;
|
|
138
142
|
color: var(--interactive-ghost-foreground-hover);
|
|
139
143
|
}
|
|
140
144
|
|
|
@@ -148,7 +152,7 @@ const a = t`
|
|
|
148
152
|
.button--outline.button--neutral:hover:not(.button--disabled),
|
|
149
153
|
.button--outline.button--neutral.button--checked:not(.button--disabled) {
|
|
150
154
|
border-color: var(--interactive-outlined-border-hover);
|
|
151
|
-
color: var(--interactive-outlined-foreground-default);
|
|
155
|
+
color: var(--interactive-outlined-foreground-default);
|
|
152
156
|
background-color: transparent;
|
|
153
157
|
}
|
|
154
158
|
|
package/custom-elements.json
CHANGED