@starasia/textarea 4.0.0 → 4.0.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/textarea.es.js +4 -4
- package/dist/textarea.umd.js +4 -4
- package/package.json +1 -1
package/dist/textarea.es.js
CHANGED
|
@@ -144,7 +144,7 @@ const Q = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
|
|
|
144
144
|
position: relative;
|
|
145
145
|
width: 100%;
|
|
146
146
|
background: transparent;
|
|
147
|
-
border:
|
|
147
|
+
border: 1px solid var(--sa-tx-border-subtle);
|
|
148
148
|
overflow: hidden;
|
|
149
149
|
transition: border-color 120ms ease, box-shadow 120ms ease,
|
|
150
150
|
background-color 120ms ease;
|
|
@@ -159,16 +159,16 @@ const Q = `@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@30
|
|
|
159
159
|
/* variants */
|
|
160
160
|
.sa-tx-variant-outline .sa-tx-box {
|
|
161
161
|
background: transparent;
|
|
162
|
-
border:
|
|
162
|
+
border: 1px solid var(--sa-tx-border-subtle);
|
|
163
163
|
}
|
|
164
164
|
.sa-tx-variant-standard .sa-tx-box {
|
|
165
165
|
background: var(--sa-tx-bg-neutral);
|
|
166
|
-
border:
|
|
166
|
+
border: 1px solid transparent;
|
|
167
167
|
}
|
|
168
168
|
.sa-tx-variant-flushed .sa-tx-box {
|
|
169
169
|
background: transparent;
|
|
170
170
|
border: 0;
|
|
171
|
-
border-bottom:
|
|
171
|
+
border-bottom: 1px solid var(--sa-tx-border-subtle);
|
|
172
172
|
border-radius: 0;
|
|
173
173
|
}
|
|
174
174
|
|
package/dist/textarea.umd.js
CHANGED
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
position: relative;
|
|
143
143
|
width: 100%;
|
|
144
144
|
background: transparent;
|
|
145
|
-
border:
|
|
145
|
+
border: 1px solid var(--sa-tx-border-subtle);
|
|
146
146
|
overflow: hidden;
|
|
147
147
|
transition: border-color 120ms ease, box-shadow 120ms ease,
|
|
148
148
|
background-color 120ms ease;
|
|
@@ -157,16 +157,16 @@
|
|
|
157
157
|
/* variants */
|
|
158
158
|
.sa-tx-variant-outline .sa-tx-box {
|
|
159
159
|
background: transparent;
|
|
160
|
-
border:
|
|
160
|
+
border: 1px solid var(--sa-tx-border-subtle);
|
|
161
161
|
}
|
|
162
162
|
.sa-tx-variant-standard .sa-tx-box {
|
|
163
163
|
background: var(--sa-tx-bg-neutral);
|
|
164
|
-
border:
|
|
164
|
+
border: 1px solid transparent;
|
|
165
165
|
}
|
|
166
166
|
.sa-tx-variant-flushed .sa-tx-box {
|
|
167
167
|
background: transparent;
|
|
168
168
|
border: 0;
|
|
169
|
-
border-bottom:
|
|
169
|
+
border-bottom: 1px solid var(--sa-tx-border-subtle);
|
|
170
170
|
border-radius: 0;
|
|
171
171
|
}
|
|
172
172
|
|