@neovici/cosmoz-input 3.12.0 → 3.13.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/styles.js +6 -3
- package/package.json +1 -1
package/dist/styles.js
CHANGED
|
@@ -40,10 +40,12 @@ export const styles = css `
|
|
|
40
40
|
padding-top: var(--paper-input-container_-_padding-top, 8px);
|
|
41
41
|
padding-bottom: var(--paper-input-container_-_padding-bottom, 8px);
|
|
42
42
|
position: relative;
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
border: var(--cosmoz-input-border, none);
|
|
44
|
+
border-radius: var(--cosmoz-input-border-radius, 0px);
|
|
45
|
+
max-height: var(--cosmoz-input-max-height);
|
|
45
46
|
font-size: var(--font-size);
|
|
46
47
|
line-height: var(--line-height);
|
|
48
|
+
font-family: var(--font-family);
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
:host([disabled]) {
|
|
@@ -81,6 +83,7 @@ export const styles = css `
|
|
|
81
83
|
font-family: inherit;
|
|
82
84
|
resize: none;
|
|
83
85
|
}
|
|
86
|
+
|
|
84
87
|
:host(:focus-within) .wrap {
|
|
85
88
|
background: var(--focused-bg);
|
|
86
89
|
}
|
|
@@ -117,7 +120,7 @@ export const styles = css `
|
|
|
117
120
|
.line::before {
|
|
118
121
|
content: '';
|
|
119
122
|
position: absolute;
|
|
120
|
-
display: block;
|
|
123
|
+
display: var(--cosmoz-input-line-display, block);
|
|
121
124
|
border-bottom: 2px solid transparent;
|
|
122
125
|
border-bottom-color: inherit;
|
|
123
126
|
left: 0;
|