@webitel/ui-sdk 26.2.102 → 26.2.103
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/ui-sdk.css +1 -1
- package/package.json +1 -1
- package/src/css/main.css +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "26.2.
|
|
3
|
+
"version": "26.2.103",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run biome:format:all || true) && npm run publish-lib",
|
package/src/css/main.css
CHANGED
|
@@ -78,6 +78,23 @@
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
/*
|
|
82
|
+
@author HlukhovYe
|
|
83
|
+
reset input autofill styles https://webitel.atlassian.net/browse/WTEL-9005
|
|
84
|
+
*/
|
|
85
|
+
input:-webkit-autofill,
|
|
86
|
+
input:-webkit-autofill:hover,
|
|
87
|
+
input:-webkit-autofill:focus,
|
|
88
|
+
textarea:-webkit-autofill,
|
|
89
|
+
textarea:-webkit-autofill:hover,
|
|
90
|
+
textarea:-webkit-autofill:focus,
|
|
91
|
+
select:-webkit-autofill,
|
|
92
|
+
select:-webkit-autofill:hover,
|
|
93
|
+
select:-webkit-autofill:focus {
|
|
94
|
+
-webkit-box-shadow: 0 0 0px 1000px transparent inset;
|
|
95
|
+
transition: background-color 5000s ease-in-out 0s; /* prevents an immediate color change */
|
|
96
|
+
}
|
|
97
|
+
|
|
81
98
|
/* https://github.com/Akryum/floating-vue/issues/488 */
|
|
82
99
|
.v-popper__arrow-container {
|
|
83
100
|
display: none;
|