Skip to content

Commit 3b479a0

Browse files
committed
fix: corrige problema que tornava os inputs "transparentes", causando inconsistências em backgrounds diferentes de branco
1 parent 800a200 commit 3b479a0

File tree

9 files changed

+11
-1
lines changed

9 files changed

+11
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sysvale/cuida",
3-
"version": "3.72.2",
3+
"version": "3.72.3",
44
"description": "A design system built by Sysvale, using storybook and Vue components",
55
"repository": {
66
"type": "git",

src/components/DateInput.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,8 @@ export default {
378378
color: $n-600;
379379
border-radius: $border-radius-extra-small !important;
380380
cursor: pointer;
381+
background: $n-0;
382+
overflow: hidden;
381383
382384
input {
383385
border: none;

src/components/InlineDateInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ export default {
347347
color: $n-600;
348348
border-radius: $border-radius-extra-small !important;
349349
cursor: pointer;
350+
background: $n-0;
350351
351352
&__icon {
352353
display: grid;

src/components/NumberInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@ export default {
412412
outline: 1px solid $n-50;
413413
border-radius: $border-radius-extra-small;
414414
width: 266px;
415+
background: $n-0;
415416
416417
&--fluid {
417418
@extend .text-input;

src/components/PasswordInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ export default {
271271
outline: 1px solid $n-50;
272272
border-radius: $border-radius-extra-small;
273273
width: v-bind(resolveInputWidth);
274+
background: $n-0;
274275
275276
&--fluid {
276277
@extend .password-input;

src/components/SearchInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ export default {
185185
width: fit-content;
186186
width: -moz-fit-content;
187187
margin: mt(2);
188+
background: $n-0;
188189
189190
&--fluid {
190191
@extend .search-input;

src/components/StepperInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ export default {
295295
border-radius: 6px;
296296
height: 40px;
297297
width: v-bind(widthResolver);
298+
background: $n-0;
298299
299300
&__label {
300301
@include caption;

src/components/Table.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,8 @@ export default {
388388
border-radius: $border-radius-extra-small;
389389
border-spacing: 0px;
390390
width: 100%;
391+
background: $n-0;
392+
391393
}
392394
393395
&__select-item {

src/components/TextInput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ export default {
395395
outline: 1px solid $n-50;
396396
border-radius: $border-radius-extra-small;
397397
width: 266px;
398+
background: $n-0;
398399
399400
&--fluid {
400401
@extend .text-input;

0 commit comments

Comments
 (0)