File tree Expand file tree Collapse file tree
docs/src/pages/en/getting-started
vuetify/src/components/VCounter Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,6 +156,17 @@ The **$field-clearable-margin** SASS variable has been removed and replaced with
156156+ $field-gap : 8px ,
157157```
158158
159+ ### VCounter (hint under VTextField, VTextarea and VFieldInput)
160+
161+ The ** $counter-color ** and `color ` was replaced in favor of opacity . If you modified this value, move it to target CSS class directly:
162+
163+ ```diff { resource = " styles/styles.scss" }
164+ .v- counter {
165+ opacity : 1 ;
166+ color : /* your $counter-color */ ;
167+ }
168+ ```
169+
159170### VSelect/ VCombobox/ VAutocomplete
160171
161172#### `item` in slots has been renamed to `internalItem`
Original file line number Diff line number Diff line change 44
55@include tools .layer (' components' )
66 .v-counter
7- color : $ counter-color
7+ opacity : var(- - v - medium - emphasis - opacity)
88 flex : $counter-flex
99 font-size : $counter-font-size
1010 transition-duration : $counter-transition-duration
Original file line number Diff line number Diff line change 11// VCounter
2- $counter-color : rgba (var (--v-theme-on-surface ), var (--v-medium-emphasis-opacity )) !default ;
32$counter-flex : 0 1 auto !default ;
43$counter-font-size : 12px !default ;
54$counter-line-height : $counter-font-size !default ;
You can’t perform that action at this time.
0 commit comments