@limetech/lime-elements 36.3.0-next.9 → 36.3.0
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/README.md +2 -2
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-badge.cjs.entry.js +4 -6
- package/dist/cjs/limel-button-group.cjs.entry.js +21 -6
- package/dist/cjs/limel-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-callout.cjs.entry.js +54 -0
- package/dist/cjs/limel-chip-set.cjs.entry.js +13 -3
- package/dist/cjs/limel-code-editor.cjs.entry.js +1 -1
- package/dist/cjs/limel-collapsible-section.cjs.entry.js +3 -12
- package/dist/cjs/limel-color-picker-palette.cjs.entry.js +1 -1
- package/dist/cjs/limel-color-picker.cjs.entry.js +1 -1
- package/dist/cjs/limel-date-picker.cjs.entry.js +47 -7
- package/dist/cjs/limel-dialog.cjs.entry.js +1 -1
- package/dist/cjs/limel-dock-button.cjs.entry.js +7 -2
- package/dist/cjs/limel-dock.cjs.entry.js +1 -1
- package/dist/cjs/limel-file.cjs.entry.js +1 -1
- package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +99 -118
- package/dist/cjs/limel-form.cjs.entry.js +79 -1
- package/dist/cjs/limel-icon-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-info-tile.cjs.entry.js +4 -1
- package/dist/cjs/limel-input-field.cjs.entry.js +2 -2
- package/dist/cjs/limel-list_2.cjs.entry.js +1 -1
- package/dist/cjs/limel-menu-list.cjs.entry.js +7 -1
- package/dist/cjs/limel-menu.cjs.entry.js +10 -2
- package/dist/cjs/limel-portal.cjs.entry.js +3 -4
- package/dist/cjs/limel-select.cjs.entry.js +1 -1
- package/dist/cjs/limel-shortcut.cjs.entry.js +1 -1
- package/dist/cjs/limel-slider.cjs.entry.js +5 -5
- package/dist/cjs/limel-snackbar.cjs.entry.js +2 -2
- package/dist/cjs/limel-spinner.cjs.entry.js +1 -1
- package/dist/cjs/limel-split-button.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-bar.cjs.entry.js +1 -1
- package/dist/cjs/limel-tab-panel.cjs.entry.js +1 -1
- package/dist/cjs/limel-table.cjs.entry.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{dateFormatter-d7a8d40d.js → sv-dffe48b5.js} +222 -173
- package/dist/cjs/{translations-ca7279bc.js → translations-f8080c48.js} +30 -0
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/badge/badge.css +34 -19
- package/dist/collection/components/badge/badge.js +7 -7
- package/dist/collection/components/banner/banner.css +1 -2
- package/dist/collection/components/button/button.css +31 -41
- package/dist/collection/components/button-group/button-group.css +44 -42
- package/dist/collection/components/button-group/button-group.js +25 -6
- package/dist/collection/components/callout/callout.css +77 -0
- package/dist/collection/components/callout/callout.helpers.js +27 -0
- package/dist/collection/components/callout/callout.js +139 -0
- package/dist/collection/components/callout/callout.types.js +1 -0
- package/dist/collection/components/checkbox/checkbox.css +22 -45
- package/dist/collection/components/chip-set/chip-set.css +219 -405
- package/dist/collection/components/chip-set/chip-set.js +6 -2
- package/dist/collection/components/circular-progress/circular-progress.css +8 -0
- package/dist/collection/components/code-editor/code-editor.css +11 -8
- package/dist/collection/components/collapsible-section/collapsible-section.css +87 -55
- package/dist/collection/components/collapsible-section/collapsible-section.js +2 -11
- package/dist/collection/components/color-picker/color-picker-palette.css +16 -14
- package/dist/collection/components/color-picker/color-picker.css +7 -5
- package/dist/collection/components/date-picker/date-picker.js +30 -5
- package/dist/collection/components/date-picker/dateFormatter.js +7 -3
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +11 -1
- package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.js +23 -8
- package/dist/collection/components/date-picker/pickers/Picker.js +11 -8
- package/dist/collection/components/dialog/dialog.css +14 -27
- package/dist/collection/components/dock/dock-button/dock-button.css +17 -2
- package/dist/collection/components/dock/dock-button/dock-button.js +6 -1
- package/dist/collection/components/dock/dock.css +19 -1
- package/dist/collection/components/dock/dock.js +1 -0
- package/dist/collection/components/file/file.js +1 -1
- package/dist/collection/components/form/form.css +122 -18
- package/dist/collection/components/form/form.js +1 -0
- package/dist/collection/components/form/form.types.js +8 -0
- package/dist/collection/components/form/row/row.js +47 -0
- package/dist/collection/components/form/templates/object-field.js +5 -0
- package/dist/collection/components/form/templates/row-layout.js +20 -0
- package/dist/collection/components/header/header.css +8 -0
- package/dist/collection/components/icon-button/icon-button.css +15 -12
- package/dist/collection/components/info-tile/info-tile.css +13 -17
- package/dist/collection/components/info-tile/info-tile.js +3 -0
- package/dist/collection/components/input-field/input-field.css +197 -363
- package/dist/collection/components/input-field/input-field.js +1 -1
- package/dist/collection/components/linear-progress/linear-progress.css +7 -14
- package/dist/collection/components/list/list.css +388 -751
- package/dist/collection/components/menu/menu.css +19 -1
- package/dist/collection/components/menu/menu.js +10 -1
- package/dist/collection/components/menu-list/menu-list-renderer.js +6 -1
- package/dist/collection/components/menu-list/menu-list.css +400 -752
- package/dist/collection/components/menu-surface/menu-surface.css +13 -26
- package/dist/collection/components/popover-surface/popover-surface.css +8 -0
- package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +8 -0
- package/dist/collection/components/select/select.css +174 -323
- package/dist/collection/components/shortcut/shortcut.css +9 -7
- package/dist/collection/components/slider/slider.css +87 -98
- package/dist/collection/components/slider/slider.js +5 -5
- package/dist/collection/components/snackbar/snackbar.css +19 -34
- package/dist/collection/components/snackbar/snackbar.js +1 -1
- package/dist/collection/components/spinner/spinner.css +4 -0
- package/dist/collection/components/split-button/split-button.css +15 -4
- package/dist/collection/components/switch/switch.css +21 -49
- package/dist/collection/components/tab-bar/tab-bar.css +20 -19
- package/dist/collection/components/tab-panel/tab-panel.css +5 -0
- package/dist/collection/components/table/table.css +33 -0
- package/dist/collection/icons/idea.svg +593 -0
- package/dist/collection/icons/info.svg +593 -0
- package/dist/collection/style/internal/z-index.scss +0 -1
- package/dist/collection/style/mixins.scss +15 -4
- package/dist/collection/translations/da.js +5 -0
- package/dist/collection/translations/en.js +5 -0
- package/dist/collection/translations/fi.js +5 -0
- package/dist/collection/translations/nl.js +5 -0
- package/dist/collection/translations/no.js +5 -0
- package/dist/collection/translations/sv.js +5 -0
- package/dist/esm/{keycodes-9f971b46.js → keycodes-44c01beb.js} +1 -1
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-badge.entry.js +4 -6
- package/dist/esm/limel-button-group.entry.js +21 -6
- package/dist/esm/limel-button.entry.js +1 -1
- package/dist/esm/limel-callout.entry.js +50 -0
- package/dist/esm/limel-chip-set.entry.js +14 -4
- package/dist/esm/limel-code-editor.entry.js +1 -1
- package/dist/esm/limel-collapsible-section.entry.js +3 -12
- package/dist/esm/limel-color-picker-palette.entry.js +1 -1
- package/dist/esm/limel-color-picker.entry.js +1 -1
- package/dist/esm/limel-date-picker.entry.js +46 -6
- package/dist/esm/limel-dialog.entry.js +1 -1
- package/dist/esm/limel-dock-button.entry.js +7 -2
- package/dist/esm/limel-dock.entry.js +1 -1
- package/dist/esm/limel-file.entry.js +1 -1
- package/dist/esm/limel-flatpickr-adapter.entry.js +99 -118
- package/dist/esm/limel-form.entry.js +79 -1
- package/dist/esm/limel-icon-button.entry.js +1 -1
- package/dist/esm/limel-info-tile.entry.js +4 -1
- package/dist/esm/limel-input-field.entry.js +3 -3
- package/dist/esm/limel-list_2.entry.js +2 -2
- package/dist/esm/limel-menu-list.entry.js +7 -1
- package/dist/esm/limel-menu.entry.js +10 -2
- package/dist/esm/limel-picker.entry.js +1 -1
- package/dist/esm/limel-popover_4.entry.js +1 -1
- package/dist/esm/limel-portal.entry.js +3 -4
- package/dist/esm/limel-select.entry.js +2 -2
- package/dist/esm/limel-shortcut.entry.js +1 -1
- package/dist/esm/limel-slider.entry.js +6 -6
- package/dist/esm/limel-snackbar.entry.js +2 -2
- package/dist/esm/limel-spinner.entry.js +1 -1
- package/dist/esm/limel-split-button.entry.js +1 -1
- package/dist/esm/limel-tab-bar.entry.js +1 -1
- package/dist/esm/limel-tab-panel.entry.js +1 -1
- package/dist/esm/limel-table.entry.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{dateFormatter-784c3334.js → sv-336c4576.js} +222 -173
- package/dist/esm/{translations-0d0ee941.js → translations-f88bb584.js} +30 -0
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-a8d38277.entry.js → p-10e259de.entry.js} +1 -1
- package/dist/lime-elements/{p-934456bc.entry.js → p-123f5fbb.entry.js} +1 -1
- package/dist/lime-elements/{p-c234a991.entry.js → p-157e0417.entry.js} +2 -2
- package/dist/lime-elements/p-2f9918a3.entry.js +1 -0
- package/dist/lime-elements/p-2fd478df.entry.js +1 -0
- package/dist/lime-elements/p-3be2dfc7.entry.js +1 -0
- package/dist/lime-elements/{p-06f2f6b4.entry.js → p-3fda3473.entry.js} +1 -1
- package/dist/lime-elements/p-46a76d55.entry.js +1 -0
- package/dist/lime-elements/p-4a62273c.entry.js +1 -0
- package/dist/lime-elements/{p-73df4d83.js → p-4dd9a5a5.js} +5 -3
- package/dist/lime-elements/{p-d1187867.entry.js → p-4eeabc1f.entry.js} +1 -1
- package/dist/lime-elements/{p-2f2ea041.entry.js → p-4fcd3337.entry.js} +1 -1
- package/dist/lime-elements/{p-029360c8.entry.js → p-50dbd665.entry.js} +1 -1
- package/dist/lime-elements/{p-e5213a54.entry.js → p-55c8cb64.entry.js} +4 -4
- package/dist/lime-elements/{p-cad7cda1.entry.js → p-58e9df30.entry.js} +1 -1
- package/dist/lime-elements/p-73613abb.entry.js +82 -0
- package/dist/lime-elements/{p-6784c5c3.entry.js → p-7d7d19de.entry.js} +1 -1
- package/dist/lime-elements/{p-9ec08ebc.entry.js → p-8178b348.entry.js} +3 -3
- package/dist/lime-elements/{p-004aad18.entry.js → p-9336fd7f.entry.js} +1 -1
- package/dist/lime-elements/{p-a0c78744.entry.js → p-a88f2922.entry.js} +2 -2
- package/dist/lime-elements/p-b1ae3d1f.entry.js +126 -0
- package/dist/lime-elements/p-b40f37d7.entry.js +1 -0
- package/dist/lime-elements/p-b59e4287.js +1 -0
- package/dist/lime-elements/{p-405207fa.entry.js → p-b80de0ea.entry.js} +1 -1
- package/dist/lime-elements/p-c47cb4c3.entry.js +1 -0
- package/dist/lime-elements/{p-b079fc71.entry.js → p-cc3529bb.entry.js} +1 -1
- package/dist/lime-elements/{p-93ad8b90.entry.js → p-d0084a70.entry.js} +1 -1
- package/dist/lime-elements/p-d16b27b9.entry.js +1 -0
- package/dist/lime-elements/{p-216ffe20.js → p-d7801e00.js} +1 -1
- package/dist/lime-elements/p-d87e2f26.entry.js +1 -0
- package/dist/lime-elements/p-d955c169.entry.js +59 -0
- package/dist/lime-elements/p-da536426.entry.js +1 -0
- package/dist/lime-elements/p-e69231c2.entry.js +16 -0
- package/dist/lime-elements/p-eda87f8c.entry.js +1 -0
- package/dist/lime-elements/{p-0bf916a0.entry.js → p-edbd8d62.entry.js} +1 -1
- package/dist/lime-elements/p-f11e7ce1.entry.js +1 -0
- package/dist/lime-elements/{p-5409b92f.entry.js → p-f979c0f2.entry.js} +1 -1
- package/dist/lime-elements/style/internal/z-index.scss +0 -1
- package/dist/lime-elements/style/mixins.scss +15 -4
- package/dist/scss/mixins.scss +186 -0
- package/dist/types/components/badge/badge.d.ts +4 -2
- package/dist/types/components/button/button.types.d.ts +4 -0
- package/dist/types/components/button-group/button-group.d.ts +4 -0
- package/dist/types/components/callout/callout.d.ts +52 -0
- package/dist/types/components/callout/callout.helpers.d.ts +2 -0
- package/dist/types/components/callout/callout.types.d.ts +11 -0
- package/dist/types/components/chip-set/chip-set.d.ts +1 -1
- package/dist/types/components/collapsible-section/collapsible-section.d.ts +0 -1
- package/dist/types/components/date-picker/date-picker.d.ts +10 -0
- package/dist/types/components/date-picker/date.types.d.ts +1 -1
- package/dist/types/components/date-picker/dateFormatter.d.ts +3 -2
- package/dist/types/components/date-picker/flatpickr-adapter/flatpickr-adapter.d.ts +1 -1
- package/dist/types/components/date-picker/pickers/Picker.d.ts +4 -2
- package/dist/types/components/dock/dock-button/dock-button.d.ts +1 -0
- package/dist/types/components/dock/dock.d.ts +1 -0
- package/dist/types/components/dock/dock.types.d.ts +4 -0
- package/dist/types/components/form/form.d.ts +1 -0
- package/dist/types/components/form/form.types.d.ts +16 -1
- package/dist/types/components/form/row/row.d.ts +16 -0
- package/dist/types/components/form/templates/row-layout.d.ts +11 -0
- package/dist/types/components/form/templates/types.d.ts +3 -0
- package/dist/types/components/menu/menu.d.ts +3 -0
- package/dist/types/components/menu/menu.types.d.ts +4 -0
- package/dist/types/components/menu-list/menu-list-renderer.d.ts +1 -0
- package/dist/types/components.d.ts +57 -1
- package/dist/types/interface.d.ts +1 -0
- package/dist/types/translations/da.d.ts +5 -0
- package/dist/types/translations/en.d.ts +5 -0
- package/dist/types/translations/fi.d.ts +5 -0
- package/dist/types/translations/nl.d.ts +5 -0
- package/dist/types/translations/no.d.ts +5 -0
- package/dist/types/translations/sv.d.ts +5 -0
- package/package.json +23 -20
- package/dist/lime-elements/p-15c3ec8e.entry.js +0 -1
- package/dist/lime-elements/p-246862ec.js +0 -1
- package/dist/lime-elements/p-52e18d94.entry.js +0 -1
- package/dist/lime-elements/p-5393213b.entry.js +0 -1
- package/dist/lime-elements/p-61b3352f.entry.js +0 -1
- package/dist/lime-elements/p-65a3be2c.entry.js +0 -1
- package/dist/lime-elements/p-90961075.entry.js +0 -1
- package/dist/lime-elements/p-91604294.entry.js +0 -1
- package/dist/lime-elements/p-95fd48d0.entry.js +0 -82
- package/dist/lime-elements/p-c4a89055.entry.js +0 -16
- package/dist/lime-elements/p-cc9f89a9.entry.js +0 -1
- package/dist/lime-elements/p-d379f4d6.entry.js +0 -59
- package/dist/lime-elements/p-d512656b.entry.js +0 -1
- package/dist/lime-elements/p-e6a11b73.entry.js +0 -1
- package/dist/lime-elements/p-f9958763.entry.js +0 -1
- package/dist/lime-elements/p-ff340a70.entry.js +0 -126
|
@@ -64,6 +64,14 @@
|
|
|
64
64
|
);
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
/**
|
|
68
|
+
* Note! This file is exported to `dist/scss/` in the published
|
|
69
|
+
* node module, for consumer projects to import.
|
|
70
|
+
* That means this file cannot import from any file that isn't
|
|
71
|
+
* also exported, keeping the same relative path.
|
|
72
|
+
*
|
|
73
|
+
* Or, just don't import anything, that works too.
|
|
74
|
+
*/
|
|
67
75
|
.mdc-notched-outline {
|
|
68
76
|
display: flex;
|
|
69
77
|
position: absolute;
|
|
@@ -74,15 +82,13 @@
|
|
|
74
82
|
width: 100%;
|
|
75
83
|
max-width: 100%;
|
|
76
84
|
height: 100%;
|
|
77
|
-
/* @noflip */
|
|
78
|
-
/*rtl:ignore*/
|
|
85
|
+
/* @noflip */ /*rtl:ignore*/
|
|
79
86
|
text-align: left;
|
|
80
87
|
pointer-events: none;
|
|
81
88
|
}
|
|
82
89
|
[dir=rtl] .mdc-notched-outline, .mdc-notched-outline[dir=rtl] {
|
|
83
90
|
/*rtl:begin:ignore*/
|
|
84
|
-
/* @noflip */
|
|
85
|
-
/*rtl:ignore*/
|
|
91
|
+
/* @noflip */ /*rtl:ignore*/
|
|
86
92
|
text-align: right;
|
|
87
93
|
/*rtl:end:ignore*/
|
|
88
94
|
}
|
|
@@ -95,41 +101,33 @@
|
|
|
95
101
|
pointer-events: none;
|
|
96
102
|
}
|
|
97
103
|
.mdc-notched-outline__leading {
|
|
98
|
-
/* @noflip */
|
|
99
|
-
/*rtl:ignore*/
|
|
104
|
+
/* @noflip */ /*rtl:ignore*/
|
|
100
105
|
border-left: 1px solid;
|
|
101
|
-
/* @noflip */
|
|
102
|
-
/*rtl:ignore*/
|
|
106
|
+
/* @noflip */ /*rtl:ignore*/
|
|
103
107
|
border-right: none;
|
|
104
108
|
width: 12px;
|
|
105
109
|
}
|
|
106
110
|
[dir=rtl] .mdc-notched-outline__leading, .mdc-notched-outline__leading[dir=rtl] {
|
|
107
111
|
/*rtl:begin:ignore*/
|
|
108
|
-
/* @noflip */
|
|
109
|
-
/*rtl:ignore*/
|
|
112
|
+
/* @noflip */ /*rtl:ignore*/
|
|
110
113
|
border-left: none;
|
|
111
|
-
/* @noflip */
|
|
112
|
-
/*rtl:ignore*/
|
|
114
|
+
/* @noflip */ /*rtl:ignore*/
|
|
113
115
|
border-right: 1px solid;
|
|
114
116
|
/*rtl:end:ignore*/
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
.mdc-notched-outline__trailing {
|
|
118
|
-
/* @noflip */
|
|
119
|
-
/*rtl:ignore*/
|
|
120
|
+
/* @noflip */ /*rtl:ignore*/
|
|
120
121
|
border-left: none;
|
|
121
|
-
/* @noflip */
|
|
122
|
-
/*rtl:ignore*/
|
|
122
|
+
/* @noflip */ /*rtl:ignore*/
|
|
123
123
|
border-right: 1px solid;
|
|
124
124
|
flex-grow: 1;
|
|
125
125
|
}
|
|
126
126
|
[dir=rtl] .mdc-notched-outline__trailing, .mdc-notched-outline__trailing[dir=rtl] {
|
|
127
127
|
/*rtl:begin:ignore*/
|
|
128
|
-
/* @noflip */
|
|
129
|
-
/*rtl:ignore*/
|
|
128
|
+
/* @noflip */ /*rtl:ignore*/
|
|
130
129
|
border-left: 1px solid;
|
|
131
|
-
/* @noflip */
|
|
132
|
-
/*rtl:ignore*/
|
|
130
|
+
/* @noflip */ /*rtl:ignore*/
|
|
133
131
|
border-right: none;
|
|
134
132
|
/*rtl:end:ignore*/
|
|
135
133
|
}
|
|
@@ -152,21 +150,17 @@
|
|
|
152
150
|
}
|
|
153
151
|
|
|
154
152
|
.mdc-notched-outline--notched .mdc-notched-outline__notch {
|
|
155
|
-
/* @noflip */
|
|
156
|
-
/*rtl:ignore*/
|
|
153
|
+
/* @noflip */ /*rtl:ignore*/
|
|
157
154
|
padding-left: 0;
|
|
158
|
-
/* @noflip */
|
|
159
|
-
/*rtl:ignore*/
|
|
155
|
+
/* @noflip */ /*rtl:ignore*/
|
|
160
156
|
padding-right: 8px;
|
|
161
157
|
border-top: none;
|
|
162
158
|
}
|
|
163
159
|
[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch, .mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl] {
|
|
164
160
|
/*rtl:begin:ignore*/
|
|
165
|
-
/* @noflip */
|
|
166
|
-
/*rtl:ignore*/
|
|
161
|
+
/* @noflip */ /*rtl:ignore*/
|
|
167
162
|
padding-left: 8px;
|
|
168
|
-
/* @noflip */
|
|
169
|
-
/*rtl:ignore*/
|
|
163
|
+
/* @noflip */ /*rtl:ignore*/
|
|
170
164
|
padding-right: 0;
|
|
171
165
|
/*rtl:end:ignore*/
|
|
172
166
|
}
|
|
@@ -197,14 +191,11 @@
|
|
|
197
191
|
/* @alternate */
|
|
198
192
|
text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
|
|
199
193
|
position: absolute;
|
|
200
|
-
/* @noflip */
|
|
201
|
-
/*rtl:ignore*/
|
|
194
|
+
/* @noflip */ /*rtl:ignore*/
|
|
202
195
|
left: 0;
|
|
203
|
-
/* @noflip */
|
|
204
|
-
/*rtl:ignore*/
|
|
196
|
+
/* @noflip */ /*rtl:ignore*/
|
|
205
197
|
-webkit-transform-origin: left top;
|
|
206
|
-
/* @noflip */
|
|
207
|
-
/*rtl:ignore*/
|
|
198
|
+
/* @noflip */ /*rtl:ignore*/
|
|
208
199
|
transform-origin: left top;
|
|
209
200
|
line-height: 1.15rem;
|
|
210
201
|
text-align: left;
|
|
@@ -218,20 +209,15 @@
|
|
|
218
209
|
}
|
|
219
210
|
[dir=rtl] .mdc-floating-label, .mdc-floating-label[dir=rtl] {
|
|
220
211
|
/*rtl:begin:ignore*/
|
|
221
|
-
/* @noflip */
|
|
222
|
-
/*rtl:ignore*/
|
|
212
|
+
/* @noflip */ /*rtl:ignore*/
|
|
223
213
|
right: 0;
|
|
224
|
-
/* @noflip */
|
|
225
|
-
/*rtl:ignore*/
|
|
214
|
+
/* @noflip */ /*rtl:ignore*/
|
|
226
215
|
left: auto;
|
|
227
|
-
/* @noflip */
|
|
228
|
-
/*rtl:ignore*/
|
|
216
|
+
/* @noflip */ /*rtl:ignore*/
|
|
229
217
|
-webkit-transform-origin: right top;
|
|
230
|
-
/* @noflip */
|
|
231
|
-
/*rtl:ignore*/
|
|
218
|
+
/* @noflip */ /*rtl:ignore*/
|
|
232
219
|
transform-origin: right top;
|
|
233
|
-
/* @noflip */
|
|
234
|
-
/*rtl:ignore*/
|
|
220
|
+
/* @noflip */ /*rtl:ignore*/
|
|
235
221
|
text-align: right;
|
|
236
222
|
/*rtl:end:ignore*/
|
|
237
223
|
}
|
|
@@ -241,11 +227,9 @@
|
|
|
241
227
|
}
|
|
242
228
|
|
|
243
229
|
.mdc-floating-label--required::after {
|
|
244
|
-
/* @noflip */
|
|
245
|
-
/*rtl:ignore*/
|
|
230
|
+
/* @noflip */ /*rtl:ignore*/
|
|
246
231
|
margin-left: 1px;
|
|
247
|
-
/* @noflip */
|
|
248
|
-
/*rtl:ignore*/
|
|
232
|
+
/* @noflip */ /*rtl:ignore*/
|
|
249
233
|
margin-right: 0px;
|
|
250
234
|
content: "*";
|
|
251
235
|
}
|
|
@@ -254,11 +238,9 @@
|
|
|
254
238
|
/*rtl:end:ignore*/
|
|
255
239
|
}
|
|
256
240
|
[dir=rtl] .mdc-floating-label--required::after, .mdc-floating-label--required[dir=rtl]::after {
|
|
257
|
-
/* @noflip */
|
|
258
|
-
/*rtl:ignore*/
|
|
241
|
+
/* @noflip */ /*rtl:ignore*/
|
|
259
242
|
margin-left: 0;
|
|
260
|
-
/* @noflip */
|
|
261
|
-
/*rtl:ignore*/
|
|
243
|
+
/* @noflip */ /*rtl:ignore*/
|
|
262
244
|
margin-right: 1px;
|
|
263
245
|
}
|
|
264
246
|
|
|
@@ -272,25 +254,21 @@
|
|
|
272
254
|
|
|
273
255
|
@keyframes mdc-floating-label-shake-float-above-standard {
|
|
274
256
|
0% {
|
|
275
|
-
/* @noflip */
|
|
276
|
-
/*rtl:ignore*/
|
|
257
|
+
/* @noflip */ /*rtl:ignore*/
|
|
277
258
|
transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75);
|
|
278
259
|
}
|
|
279
260
|
33% {
|
|
280
261
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
281
|
-
/* @noflip */
|
|
282
|
-
/*rtl:ignore*/
|
|
262
|
+
/* @noflip */ /*rtl:ignore*/
|
|
283
263
|
transform: translateX(calc(4% - 0%)) translateY(-106%) scale(0.75);
|
|
284
264
|
}
|
|
285
265
|
66% {
|
|
286
266
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
287
|
-
/* @noflip */
|
|
288
|
-
/*rtl:ignore*/
|
|
267
|
+
/* @noflip */ /*rtl:ignore*/
|
|
289
268
|
transform: translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75);
|
|
290
269
|
}
|
|
291
270
|
100% {
|
|
292
|
-
/* @noflip */
|
|
293
|
-
/*rtl:ignore*/
|
|
271
|
+
/* @noflip */ /*rtl:ignore*/
|
|
294
272
|
transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75);
|
|
295
273
|
}
|
|
296
274
|
}
|
|
@@ -302,8 +280,7 @@
|
|
|
302
280
|
position: absolute;
|
|
303
281
|
top: 50%;
|
|
304
282
|
height: 48px;
|
|
305
|
-
/* @noflip */
|
|
306
|
-
/*rtl:ignore*/
|
|
283
|
+
/* @noflip */ /*rtl:ignore*/
|
|
307
284
|
left: 50%;
|
|
308
285
|
width: 48px;
|
|
309
286
|
transform: translate(-50%, -50%);
|
|
@@ -401,16 +378,14 @@
|
|
|
401
378
|
}
|
|
402
379
|
.mdc-deprecated-chip-trailing-action.mdc-ripple-upgraded .mdc-deprecated-chip-trailing-action__ripple::after {
|
|
403
380
|
top: 0;
|
|
404
|
-
/* @noflip */
|
|
405
|
-
/*rtl:ignore*/
|
|
381
|
+
/* @noflip */ /*rtl:ignore*/
|
|
406
382
|
left: 0;
|
|
407
383
|
transform: scale(0);
|
|
408
384
|
transform-origin: center center;
|
|
409
385
|
}
|
|
410
386
|
.mdc-deprecated-chip-trailing-action.mdc-ripple-upgraded--unbounded .mdc-deprecated-chip-trailing-action__ripple::after {
|
|
411
387
|
top: var(--mdc-ripple-top, 0);
|
|
412
|
-
/* @noflip */
|
|
413
|
-
/*rtl:ignore*/
|
|
388
|
+
/* @noflip */ /*rtl:ignore*/
|
|
414
389
|
left: var(--mdc-ripple-left, 0);
|
|
415
390
|
}
|
|
416
391
|
.mdc-deprecated-chip-trailing-action.mdc-ripple-upgraded--foreground-activation .mdc-deprecated-chip-trailing-action__ripple::after {
|
|
@@ -423,8 +398,7 @@
|
|
|
423
398
|
.mdc-deprecated-chip-trailing-action .mdc-deprecated-chip-trailing-action__ripple::before,
|
|
424
399
|
.mdc-deprecated-chip-trailing-action .mdc-deprecated-chip-trailing-action__ripple::after {
|
|
425
400
|
top: calc(50% - 50%);
|
|
426
|
-
/* @noflip */
|
|
427
|
-
/*rtl:ignore*/
|
|
401
|
+
/* @noflip */ /*rtl:ignore*/
|
|
428
402
|
left: calc(50% - 50%);
|
|
429
403
|
width: 100%;
|
|
430
404
|
height: 100%;
|
|
@@ -432,8 +406,7 @@
|
|
|
432
406
|
.mdc-deprecated-chip-trailing-action.mdc-ripple-upgraded .mdc-deprecated-chip-trailing-action__ripple::before,
|
|
433
407
|
.mdc-deprecated-chip-trailing-action.mdc-ripple-upgraded .mdc-deprecated-chip-trailing-action__ripple::after {
|
|
434
408
|
top: var(--mdc-ripple-top, calc(50% - 50%));
|
|
435
|
-
/* @noflip */
|
|
436
|
-
/*rtl:ignore*/
|
|
409
|
+
/* @noflip */ /*rtl:ignore*/
|
|
437
410
|
left: var(--mdc-ripple-left, calc(50% - 50%));
|
|
438
411
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
439
412
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
@@ -515,39 +488,31 @@
|
|
|
515
488
|
}
|
|
516
489
|
|
|
517
490
|
.mdc-deprecated-chip-trailing-action {
|
|
518
|
-
/* @noflip */
|
|
519
|
-
/*rtl:ignore*/
|
|
491
|
+
/* @noflip */ /*rtl:ignore*/
|
|
520
492
|
margin-left: 4px;
|
|
521
|
-
/* @noflip */
|
|
522
|
-
/*rtl:ignore*/
|
|
493
|
+
/* @noflip */ /*rtl:ignore*/
|
|
523
494
|
margin-right: -4px;
|
|
524
495
|
}
|
|
525
496
|
[dir=rtl] .mdc-deprecated-chip-trailing-action, .mdc-deprecated-chip-trailing-action[dir=rtl] {
|
|
526
497
|
/*rtl:begin:ignore*/
|
|
527
|
-
/* @noflip */
|
|
528
|
-
/*rtl:ignore*/
|
|
498
|
+
/* @noflip */ /*rtl:ignore*/
|
|
529
499
|
margin-left: -4px;
|
|
530
|
-
/* @noflip */
|
|
531
|
-
/*rtl:ignore*/
|
|
500
|
+
/* @noflip */ /*rtl:ignore*/
|
|
532
501
|
margin-right: 4px;
|
|
533
502
|
/*rtl:end:ignore*/
|
|
534
503
|
}
|
|
535
504
|
|
|
536
505
|
.mdc-chip__icon--trailing {
|
|
537
|
-
/* @noflip */
|
|
538
|
-
/*rtl:ignore*/
|
|
506
|
+
/* @noflip */ /*rtl:ignore*/
|
|
539
507
|
margin-left: 4px;
|
|
540
|
-
/* @noflip */
|
|
541
|
-
/*rtl:ignore*/
|
|
508
|
+
/* @noflip */ /*rtl:ignore*/
|
|
542
509
|
margin-right: -4px;
|
|
543
510
|
}
|
|
544
511
|
[dir=rtl] .mdc-chip__icon--trailing, .mdc-chip__icon--trailing[dir=rtl] {
|
|
545
512
|
/*rtl:begin:ignore*/
|
|
546
|
-
/* @noflip */
|
|
547
|
-
/*rtl:ignore*/
|
|
513
|
+
/* @noflip */ /*rtl:ignore*/
|
|
548
514
|
margin-left: -4px;
|
|
549
|
-
/* @noflip */
|
|
550
|
-
/*rtl:ignore*/
|
|
515
|
+
/* @noflip */ /*rtl:ignore*/
|
|
551
516
|
margin-right: 4px;
|
|
552
517
|
/*rtl:end:ignore*/
|
|
553
518
|
}
|
|
@@ -612,20 +577,16 @@
|
|
|
612
577
|
}
|
|
613
578
|
.mdc-chip.mdc-chip--selected .mdc-chip__checkmark,
|
|
614
579
|
.mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
|
|
615
|
-
/* @noflip */
|
|
616
|
-
/*rtl:ignore*/
|
|
580
|
+
/* @noflip */ /*rtl:ignore*/
|
|
617
581
|
margin-left: -4px;
|
|
618
|
-
/* @noflip */
|
|
619
|
-
/*rtl:ignore*/
|
|
582
|
+
/* @noflip */ /*rtl:ignore*/
|
|
620
583
|
margin-right: 4px;
|
|
621
584
|
}
|
|
622
585
|
[dir=rtl] .mdc-chip.mdc-chip--selected .mdc-chip__checkmark, [dir=rtl] .mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden), .mdc-chip.mdc-chip--selected .mdc-chip__checkmark[dir=rtl], .mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden)[dir=rtl] {
|
|
623
586
|
/*rtl:begin:ignore*/
|
|
624
|
-
/* @noflip */
|
|
625
|
-
/*rtl:ignore*/
|
|
587
|
+
/* @noflip */ /*rtl:ignore*/
|
|
626
588
|
margin-left: 4px;
|
|
627
|
-
/* @noflip */
|
|
628
|
-
/*rtl:ignore*/
|
|
589
|
+
/* @noflip */ /*rtl:ignore*/
|
|
629
590
|
margin-right: -4px;
|
|
630
591
|
/*rtl:end:ignore*/
|
|
631
592
|
}
|
|
@@ -634,8 +595,7 @@
|
|
|
634
595
|
width: 100%;
|
|
635
596
|
height: 100%;
|
|
636
597
|
top: 0;
|
|
637
|
-
/* @noflip */
|
|
638
|
-
/*rtl:ignore*/
|
|
598
|
+
/* @noflip */ /*rtl:ignore*/
|
|
639
599
|
left: 0;
|
|
640
600
|
}
|
|
641
601
|
.mdc-chip::-moz-focus-inner {
|
|
@@ -796,16 +756,14 @@
|
|
|
796
756
|
}
|
|
797
757
|
.mdc-chip.mdc-ripple-upgraded .mdc-chip__ripple::after {
|
|
798
758
|
top: 0;
|
|
799
|
-
/* @noflip */
|
|
800
|
-
/*rtl:ignore*/
|
|
759
|
+
/* @noflip */ /*rtl:ignore*/
|
|
801
760
|
left: 0;
|
|
802
761
|
transform: scale(0);
|
|
803
762
|
transform-origin: center center;
|
|
804
763
|
}
|
|
805
764
|
.mdc-chip.mdc-ripple-upgraded--unbounded .mdc-chip__ripple::after {
|
|
806
765
|
top: var(--mdc-ripple-top, 0);
|
|
807
|
-
/* @noflip */
|
|
808
|
-
/*rtl:ignore*/
|
|
766
|
+
/* @noflip */ /*rtl:ignore*/
|
|
809
767
|
left: var(--mdc-ripple-left, 0);
|
|
810
768
|
}
|
|
811
769
|
.mdc-chip.mdc-ripple-upgraded--foreground-activation .mdc-chip__ripple::after {
|
|
@@ -818,8 +776,7 @@
|
|
|
818
776
|
.mdc-chip .mdc-chip__ripple::before,
|
|
819
777
|
.mdc-chip .mdc-chip__ripple::after {
|
|
820
778
|
top: calc(50% - 100%);
|
|
821
|
-
/* @noflip */
|
|
822
|
-
/*rtl:ignore*/
|
|
779
|
+
/* @noflip */ /*rtl:ignore*/
|
|
823
780
|
left: calc(50% - 100%);
|
|
824
781
|
width: 200%;
|
|
825
782
|
height: 200%;
|
|
@@ -969,16 +926,14 @@
|
|
|
969
926
|
}
|
|
970
927
|
.mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::after {
|
|
971
928
|
top: 0;
|
|
972
|
-
/* @noflip */
|
|
973
|
-
/*rtl:ignore*/
|
|
929
|
+
/* @noflip */ /*rtl:ignore*/
|
|
974
930
|
left: 0;
|
|
975
931
|
transform: scale(0);
|
|
976
932
|
transform-origin: center center;
|
|
977
933
|
}
|
|
978
934
|
.mdc-text-field--filled.mdc-ripple-upgraded--unbounded .mdc-text-field__ripple::after {
|
|
979
935
|
top: var(--mdc-ripple-top, 0);
|
|
980
|
-
/* @noflip */
|
|
981
|
-
/*rtl:ignore*/
|
|
936
|
+
/* @noflip */ /*rtl:ignore*/
|
|
982
937
|
left: var(--mdc-ripple-left, 0);
|
|
983
938
|
}
|
|
984
939
|
.mdc-text-field--filled.mdc-ripple-upgraded--foreground-activation .mdc-text-field__ripple::after {
|
|
@@ -991,8 +946,7 @@
|
|
|
991
946
|
.mdc-text-field--filled .mdc-text-field__ripple::before,
|
|
992
947
|
.mdc-text-field--filled .mdc-text-field__ripple::after {
|
|
993
948
|
top: calc(50% - 100%);
|
|
994
|
-
/* @noflip */
|
|
995
|
-
/*rtl:ignore*/
|
|
949
|
+
/* @noflip */ /*rtl:ignore*/
|
|
996
950
|
left: calc(50% - 100%);
|
|
997
951
|
width: 200%;
|
|
998
952
|
height: 200%;
|
|
@@ -1184,77 +1138,61 @@
|
|
|
1184
1138
|
}
|
|
1185
1139
|
|
|
1186
1140
|
.mdc-text-field__affix--prefix {
|
|
1187
|
-
/* @noflip */
|
|
1188
|
-
/*rtl:ignore*/
|
|
1141
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1189
1142
|
padding-left: 0;
|
|
1190
|
-
/* @noflip */
|
|
1191
|
-
/*rtl:ignore*/
|
|
1143
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1192
1144
|
padding-right: 2px;
|
|
1193
1145
|
}
|
|
1194
1146
|
[dir=rtl] .mdc-text-field__affix--prefix, .mdc-text-field__affix--prefix[dir=rtl] {
|
|
1195
1147
|
/*rtl:begin:ignore*/
|
|
1196
|
-
/* @noflip */
|
|
1197
|
-
/*rtl:ignore*/
|
|
1148
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1198
1149
|
padding-left: 2px;
|
|
1199
|
-
/* @noflip */
|
|
1200
|
-
/*rtl:ignore*/
|
|
1150
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1201
1151
|
padding-right: 0;
|
|
1202
1152
|
/*rtl:end:ignore*/
|
|
1203
1153
|
}
|
|
1204
1154
|
|
|
1205
1155
|
.mdc-text-field--end-aligned .mdc-text-field__affix--prefix {
|
|
1206
|
-
/* @noflip */
|
|
1207
|
-
/*rtl:ignore*/
|
|
1156
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1208
1157
|
padding-left: 0;
|
|
1209
|
-
/* @noflip */
|
|
1210
|
-
/*rtl:ignore*/
|
|
1158
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1211
1159
|
padding-right: 12px;
|
|
1212
1160
|
}
|
|
1213
1161
|
[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix, .mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl] {
|
|
1214
1162
|
/*rtl:begin:ignore*/
|
|
1215
|
-
/* @noflip */
|
|
1216
|
-
/*rtl:ignore*/
|
|
1163
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1217
1164
|
padding-left: 12px;
|
|
1218
|
-
/* @noflip */
|
|
1219
|
-
/*rtl:ignore*/
|
|
1165
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1220
1166
|
padding-right: 0;
|
|
1221
1167
|
/*rtl:end:ignore*/
|
|
1222
1168
|
}
|
|
1223
1169
|
|
|
1224
1170
|
.mdc-text-field__affix--suffix {
|
|
1225
|
-
/* @noflip */
|
|
1226
|
-
/*rtl:ignore*/
|
|
1171
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1227
1172
|
padding-left: 12px;
|
|
1228
|
-
/* @noflip */
|
|
1229
|
-
/*rtl:ignore*/
|
|
1173
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1230
1174
|
padding-right: 0;
|
|
1231
1175
|
}
|
|
1232
1176
|
[dir=rtl] .mdc-text-field__affix--suffix, .mdc-text-field__affix--suffix[dir=rtl] {
|
|
1233
1177
|
/*rtl:begin:ignore*/
|
|
1234
|
-
/* @noflip */
|
|
1235
|
-
/*rtl:ignore*/
|
|
1178
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1236
1179
|
padding-left: 0;
|
|
1237
|
-
/* @noflip */
|
|
1238
|
-
/*rtl:ignore*/
|
|
1180
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1239
1181
|
padding-right: 12px;
|
|
1240
1182
|
/*rtl:end:ignore*/
|
|
1241
1183
|
}
|
|
1242
1184
|
|
|
1243
1185
|
.mdc-text-field--end-aligned .mdc-text-field__affix--suffix {
|
|
1244
|
-
/* @noflip */
|
|
1245
|
-
/*rtl:ignore*/
|
|
1186
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1246
1187
|
padding-left: 2px;
|
|
1247
|
-
/* @noflip */
|
|
1248
|
-
/*rtl:ignore*/
|
|
1188
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1249
1189
|
padding-right: 0;
|
|
1250
1190
|
}
|
|
1251
1191
|
[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix, .mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl] {
|
|
1252
1192
|
/*rtl:begin:ignore*/
|
|
1253
|
-
/* @noflip */
|
|
1254
|
-
/*rtl:ignore*/
|
|
1193
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1255
1194
|
padding-left: 0;
|
|
1256
|
-
/* @noflip */
|
|
1257
|
-
/*rtl:ignore*/
|
|
1195
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1258
1196
|
padding-right: 2px;
|
|
1259
1197
|
/*rtl:end:ignore*/
|
|
1260
1198
|
}
|
|
@@ -1301,20 +1239,16 @@
|
|
|
1301
1239
|
border-bottom-color: var(--mdc-theme-primary, #26a69a);
|
|
1302
1240
|
}
|
|
1303
1241
|
.mdc-text-field--filled .mdc-floating-label {
|
|
1304
|
-
/* @noflip */
|
|
1305
|
-
/*rtl:ignore*/
|
|
1242
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1306
1243
|
left: 16px;
|
|
1307
|
-
/* @noflip */
|
|
1308
|
-
/*rtl:ignore*/
|
|
1244
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1309
1245
|
right: initial;
|
|
1310
1246
|
}
|
|
1311
1247
|
[dir=rtl] .mdc-text-field--filled .mdc-floating-label, .mdc-text-field--filled .mdc-floating-label[dir=rtl] {
|
|
1312
1248
|
/*rtl:begin:ignore*/
|
|
1313
|
-
/* @noflip */
|
|
1314
|
-
/*rtl:ignore*/
|
|
1249
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1315
1250
|
left: initial;
|
|
1316
|
-
/* @noflip */
|
|
1317
|
-
/*rtl:ignore*/
|
|
1251
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1318
1252
|
right: 16px;
|
|
1319
1253
|
/*rtl:end:ignore*/
|
|
1320
1254
|
}
|
|
@@ -1363,25 +1297,21 @@
|
|
|
1363
1297
|
}
|
|
1364
1298
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
|
|
1365
1299
|
0% {
|
|
1366
|
-
/* @noflip */
|
|
1367
|
-
/*rtl:ignore*/
|
|
1300
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1368
1301
|
transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75);
|
|
1369
1302
|
}
|
|
1370
1303
|
33% {
|
|
1371
1304
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
1372
|
-
/* @noflip */
|
|
1373
|
-
/*rtl:ignore*/
|
|
1305
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1374
1306
|
transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75);
|
|
1375
1307
|
}
|
|
1376
1308
|
66% {
|
|
1377
1309
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
1378
|
-
/* @noflip */
|
|
1379
|
-
/*rtl:ignore*/
|
|
1310
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1380
1311
|
transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75);
|
|
1381
1312
|
}
|
|
1382
1313
|
100% {
|
|
1383
|
-
/* @noflip */
|
|
1384
|
-
/*rtl:ignore*/
|
|
1314
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1385
1315
|
transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75);
|
|
1386
1316
|
}
|
|
1387
1317
|
}
|
|
@@ -1406,197 +1336,159 @@
|
|
|
1406
1336
|
border-color: var(--mdc-theme-primary, #26a69a);
|
|
1407
1337
|
}
|
|
1408
1338
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
|
|
1409
|
-
/* @noflip */
|
|
1410
|
-
/*rtl:ignore*/
|
|
1339
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1411
1340
|
border-top-left-radius: 4px;
|
|
1412
1341
|
/* @alternate */
|
|
1413
|
-
/* @noflip */
|
|
1414
|
-
/*rtl:ignore*/
|
|
1342
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1415
1343
|
border-top-left-radius: var(--mdc-shape-small, 4px);
|
|
1416
|
-
/* @noflip */
|
|
1417
|
-
/*rtl:ignore*/
|
|
1344
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1418
1345
|
border-top-right-radius: 0;
|
|
1419
|
-
/* @noflip */
|
|
1420
|
-
/*rtl:ignore*/
|
|
1346
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1421
1347
|
border-bottom-right-radius: 0;
|
|
1422
|
-
/* @noflip */
|
|
1423
|
-
/*rtl:ignore*/
|
|
1348
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1424
1349
|
border-bottom-left-radius: 4px;
|
|
1425
1350
|
/* @alternate */
|
|
1426
|
-
/* @noflip */
|
|
1427
|
-
/*rtl:ignore*/
|
|
1351
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1428
1352
|
border-bottom-left-radius: var(--mdc-shape-small, 4px);
|
|
1429
1353
|
}
|
|
1430
1354
|
[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading, .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl] {
|
|
1431
1355
|
/*rtl:begin:ignore*/
|
|
1432
|
-
/* @noflip */
|
|
1433
|
-
/*rtl:ignore*/
|
|
1356
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1434
1357
|
border-top-left-radius: 0;
|
|
1435
|
-
/* @noflip */
|
|
1436
|
-
/*rtl:ignore*/
|
|
1358
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1437
1359
|
border-top-right-radius: 4px;
|
|
1438
1360
|
/* @alternate */
|
|
1439
|
-
/* @noflip */
|
|
1440
|
-
/*rtl:ignore*/
|
|
1361
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1441
1362
|
border-top-right-radius: var(--mdc-shape-small, 4px);
|
|
1442
|
-
/* @noflip */
|
|
1443
|
-
/*rtl:ignore*/
|
|
1363
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1444
1364
|
border-bottom-right-radius: 4px;
|
|
1445
1365
|
/* @alternate */
|
|
1446
|
-
/* @noflip */
|
|
1447
|
-
/*rtl:ignore*/
|
|
1366
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1448
1367
|
border-bottom-right-radius: var(--mdc-shape-small, 4px);
|
|
1449
|
-
/* @noflip */
|
|
1450
|
-
/*rtl:ignore*/
|
|
1368
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1451
1369
|
border-bottom-left-radius: 0;
|
|
1452
1370
|
/*rtl:end:ignore*/
|
|
1453
1371
|
}
|
|
1454
1372
|
|
|
1455
|
-
@supports (top: 0%) {
|
|
1373
|
+
@supports (top: max(0%)) {
|
|
1456
1374
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
|
|
1457
1375
|
width: max(12px, var(--mdc-shape-small, 4px));
|
|
1458
1376
|
}
|
|
1459
1377
|
}
|
|
1460
|
-
@supports (top: 0%) {
|
|
1378
|
+
@supports (top: max(0%)) {
|
|
1461
1379
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch {
|
|
1462
1380
|
max-width: calc(100% - max(12px, var(--mdc-shape-small, 4px)) * 2);
|
|
1463
1381
|
}
|
|
1464
1382
|
}
|
|
1465
1383
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
|
|
1466
|
-
/* @noflip */
|
|
1467
|
-
/*rtl:ignore*/
|
|
1384
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1468
1385
|
border-top-left-radius: 0;
|
|
1469
|
-
/* @noflip */
|
|
1470
|
-
/*rtl:ignore*/
|
|
1386
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1471
1387
|
border-top-right-radius: 4px;
|
|
1472
1388
|
/* @alternate */
|
|
1473
|
-
/* @noflip */
|
|
1474
|
-
/*rtl:ignore*/
|
|
1389
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1475
1390
|
border-top-right-radius: var(--mdc-shape-small, 4px);
|
|
1476
|
-
/* @noflip */
|
|
1477
|
-
/*rtl:ignore*/
|
|
1391
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1478
1392
|
border-bottom-right-radius: 4px;
|
|
1479
1393
|
/* @alternate */
|
|
1480
|
-
/* @noflip */
|
|
1481
|
-
/*rtl:ignore*/
|
|
1394
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1482
1395
|
border-bottom-right-radius: var(--mdc-shape-small, 4px);
|
|
1483
|
-
/* @noflip */
|
|
1484
|
-
/*rtl:ignore*/
|
|
1396
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1485
1397
|
border-bottom-left-radius: 0;
|
|
1486
1398
|
}
|
|
1487
1399
|
[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing, .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl] {
|
|
1488
1400
|
/*rtl:begin:ignore*/
|
|
1489
|
-
/* @noflip */
|
|
1490
|
-
/*rtl:ignore*/
|
|
1401
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1491
1402
|
border-top-left-radius: 4px;
|
|
1492
1403
|
/* @alternate */
|
|
1493
|
-
/* @noflip */
|
|
1494
|
-
/*rtl:ignore*/
|
|
1404
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1495
1405
|
border-top-left-radius: var(--mdc-shape-small, 4px);
|
|
1496
|
-
/* @noflip */
|
|
1497
|
-
/*rtl:ignore*/
|
|
1406
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1498
1407
|
border-top-right-radius: 0;
|
|
1499
|
-
/* @noflip */
|
|
1500
|
-
/*rtl:ignore*/
|
|
1408
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1501
1409
|
border-bottom-right-radius: 0;
|
|
1502
|
-
/* @noflip */
|
|
1503
|
-
/*rtl:ignore*/
|
|
1410
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1504
1411
|
border-bottom-left-radius: 4px;
|
|
1505
1412
|
/* @alternate */
|
|
1506
|
-
/* @noflip */
|
|
1507
|
-
/*rtl:ignore*/
|
|
1413
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1508
1414
|
border-bottom-left-radius: var(--mdc-shape-small, 4px);
|
|
1509
1415
|
/*rtl:end:ignore*/
|
|
1510
1416
|
}
|
|
1511
1417
|
|
|
1512
|
-
@supports (top: 0%) {
|
|
1418
|
+
@supports (top: max(0%)) {
|
|
1513
1419
|
.mdc-text-field--outlined {
|
|
1514
|
-
/* @noflip */
|
|
1515
|
-
/*rtl:ignore*/
|
|
1420
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1516
1421
|
padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
|
|
1517
1422
|
}
|
|
1518
1423
|
}
|
|
1519
|
-
@supports (top: 0%) {
|
|
1424
|
+
@supports (top: max(0%)) {
|
|
1520
1425
|
.mdc-text-field--outlined {
|
|
1521
|
-
/* @noflip */
|
|
1522
|
-
/*rtl:ignore*/
|
|
1426
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1523
1427
|
padding-right: max(16px, var(--mdc-shape-small, 4px));
|
|
1524
1428
|
}
|
|
1525
1429
|
}
|
|
1526
|
-
@supports (top: 0%) {
|
|
1430
|
+
@supports (top: max(0%)) {
|
|
1527
1431
|
.mdc-text-field--outlined + .mdc-text-field-helper-line {
|
|
1528
|
-
/* @noflip */
|
|
1529
|
-
/*rtl:ignore*/
|
|
1432
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1530
1433
|
padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
|
|
1531
1434
|
}
|
|
1532
1435
|
}
|
|
1533
|
-
@supports (top: 0%) {
|
|
1436
|
+
@supports (top: max(0%)) {
|
|
1534
1437
|
.mdc-text-field--outlined + .mdc-text-field-helper-line {
|
|
1535
|
-
/* @noflip */
|
|
1536
|
-
/*rtl:ignore*/
|
|
1438
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1537
1439
|
padding-right: max(16px, var(--mdc-shape-small, 4px));
|
|
1538
1440
|
}
|
|
1539
1441
|
}
|
|
1540
1442
|
.mdc-text-field--outlined.mdc-text-field--with-leading-icon {
|
|
1541
|
-
/* @noflip */
|
|
1542
|
-
/*rtl:ignore*/
|
|
1443
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1543
1444
|
padding-left: 0;
|
|
1544
1445
|
}
|
|
1545
|
-
@supports (top: 0%) {
|
|
1446
|
+
@supports (top: max(0%)) {
|
|
1546
1447
|
.mdc-text-field--outlined.mdc-text-field--with-leading-icon {
|
|
1547
|
-
/* @noflip */
|
|
1548
|
-
/*rtl:ignore*/
|
|
1448
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1549
1449
|
padding-right: max(16px, var(--mdc-shape-small, 4px));
|
|
1550
1450
|
}
|
|
1551
1451
|
}
|
|
1552
1452
|
[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon, .mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl] {
|
|
1553
1453
|
/*rtl:begin:ignore*/
|
|
1554
|
-
/* @noflip */
|
|
1555
|
-
/*rtl:ignore*/
|
|
1454
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1556
1455
|
padding-right: 0;
|
|
1557
1456
|
/*rtl:end:ignore*/
|
|
1558
1457
|
}
|
|
1559
|
-
@supports (top: 0%) {
|
|
1458
|
+
@supports (top: max(0%)) {
|
|
1560
1459
|
[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon, .mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl] {
|
|
1561
|
-
/* @noflip */
|
|
1562
|
-
/*rtl:ignore*/
|
|
1460
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1563
1461
|
padding-left: max(16px, var(--mdc-shape-small, 4px));
|
|
1564
1462
|
}
|
|
1565
1463
|
}
|
|
1566
1464
|
|
|
1567
1465
|
.mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
|
|
1568
|
-
/* @noflip */
|
|
1569
|
-
/*rtl:ignore*/
|
|
1466
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1570
1467
|
padding-right: 0;
|
|
1571
1468
|
}
|
|
1572
|
-
@supports (top: 0%) {
|
|
1469
|
+
@supports (top: max(0%)) {
|
|
1573
1470
|
.mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
|
|
1574
|
-
/* @noflip */
|
|
1575
|
-
/*rtl:ignore*/
|
|
1471
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1576
1472
|
padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
|
|
1577
1473
|
}
|
|
1578
1474
|
}
|
|
1579
1475
|
[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon, .mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl] {
|
|
1580
1476
|
/*rtl:begin:ignore*/
|
|
1581
|
-
/* @noflip */
|
|
1582
|
-
/*rtl:ignore*/
|
|
1477
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1583
1478
|
padding-left: 0;
|
|
1584
1479
|
/*rtl:end:ignore*/
|
|
1585
1480
|
}
|
|
1586
|
-
@supports (top: 0%) {
|
|
1481
|
+
@supports (top: max(0%)) {
|
|
1587
1482
|
[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon, .mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl] {
|
|
1588
|
-
/* @noflip */
|
|
1589
|
-
/*rtl:ignore*/
|
|
1483
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1590
1484
|
padding-right: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
|
|
1591
1485
|
}
|
|
1592
1486
|
}
|
|
1593
1487
|
|
|
1594
1488
|
.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
|
|
1595
|
-
/* @noflip */
|
|
1596
|
-
/*rtl:ignore*/
|
|
1489
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1597
1490
|
padding-left: 0;
|
|
1598
|
-
/* @noflip */
|
|
1599
|
-
/*rtl:ignore*/
|
|
1491
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1600
1492
|
padding-right: 0;
|
|
1601
1493
|
}
|
|
1602
1494
|
.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch {
|
|
@@ -1607,20 +1499,16 @@
|
|
|
1607
1499
|
content: none;
|
|
1608
1500
|
}
|
|
1609
1501
|
.mdc-text-field--outlined .mdc-floating-label {
|
|
1610
|
-
/* @noflip */
|
|
1611
|
-
/*rtl:ignore*/
|
|
1502
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1612
1503
|
left: 4px;
|
|
1613
|
-
/* @noflip */
|
|
1614
|
-
/*rtl:ignore*/
|
|
1504
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1615
1505
|
right: initial;
|
|
1616
1506
|
}
|
|
1617
1507
|
[dir=rtl] .mdc-text-field--outlined .mdc-floating-label, .mdc-text-field--outlined .mdc-floating-label[dir=rtl] {
|
|
1618
1508
|
/*rtl:begin:ignore*/
|
|
1619
|
-
/* @noflip */
|
|
1620
|
-
/*rtl:ignore*/
|
|
1509
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1621
1510
|
left: initial;
|
|
1622
|
-
/* @noflip */
|
|
1623
|
-
/*rtl:ignore*/
|
|
1511
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1624
1512
|
right: 4px;
|
|
1625
1513
|
/*rtl:end:ignore*/
|
|
1626
1514
|
}
|
|
@@ -1670,25 +1558,21 @@
|
|
|
1670
1558
|
}
|
|
1671
1559
|
@keyframes mdc-floating-label-shake-float-above-textarea-filled {
|
|
1672
1560
|
0% {
|
|
1673
|
-
/* @noflip */
|
|
1674
|
-
/*rtl:ignore*/
|
|
1561
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1675
1562
|
transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75);
|
|
1676
1563
|
}
|
|
1677
1564
|
33% {
|
|
1678
1565
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
1679
|
-
/* @noflip */
|
|
1680
|
-
/*rtl:ignore*/
|
|
1566
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1681
1567
|
transform: translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75);
|
|
1682
1568
|
}
|
|
1683
1569
|
66% {
|
|
1684
1570
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
1685
|
-
/* @noflip */
|
|
1686
|
-
/*rtl:ignore*/
|
|
1571
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1687
1572
|
transform: translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75);
|
|
1688
1573
|
}
|
|
1689
1574
|
100% {
|
|
1690
|
-
/* @noflip */
|
|
1691
|
-
/*rtl:ignore*/
|
|
1575
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1692
1576
|
transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75);
|
|
1693
1577
|
}
|
|
1694
1578
|
}
|
|
@@ -1722,25 +1606,21 @@
|
|
|
1722
1606
|
}
|
|
1723
1607
|
@keyframes mdc-floating-label-shake-float-above-textarea-outlined {
|
|
1724
1608
|
0% {
|
|
1725
|
-
/* @noflip */
|
|
1726
|
-
/*rtl:ignore*/
|
|
1609
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1727
1610
|
transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75);
|
|
1728
1611
|
}
|
|
1729
1612
|
33% {
|
|
1730
1613
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
1731
|
-
/* @noflip */
|
|
1732
|
-
/*rtl:ignore*/
|
|
1614
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1733
1615
|
transform: translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75);
|
|
1734
1616
|
}
|
|
1735
1617
|
66% {
|
|
1736
1618
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
1737
|
-
/* @noflip */
|
|
1738
|
-
/*rtl:ignore*/
|
|
1619
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1739
1620
|
transform: translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75);
|
|
1740
1621
|
}
|
|
1741
1622
|
100% {
|
|
1742
|
-
/* @noflip */
|
|
1743
|
-
/*rtl:ignore*/
|
|
1623
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1744
1624
|
transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75);
|
|
1745
1625
|
}
|
|
1746
1626
|
}
|
|
@@ -1793,67 +1673,55 @@
|
|
|
1793
1673
|
transform: translateY(1px);
|
|
1794
1674
|
}
|
|
1795
1675
|
.mdc-text-field--outlined .mdc-text-field__resizer {
|
|
1796
|
-
/* @noflip */
|
|
1797
|
-
/*rtl:ignore*/
|
|
1676
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1798
1677
|
transform: translateX(-1px) translateY(-1px);
|
|
1799
1678
|
}
|
|
1800
1679
|
[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer, .mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl] {
|
|
1801
1680
|
/*rtl:begin:ignore*/
|
|
1802
|
-
/* @noflip */
|
|
1803
|
-
/*rtl:ignore*/
|
|
1681
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1804
1682
|
transform: translateX(1px) translateY(-1px);
|
|
1805
1683
|
/*rtl:end:ignore*/
|
|
1806
1684
|
}
|
|
1807
1685
|
|
|
1808
1686
|
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,
|
|
1809
1687
|
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter {
|
|
1810
|
-
/* @noflip */
|
|
1811
|
-
/*rtl:ignore*/
|
|
1688
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1812
1689
|
transform: translateX(1px) translateY(1px);
|
|
1813
1690
|
}
|
|
1814
1691
|
[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input, [dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter, .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl], .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl] {
|
|
1815
1692
|
/*rtl:begin:ignore*/
|
|
1816
|
-
/* @noflip */
|
|
1817
|
-
/*rtl:ignore*/
|
|
1693
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1818
1694
|
transform: translateX(-1px) translateY(1px);
|
|
1819
1695
|
/*rtl:end:ignore*/
|
|
1820
1696
|
}
|
|
1821
1697
|
|
|
1822
1698
|
.mdc-text-field--with-leading-icon {
|
|
1823
|
-
/* @noflip */
|
|
1824
|
-
/*rtl:ignore*/
|
|
1699
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1825
1700
|
padding-left: 0;
|
|
1826
|
-
/* @noflip */
|
|
1827
|
-
/*rtl:ignore*/
|
|
1701
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1828
1702
|
padding-right: 16px;
|
|
1829
1703
|
}
|
|
1830
1704
|
[dir=rtl] .mdc-text-field--with-leading-icon, .mdc-text-field--with-leading-icon[dir=rtl] {
|
|
1831
1705
|
/*rtl:begin:ignore*/
|
|
1832
|
-
/* @noflip */
|
|
1833
|
-
/*rtl:ignore*/
|
|
1706
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1834
1707
|
padding-left: 16px;
|
|
1835
|
-
/* @noflip */
|
|
1836
|
-
/*rtl:ignore*/
|
|
1708
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1837
1709
|
padding-right: 0;
|
|
1838
1710
|
/*rtl:end:ignore*/
|
|
1839
1711
|
}
|
|
1840
1712
|
|
|
1841
1713
|
.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label {
|
|
1842
1714
|
max-width: calc(100% - 48px);
|
|
1843
|
-
/* @noflip */
|
|
1844
|
-
/*rtl:ignore*/
|
|
1715
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1845
1716
|
left: 48px;
|
|
1846
|
-
/* @noflip */
|
|
1847
|
-
/*rtl:ignore*/
|
|
1717
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1848
1718
|
right: initial;
|
|
1849
1719
|
}
|
|
1850
1720
|
[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl] {
|
|
1851
1721
|
/*rtl:begin:ignore*/
|
|
1852
|
-
/* @noflip */
|
|
1853
|
-
/*rtl:ignore*/
|
|
1722
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1854
1723
|
left: initial;
|
|
1855
|
-
/* @noflip */
|
|
1856
|
-
/*rtl:ignore*/
|
|
1724
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1857
1725
|
right: 48px;
|
|
1858
1726
|
/*rtl:end:ignore*/
|
|
1859
1727
|
}
|
|
@@ -1862,20 +1730,16 @@
|
|
|
1862
1730
|
max-width: calc(100% / 0.75 - 64px / 0.75);
|
|
1863
1731
|
}
|
|
1864
1732
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label {
|
|
1865
|
-
/* @noflip */
|
|
1866
|
-
/*rtl:ignore*/
|
|
1733
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1867
1734
|
left: 36px;
|
|
1868
|
-
/* @noflip */
|
|
1869
|
-
/*rtl:ignore*/
|
|
1735
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1870
1736
|
right: initial;
|
|
1871
1737
|
}
|
|
1872
1738
|
[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl] {
|
|
1873
1739
|
/*rtl:begin:ignore*/
|
|
1874
|
-
/* @noflip */
|
|
1875
|
-
/*rtl:ignore*/
|
|
1740
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1876
1741
|
left: initial;
|
|
1877
|
-
/* @noflip */
|
|
1878
|
-
/*rtl:ignore*/
|
|
1742
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1879
1743
|
right: 36px;
|
|
1880
1744
|
/*rtl:end:ignore*/
|
|
1881
1745
|
}
|
|
@@ -1884,14 +1748,12 @@
|
|
|
1884
1748
|
max-width: calc(100% - 60px);
|
|
1885
1749
|
}
|
|
1886
1750
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
|
|
1887
|
-
/* @noflip */
|
|
1888
|
-
/*rtl:ignore*/
|
|
1751
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1889
1752
|
transform: translateY(-37.25px) translateX(-32px) scale(1);
|
|
1890
1753
|
}
|
|
1891
1754
|
[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl] {
|
|
1892
1755
|
/*rtl:begin:ignore*/
|
|
1893
|
-
/* @noflip */
|
|
1894
|
-
/*rtl:ignore*/
|
|
1756
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1895
1757
|
transform: translateY(-37.25px) translateX(32px) scale(1);
|
|
1896
1758
|
/*rtl:end:ignore*/
|
|
1897
1759
|
}
|
|
@@ -1901,14 +1763,12 @@
|
|
|
1901
1763
|
}
|
|
1902
1764
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
1903
1765
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
1904
|
-
/* @noflip */
|
|
1905
|
-
/*rtl:ignore*/
|
|
1766
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1906
1767
|
transform: translateY(-34.75px) translateX(-32px) scale(0.75);
|
|
1907
1768
|
}
|
|
1908
1769
|
[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl], .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl] {
|
|
1909
1770
|
/*rtl:begin:ignore*/
|
|
1910
|
-
/* @noflip */
|
|
1911
|
-
/*rtl:ignore*/
|
|
1771
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1912
1772
|
transform: translateY(-34.75px) translateX(32px) scale(0.75);
|
|
1913
1773
|
/*rtl:end:ignore*/
|
|
1914
1774
|
}
|
|
@@ -1922,25 +1782,21 @@
|
|
|
1922
1782
|
}
|
|
1923
1783
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
|
|
1924
1784
|
0% {
|
|
1925
|
-
/* @noflip */
|
|
1926
|
-
/*rtl:ignore*/
|
|
1785
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1927
1786
|
transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75);
|
|
1928
1787
|
}
|
|
1929
1788
|
33% {
|
|
1930
1789
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
1931
|
-
/* @noflip */
|
|
1932
|
-
/*rtl:ignore*/
|
|
1790
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1933
1791
|
transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75);
|
|
1934
1792
|
}
|
|
1935
1793
|
66% {
|
|
1936
1794
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
1937
|
-
/* @noflip */
|
|
1938
|
-
/*rtl:ignore*/
|
|
1795
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1939
1796
|
transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75);
|
|
1940
1797
|
}
|
|
1941
1798
|
100% {
|
|
1942
|
-
/* @noflip */
|
|
1943
|
-
/*rtl:ignore*/
|
|
1799
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1944
1800
|
transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75);
|
|
1945
1801
|
}
|
|
1946
1802
|
}
|
|
@@ -1954,44 +1810,36 @@
|
|
|
1954
1810
|
|
|
1955
1811
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
|
|
1956
1812
|
0% {
|
|
1957
|
-
/* @noflip */
|
|
1958
|
-
/*rtl:ignore*/
|
|
1813
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1959
1814
|
transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75);
|
|
1960
1815
|
}
|
|
1961
1816
|
33% {
|
|
1962
1817
|
animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
|
|
1963
|
-
/* @noflip */
|
|
1964
|
-
/*rtl:ignore*/
|
|
1818
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1965
1819
|
transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75);
|
|
1966
1820
|
}
|
|
1967
1821
|
66% {
|
|
1968
1822
|
animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
|
|
1969
|
-
/* @noflip */
|
|
1970
|
-
/*rtl:ignore*/
|
|
1823
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1971
1824
|
transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75);
|
|
1972
1825
|
}
|
|
1973
1826
|
100% {
|
|
1974
|
-
/* @noflip */
|
|
1975
|
-
/*rtl:ignore*/
|
|
1827
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1976
1828
|
transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75);
|
|
1977
1829
|
}
|
|
1978
1830
|
}
|
|
1979
1831
|
|
|
1980
1832
|
.mdc-text-field--with-trailing-icon {
|
|
1981
|
-
/* @noflip */
|
|
1982
|
-
/*rtl:ignore*/
|
|
1833
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1983
1834
|
padding-left: 16px;
|
|
1984
|
-
/* @noflip */
|
|
1985
|
-
/*rtl:ignore*/
|
|
1835
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1986
1836
|
padding-right: 0;
|
|
1987
1837
|
}
|
|
1988
1838
|
[dir=rtl] .mdc-text-field--with-trailing-icon, .mdc-text-field--with-trailing-icon[dir=rtl] {
|
|
1989
1839
|
/*rtl:begin:ignore*/
|
|
1990
|
-
/* @noflip */
|
|
1991
|
-
/*rtl:ignore*/
|
|
1840
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1992
1841
|
padding-left: 0;
|
|
1993
|
-
/* @noflip */
|
|
1994
|
-
/*rtl:ignore*/
|
|
1842
|
+
/* @noflip */ /*rtl:ignore*/
|
|
1995
1843
|
padding-right: 16px;
|
|
1996
1844
|
/*rtl:end:ignore*/
|
|
1997
1845
|
}
|
|
@@ -2007,11 +1855,9 @@
|
|
|
2007
1855
|
}
|
|
2008
1856
|
|
|
2009
1857
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
|
|
2010
|
-
/* @noflip */
|
|
2011
|
-
/*rtl:ignore*/
|
|
1858
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2012
1859
|
padding-left: 0;
|
|
2013
|
-
/* @noflip */
|
|
2014
|
-
/*rtl:ignore*/
|
|
1860
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2015
1861
|
padding-right: 0;
|
|
2016
1862
|
}
|
|
2017
1863
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label {
|
|
@@ -2187,7 +2033,7 @@
|
|
|
2187
2033
|
}
|
|
2188
2034
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
|
2189
2035
|
.mdc-text-field--disabled .mdc-text-field-character-counter,
|
|
2190
|
-
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
|
|
2036
|
+
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
|
|
2191
2037
|
color: GrayText;
|
|
2192
2038
|
}
|
|
2193
2039
|
}
|
|
@@ -2218,8 +2064,8 @@
|
|
|
2218
2064
|
}
|
|
2219
2065
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
|
2220
2066
|
.mdc-text-field--disabled .mdc-notched-outline__leading,
|
|
2221
|
-
.mdc-text-field--disabled .mdc-notched-outline__notch,
|
|
2222
|
-
.mdc-text-field--disabled .mdc-notched-outline__trailing {
|
|
2067
|
+
.mdc-text-field--disabled .mdc-notched-outline__notch,
|
|
2068
|
+
.mdc-text-field--disabled .mdc-notched-outline__trailing {
|
|
2223
2069
|
border-color: GrayText;
|
|
2224
2070
|
}
|
|
2225
2071
|
}
|
|
@@ -2245,14 +2091,12 @@
|
|
|
2245
2091
|
}
|
|
2246
2092
|
|
|
2247
2093
|
.mdc-text-field--end-aligned .mdc-text-field__input {
|
|
2248
|
-
/* @noflip */
|
|
2249
|
-
/*rtl:ignore*/
|
|
2094
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2250
2095
|
text-align: right;
|
|
2251
2096
|
}
|
|
2252
2097
|
[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input, .mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl] {
|
|
2253
2098
|
/*rtl:begin:ignore*/
|
|
2254
|
-
/* @noflip */
|
|
2255
|
-
/*rtl:ignore*/
|
|
2099
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2256
2100
|
text-align: left;
|
|
2257
2101
|
/*rtl:end:ignore*/
|
|
2258
2102
|
}
|
|
@@ -2264,24 +2108,19 @@
|
|
|
2264
2108
|
[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,
|
|
2265
2109
|
[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,
|
|
2266
2110
|
.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix {
|
|
2267
|
-
/* @noflip */
|
|
2268
|
-
/*rtl:ignore*/
|
|
2111
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2269
2112
|
direction: ltr;
|
|
2270
2113
|
}
|
|
2271
2114
|
[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix {
|
|
2272
|
-
/* @noflip */
|
|
2273
|
-
/*rtl:ignore*/
|
|
2115
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2274
2116
|
padding-left: 0;
|
|
2275
|
-
/* @noflip */
|
|
2276
|
-
/*rtl:ignore*/
|
|
2117
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2277
2118
|
padding-right: 2px;
|
|
2278
2119
|
}
|
|
2279
2120
|
[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix {
|
|
2280
|
-
/* @noflip */
|
|
2281
|
-
/*rtl:ignore*/
|
|
2121
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2282
2122
|
padding-left: 12px;
|
|
2283
|
-
/* @noflip */
|
|
2284
|
-
/*rtl:ignore*/
|
|
2123
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2285
2124
|
padding-right: 0;
|
|
2286
2125
|
}
|
|
2287
2126
|
[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading {
|
|
@@ -2305,18 +2144,15 @@
|
|
|
2305
2144
|
/*rtl:end:ignore*/
|
|
2306
2145
|
}
|
|
2307
2146
|
[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input {
|
|
2308
|
-
/* @noflip */
|
|
2309
|
-
/*rtl:ignore*/
|
|
2147
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2310
2148
|
text-align: right;
|
|
2311
2149
|
}
|
|
2312
2150
|
[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix {
|
|
2313
|
-
/* @noflip */
|
|
2314
|
-
/*rtl:ignore*/
|
|
2151
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2315
2152
|
padding-right: 12px;
|
|
2316
2153
|
}
|
|
2317
2154
|
[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix {
|
|
2318
|
-
/* @noflip */
|
|
2319
|
-
/*rtl:ignore*/
|
|
2155
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2320
2156
|
padding-left: 2px;
|
|
2321
2157
|
}
|
|
2322
2158
|
|
|
@@ -2395,17 +2231,13 @@
|
|
|
2395
2231
|
margin-top: 0;
|
|
2396
2232
|
/* @alternate */
|
|
2397
2233
|
line-height: normal;
|
|
2398
|
-
/* @noflip */
|
|
2399
|
-
/*rtl:ignore*/
|
|
2234
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2400
2235
|
margin-left: auto;
|
|
2401
|
-
/* @noflip */
|
|
2402
|
-
/*rtl:ignore*/
|
|
2236
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2403
2237
|
margin-right: 0;
|
|
2404
|
-
/* @noflip */
|
|
2405
|
-
/*rtl:ignore*/
|
|
2238
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2406
2239
|
padding-left: 16px;
|
|
2407
|
-
/* @noflip */
|
|
2408
|
-
/*rtl:ignore*/
|
|
2240
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2409
2241
|
padding-right: 0;
|
|
2410
2242
|
white-space: nowrap;
|
|
2411
2243
|
}
|
|
@@ -2418,22 +2250,18 @@
|
|
|
2418
2250
|
}
|
|
2419
2251
|
[dir=rtl] .mdc-text-field-character-counter, .mdc-text-field-character-counter[dir=rtl] {
|
|
2420
2252
|
/*rtl:begin:ignore*/
|
|
2421
|
-
/* @noflip */
|
|
2422
|
-
/*rtl:ignore*/
|
|
2253
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2423
2254
|
margin-left: 0;
|
|
2424
|
-
/* @noflip */
|
|
2425
|
-
/*rtl:ignore*/
|
|
2255
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2426
2256
|
margin-right: auto;
|
|
2427
2257
|
/*rtl:end:ignore*/
|
|
2428
2258
|
}
|
|
2429
2259
|
|
|
2430
2260
|
[dir=rtl] .mdc-text-field-character-counter, .mdc-text-field-character-counter[dir=rtl] {
|
|
2431
2261
|
/*rtl:begin:ignore*/
|
|
2432
|
-
/* @noflip */
|
|
2433
|
-
/*rtl:ignore*/
|
|
2262
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2434
2263
|
padding-left: 0;
|
|
2435
|
-
/* @noflip */
|
|
2436
|
-
/*rtl:ignore*/
|
|
2264
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2437
2265
|
padding-right: 16px;
|
|
2438
2266
|
/*rtl:end:ignore*/
|
|
2439
2267
|
}
|
|
@@ -2451,40 +2279,32 @@
|
|
|
2451
2279
|
}
|
|
2452
2280
|
|
|
2453
2281
|
.mdc-text-field__icon--leading {
|
|
2454
|
-
/* @noflip */
|
|
2455
|
-
/*rtl:ignore*/
|
|
2282
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2456
2283
|
margin-left: 16px;
|
|
2457
|
-
/* @noflip */
|
|
2458
|
-
/*rtl:ignore*/
|
|
2284
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2459
2285
|
margin-right: 8px;
|
|
2460
2286
|
}
|
|
2461
2287
|
[dir=rtl] .mdc-text-field__icon--leading, .mdc-text-field__icon--leading[dir=rtl] {
|
|
2462
2288
|
/*rtl:begin:ignore*/
|
|
2463
|
-
/* @noflip */
|
|
2464
|
-
/*rtl:ignore*/
|
|
2289
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2465
2290
|
margin-left: 8px;
|
|
2466
|
-
/* @noflip */
|
|
2467
|
-
/*rtl:ignore*/
|
|
2291
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2468
2292
|
margin-right: 16px;
|
|
2469
2293
|
/*rtl:end:ignore*/
|
|
2470
2294
|
}
|
|
2471
2295
|
|
|
2472
2296
|
.mdc-text-field__icon--trailing {
|
|
2473
2297
|
padding: 12px;
|
|
2474
|
-
/* @noflip */
|
|
2475
|
-
/*rtl:ignore*/
|
|
2298
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2476
2299
|
margin-left: 0px;
|
|
2477
|
-
/* @noflip */
|
|
2478
|
-
/*rtl:ignore*/
|
|
2300
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2479
2301
|
margin-right: 0px;
|
|
2480
2302
|
}
|
|
2481
2303
|
[dir=rtl] .mdc-text-field__icon--trailing, .mdc-text-field__icon--trailing[dir=rtl] {
|
|
2482
2304
|
/*rtl:begin:ignore*/
|
|
2483
|
-
/* @noflip */
|
|
2484
|
-
/*rtl:ignore*/
|
|
2305
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2485
2306
|
margin-left: 0px;
|
|
2486
|
-
/* @noflip */
|
|
2487
|
-
/*rtl:ignore*/
|
|
2307
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2488
2308
|
margin-right: 0px;
|
|
2489
2309
|
/*rtl:end:ignore*/
|
|
2490
2310
|
}
|
|
@@ -2502,40 +2322,32 @@
|
|
|
2502
2322
|
}
|
|
2503
2323
|
|
|
2504
2324
|
.mdc-text-field__icon--leading {
|
|
2505
|
-
/* @noflip */
|
|
2506
|
-
/*rtl:ignore*/
|
|
2325
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2507
2326
|
margin-left: 16px;
|
|
2508
|
-
/* @noflip */
|
|
2509
|
-
/*rtl:ignore*/
|
|
2327
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2510
2328
|
margin-right: 8px;
|
|
2511
2329
|
}
|
|
2512
2330
|
[dir=rtl] .mdc-text-field__icon--leading, .mdc-text-field__icon--leading[dir=rtl] {
|
|
2513
2331
|
/*rtl:begin:ignore*/
|
|
2514
|
-
/* @noflip */
|
|
2515
|
-
/*rtl:ignore*/
|
|
2332
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2516
2333
|
margin-left: 8px;
|
|
2517
|
-
/* @noflip */
|
|
2518
|
-
/*rtl:ignore*/
|
|
2334
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2519
2335
|
margin-right: 16px;
|
|
2520
2336
|
/*rtl:end:ignore*/
|
|
2521
2337
|
}
|
|
2522
2338
|
|
|
2523
2339
|
.mdc-text-field__icon--trailing {
|
|
2524
2340
|
padding: 12px;
|
|
2525
|
-
/* @noflip */
|
|
2526
|
-
/*rtl:ignore*/
|
|
2341
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2527
2342
|
margin-left: 0px;
|
|
2528
|
-
/* @noflip */
|
|
2529
|
-
/*rtl:ignore*/
|
|
2343
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2530
2344
|
margin-right: 0px;
|
|
2531
2345
|
}
|
|
2532
2346
|
[dir=rtl] .mdc-text-field__icon--trailing, .mdc-text-field__icon--trailing[dir=rtl] {
|
|
2533
2347
|
/*rtl:begin:ignore*/
|
|
2534
|
-
/* @noflip */
|
|
2535
|
-
/*rtl:ignore*/
|
|
2348
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2536
2349
|
margin-left: 0px;
|
|
2537
|
-
/* @noflip */
|
|
2538
|
-
/*rtl:ignore*/
|
|
2350
|
+
/* @noflip */ /*rtl:ignore*/
|
|
2539
2351
|
margin-right: 0px;
|
|
2540
2352
|
/*rtl:end:ignore*/
|
|
2541
2353
|
}
|
|
@@ -2680,6 +2492,7 @@
|
|
|
2680
2492
|
|
|
2681
2493
|
.mdc-chip {
|
|
2682
2494
|
transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
|
|
2495
|
+
cursor: pointer;
|
|
2683
2496
|
color: var(--mdc-theme-on-surface);
|
|
2684
2497
|
background-color: var(--lime-elevated-surface-background-color);
|
|
2685
2498
|
box-shadow: var(--button-shadow-normal);
|
|
@@ -2870,6 +2683,7 @@ limel-icon.mdc-chip__icon.mdc-chip__icon--leading {
|
|
|
2870
2683
|
|
|
2871
2684
|
.clear-all-button {
|
|
2872
2685
|
transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
|
|
2686
|
+
cursor: pointer;
|
|
2873
2687
|
color: var(--mdc-theme-on-surface);
|
|
2874
2688
|
background-color: rgb(var(--contrast-900));
|
|
2875
2689
|
cursor: pointer;
|