Initated forms migration
parent
c828680c69
commit
fdb6387c45
|
@ -40,9 +40,9 @@ export default {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background: var(--p-autocomplete-overlay-background);
|
background: ${dt('autocomplete.overlay.background')};
|
||||||
color: var(--p-autocomplete-overlay-text-color);
|
color: ${dt('autocomplete.overlay.color')};
|
||||||
border: 1px solid var(--p-autocomplete-overlay-border-color);
|
border: 1px solid ${dt('autocomplete.overlay.border.color')};
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
@ -62,10 +62,10 @@ export default {
|
||||||
margin: 2px 0;
|
margin: 2px 0;
|
||||||
padding: 0.5rem 0.75rem;
|
padding: 0.5rem 0.75rem;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
color: var(--p-autocomplete-item-text-color);
|
color: ${dt('autocomplete.item.color')};
|
||||||
background: transparent;
|
background: transparent;
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')};
|
||||||
border-radius: var(--p-rounded-sm);
|
border-radius: ${dt('rounded.sm')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-item:first-child {
|
.p-autocomplete-item:first-child {
|
||||||
|
@ -77,25 +77,25 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus {
|
.p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus {
|
||||||
background: var(--p-autocomplete-item-background-focus);
|
background: ${dt('autocomplete.item.focus.background')};
|
||||||
color: var(--p-autocomplete-item-text-color-focus);
|
color: ${dt('autocomplete.item.focus.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-item.p-highlight {
|
.p-autocomplete-item.p-highlight {
|
||||||
color: var(--p-autocomplete-item-background-selected);
|
color: ${dt('autocomplete.item.selected.background')};
|
||||||
background: var(--p-autocomplete-item-text-color-selected);
|
background: ${dt('autocomplete.item.selected.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-item.p-highlight.p-focus {
|
.p-autocomplete-item.p-highlight.p-focus {
|
||||||
color: var(--p-autocomplete-item-background-selected-focus);
|
color: ${dt('autocomplete.item.selected.focus.background')};
|
||||||
background: var(--p-autocomplete-item-text-color-selected-focus);
|
background: ${dt('autocomplete.item.selected.focus.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-item-group {
|
.p-autocomplete-item-group {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.5rem 0.75rem;
|
padding: 0.5rem 0.75rem;
|
||||||
color: var(--p-autocomplete-item-group-text-color);
|
color: ${dt('autocomplete.item.group.color')};
|
||||||
background: var(--p-autocomplete-item-group-background);
|
background: ${dt('autocomplete.item.group.background')};
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,41 +110,41 @@ export default {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
padding: 0.25rem 0.25rem;
|
padding: 0.25rem 0.25rem;
|
||||||
gap: 0.25rem;
|
gap: 0.25rem;
|
||||||
color: var(--p-autocomplete-input-multiple-text-color);
|
color: ${dt('autocomplete.input.multiple.color')};
|
||||||
background: var(--p-autocomplete-input-multiple-background);
|
background: ${dt('autocomplete.input.multiple.background')};
|
||||||
border: 1px solid var(--p-autocomplete-input-multiple-border-color);
|
border: 1px solid ${dt('autocomplete.input.multiple.border.color')});
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
width: 100%;
|
width: 100%;
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: var(--p-autocomplete-input-multiple-box-shadow);
|
box-shadow: ${dt('autocomplete.input.multiple.box.shadow')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete:not(.p-disabled):hover .p-autocomplete-multiple-container {
|
.p-autocomplete:not(.p-disabled):hover .p-autocomplete-multiple-container {
|
||||||
border-color: var(--p-autocomplete-input-multiple-border-color-hover);
|
border-color: ${dt('autocomplete.input.multiple.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container {
|
.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container {
|
||||||
border-color: var(--p-autocomplete-input-multiple-border-color-focus);
|
border-color: ${dt('autocomplete.input.multiple.focus.border.color')};
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete.p-invalid .p-autocomplete-multiple-container {
|
.p-autocomplete.p-invalid .p-autocomplete-multiple-container {
|
||||||
border-color: var(--p-autocomplete-input-multiple-border-color-invalid);
|
border-color: ${dt('autocomplete.input.multiple.invalid.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-variant-filled.p-autocomplete-multiple-container {
|
.p-variant-filled.p-autocomplete-multiple-container {
|
||||||
background: var(--p-autocomplete-input-multiple-background-filled);
|
background: ${dt('autocomplete.input.multiple.filled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete:not(.p-disabled).p-focus .p-variant-filled.p-autocomplete-multiple-container {
|
.p-autocomplete:not(.p-disabled).p-focus .p-variant-filled.p-autocomplete-multiple-container {
|
||||||
background: var(--p-autocomplete-input-multiple-background-filled-focus);
|
background: ${dt('autocomplete.input.multiple.filled.focus.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete.p-disabled .p-autocomplete-multiple-container {
|
.p-autocomplete.p-disabled .p-autocomplete-multiple-container {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: var(--p-autocomplete-input-multiple-background-disabled);
|
background: ${dt('autocomplete.input.multiple.disabled.background')};
|
||||||
color: var(--p-autocomplete-input-multiple-text-color-disabled);
|
color: ${dt('autocomplete.input.multiple.disabled.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-token {
|
.p-autocomplete-token {
|
||||||
|
@ -153,14 +153,14 @@ export default {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
padding: 0.25rem 0.75rem;
|
padding: 0.25rem 0.75rem;
|
||||||
background: var(--p-autocomplete-chip-background);
|
background: ${dt('autocomplete.chip.background')};
|
||||||
color: var(--p-autocomplete-chip-text-color);
|
color: ${dt('autocomplete.chip.color')};
|
||||||
border-radius: var(--p-rounded-sm);
|
border-radius: ${dt('rounded.sm')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-token.p-focus {
|
.p-autocomplete-token.p-focus {
|
||||||
background: var(--p-autocomplete-chip-background-focus);
|
background: ${dt('autocomplete.chip.focus.background')};
|
||||||
color: var(--p-autocomplete-chip-text-color-focus);
|
color: ${dt('autocomplete.chip.focus.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-input-token {
|
.p-autocomplete-input-token {
|
||||||
|
@ -196,7 +196,7 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-autocomplete-input-token input::placeholder {
|
.p-autocomplete-input-token input::placeholder {
|
||||||
color: var(--p-chips-placeholder-text-color);
|
color: ${dt('autocomplete.input.multiple.placeholder.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fluid .p-autocomplete {
|
.p-fluid .p-autocomplete {
|
||||||
|
|
|
@ -39,9 +39,9 @@ export default {
|
||||||
.p-datepicker {
|
.p-datepicker {
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
background: var(--p-calendar-background);
|
background: ${dt('calendar.background')};
|
||||||
color: var(--p-calendar-text-color);
|
color: ${dt('calendar.color')};
|
||||||
border: 1px solid var(--p-calendar-border-color);
|
border: 1px solid ${dt('calendar.border.color')};
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
@ -58,9 +58,9 @@ export default {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 0 0 0.5rem 0;
|
padding: 0 0 0.5rem 0;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
background: var(--p-calendar-header-background);
|
background: ${dt('calendar.header.background')};
|
||||||
color: var(--p-calendar-header-text-color);
|
color: ${dt('calendar.header.color')};
|
||||||
border-bottom: 1px solid var(--p-calendar-header-border-color);
|
border-bottom: 1px solid ${dt('calendar.header.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-title {
|
.p-datepicker-title {
|
||||||
|
@ -78,7 +78,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 1.75rem;
|
width: 1.75rem;
|
||||||
height: 1.75rem;
|
height: 1.75rem;
|
||||||
color: var(--p-calendar-navigator-color);
|
color: ${dt('calendar.navigator.color')};
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
@ -88,8 +88,8 @@ export default {
|
||||||
|
|
||||||
.p-datepicker-prev:enabled:hover,
|
.p-datepicker-prev:enabled:hover,
|
||||||
.p-datepicker-next:enabled:hover {
|
.p-datepicker-next:enabled:hover {
|
||||||
color: var(--p-calendar-navigator-color-hover);
|
background: ${dt('calendar.navigator.hover.background')};
|
||||||
background: var(--p-calendar-navigator-background-hover);
|
color: ${dt('calendar.navigator.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-prev:focus-visible,
|
.p-datepicker-prev:focus-visible,
|
||||||
|
@ -107,22 +107,22 @@ export default {
|
||||||
|
|
||||||
.p-datepicker-month {
|
.p-datepicker-month {
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
color: var(--p-calendar-month-picker-text-color);
|
color: ${dt('calendar.month.picker.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-year {
|
.p-datepicker-year {
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
color: var(--p-calendar-year-picker-text-color);
|
color: ${dt('calendar.year.picker.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-month:enabled:hover {
|
.p-datepicker-month:enabled:hover {
|
||||||
color: var(--p-calendar-month-picker-text-color-hover);
|
background: ${dt('calendar.month.picker.hover.background')};
|
||||||
background: var(--p-calendar-month-picker-background-hover);
|
color: ${dt('calendar.month.picker.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-year:enabled:hover {
|
.p-datepicker-year:enabled:hover {
|
||||||
color: var(--p-calendar-year-picker-text-color-hover);
|
background: ${dt('calendar.year.picker.hover.background')};
|
||||||
background: var(--p-calendar-year-picker-background-hover);
|
color: ${dt('calendar.year.picker.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-multiple-month .p-datepicker-group-container {
|
.p-datepicker-multiple-month .p-datepicker-group-container {
|
||||||
|
@ -131,7 +131,7 @@ export default {
|
||||||
|
|
||||||
.p-datepicker-multiple-month .p-datepicker-group {
|
.p-datepicker-multiple-month .p-datepicker-group {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
border-left: 1px solid var(--p-calendar-group-border-color);
|
border-left: 1px solid ${dt('calendar.group.border.color')};
|
||||||
padding-right: 0.75rem;
|
padding-right: 0.75rem;
|
||||||
padding-left: 0.75rem;
|
padding-left: 0.75rem;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
@ -182,12 +182,12 @@ export default {
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
color: var(--p-calendar-date-text-color);
|
color: ${dt('calendar.date.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
|
||||||
background: var(--p-calendar-date-background-hover);
|
background: ${dt('calendar.date.hover.background')};
|
||||||
color: var(--p-calendar-date-text-color-hover);
|
color: ${dt('calendar.date.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus-visible {
|
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus-visible {
|
||||||
|
@ -196,18 +196,18 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker table td > span.p-highlight {
|
.p-datepicker table td > span.p-highlight {
|
||||||
background: var(--p-calendar-date-background-highlight);
|
background: ${dt('calendar.date.selected.background')};
|
||||||
color: var(--p-calendar-date-text-color-highlight);
|
color: ${dt('calendar.date.selected.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker table td.p-datepicker-today > span {
|
.p-datepicker table td.p-datepicker-today > span {
|
||||||
background: var(--p-calendar-today-background);
|
background: ${dt('calendar.today.background')};
|
||||||
color: var(--p-calendar-today-text-color);
|
color: ${dt('calendar.today.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker table td.p-datepicker-today > span.p-highlight {
|
.p-datepicker table td.p-datepicker-today > span.p-highlight {
|
||||||
background: var(--p-calendar-date-background-highlight);
|
background: ${dt('calendar.date.selected.background')};
|
||||||
color: var(--p-calendar-date-text-color-highlight);
|
color: ${dt('calendar.date.selected.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-monthpicker {
|
.p-monthpicker {
|
||||||
|
@ -226,17 +226,17 @@ export default {
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
color: var(--p-calendar-month-text-color);
|
color: ${dt('calendar.month.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
|
||||||
background: var(--p-calendar-month-background-hover);
|
color: ${dt('calendar.month.hover.color')};
|
||||||
color: var(--p-calendar-month-text-color-hover);
|
background: ${dt('calendar.month.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-monthpicker-month.p-highlight {
|
.p-monthpicker-month.p-highlight {
|
||||||
background: var(--p-calendar-month-background-selected);
|
color: ${dt('calendar.month.selected.color')};
|
||||||
color: var(--p-calendar-month-text-color-selected);
|
background: ${dt('calendar.month.selected.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus-visible {
|
.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus-visible {
|
||||||
|
@ -261,17 +261,17 @@ export default {
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
color: var(--p-calendar-year-text-color);
|
color: ${dt('calendar.year.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
|
||||||
background: var(--p-calendar-year-background-hover);
|
color: ${dt('calendar.year.hover.color')};
|
||||||
color: var(--p-calendar-year-text-color-hover);
|
background: ${dt('calendar.year.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-yearpicker-year.p-highlight {
|
.p-yearpicker-year.p-highlight {
|
||||||
background: var(--p-calendar-year-background-selected);
|
color: ${dt('calendar.year.selected.color')};
|
||||||
color: var(--p-calendar-year-text-color-selected);
|
background: ${dt('calendar.year.selected.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus-visible {
|
.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus-visible {
|
||||||
|
@ -284,7 +284,7 @@ export default {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0.5rem 0 0 0;
|
padding: 0.5rem 0 0 0;
|
||||||
border-top: 1px solid var(--p-calendar-buttonbar-border-color);
|
border-top: 1px solid ${dt('calendar.buttonbar.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-datepicker-buttonbar .p-button {
|
.p-datepicker-buttonbar .p-button {
|
||||||
|
@ -297,7 +297,7 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-top: 1px solid var(--p-calendar-timepicker-border-color);
|
border-top: 1px solid ${dt('calendar.timepicker.border.color')};
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 1.75rem;
|
width: 1.75rem;
|
||||||
height: 1.75rem;
|
height: 1.75rem;
|
||||||
color: var(--p-calendar-timepicker-spin-color);
|
color: ${dt('calendar.timepicker.spin.color')};
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
@ -331,8 +331,8 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-timepicker button:enabled:hover {
|
.p-timepicker button:enabled:hover {
|
||||||
background: var(--p-calendar-timepicker-spin-background-hover);
|
background: ${dt('calendar.timepicker.spin.hover.background')};
|
||||||
color: var(--p-calendar-timepicker-spin-color-hover);
|
color: ${dt('calendar.timepicker.spin.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-timepicker button:focus-visible {
|
.p-timepicker button:focus-visible {
|
||||||
|
|
|
@ -5,8 +5,8 @@ export default {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
width: var(--p-checkbox-width);
|
width: ${dt('checkbox.width')};
|
||||||
height: var(--p-checkbox-height);
|
height: ${dt('checkbox.height')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox-input {
|
.p-checkbox-input {
|
||||||
|
@ -23,51 +23,51 @@ export default {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: var(--p-checkbox-border-radius);
|
border-radius: ${dt('checkbox.border.radius')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox-box {
|
.p-checkbox-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: var(--p-rounded-sm);
|
border-radius: ${dt('checkbox.border.radius')};
|
||||||
border: 1px solid var(--p-checkbox-border-color);
|
border: 1px solid ${dt('checkbox.border.color')};
|
||||||
background: var(--p-checkbox-background);
|
background: ${dt('checkbox.background')};
|
||||||
width: var(--p-checkbox-width);
|
width: ${dt('checkbox.width')};
|
||||||
height: var(--p-checkbox-height);
|
height: ${dt('checkbox.width')};
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: var(--p-checkbox-box-shadow);
|
box-shadow: ${dt('checkbox.box.shadow')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox-icon {
|
.p-checkbox-icon {
|
||||||
transition-duration: ${dt('transition.duration')};
|
transition-duration: ${dt('transition.duration')};
|
||||||
color: var(--p-checkbox-icon-color);
|
color: ${dt('checkbox.icon.color')};
|
||||||
font-size: var(--p-checkbox-icon-size);
|
font-size: ${dt('checkbox.icon.size')};
|
||||||
width: var(--p-checkbox-icon-size);
|
width: ${dt('checkbox.icon.size')};
|
||||||
height: var(--p-checkbox-icon-size);
|
height: ${dt('checkbox.icon.size')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
|
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
|
||||||
border-color: var(--p-checkbox-border-color-hover);
|
border-color: ${dt('checkbox.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-highlight .p-checkbox-box {
|
.p-checkbox.p-highlight .p-checkbox-box {
|
||||||
border-color: var(--p-checkbox-border-color-checked);
|
border-color: ${dt('checkbox.checked.border.color')};
|
||||||
background: var(--p-checkbox-background-checked);
|
background: ${dt('checkbox.checked.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-highlight .p-checkbox-box .p-checkbox-icon {
|
.p-checkbox.p-highlight .p-checkbox-box .p-checkbox-icon {
|
||||||
color: var(--p-checkbox-icon-color-checked);
|
color: ${dt('checkbox.icon.checked.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
|
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
|
||||||
border-color: var(--p-checkbox-border-color-checked-hover);
|
background: ${dt('checkbox.checked.hover.background')};
|
||||||
background: var(--p-checkbox-background-checked-hover)
|
border-color: ${dt('checkbox.checked.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box .p-checkbox-icon {
|
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box .p-checkbox-icon {
|
||||||
color: var(--p-checkbox-icon-color-checked-hover);
|
color: ${dt('checkbox.icon.checked.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
|
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
|
||||||
|
@ -76,19 +76,19 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-invalid > .p-checkbox-box {
|
.p-checkbox.p-invalid > .p-checkbox-box {
|
||||||
border-color: var(--p-checkbox-border-color-invalid);
|
border-color: ${dt('checkbox.invalid.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-variant-filled .p-checkbox-box {
|
.p-checkbox.p-variant-filled .p-checkbox-box {
|
||||||
background: var(--p-checkbox-background-filled);
|
background: ${dt('checkbox.checked.filled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-variant-filled.p-highlight .p-checkbox-box {
|
.p-checkbox.p-variant-filled.p-highlight .p-checkbox-box {
|
||||||
background: var(--p-checkbox-background-checked);
|
background: ${dt('checkbox.checked.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
|
.p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
|
||||||
background: var(--p-checkbox-background-checked-hover);
|
background: ${dt('checkbox.checked.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-disabled {
|
.p-checkbox.p-disabled {
|
||||||
|
@ -96,11 +96,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-disabled .p-checkbox-box {
|
.p-checkbox.p-disabled .p-checkbox-box {
|
||||||
background: var(--p-checkbox-background-disabled);
|
background: ${dt('checkbox.disabled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-checkbox.p-disabled .p-checkbox-box .p-checkbox-icon {
|
.p-checkbox.p-disabled .p-checkbox-box .p-checkbox-icon {
|
||||||
color: var(--p-checkbox-icon-color-disabled);
|
color: ${dt('checkbox.icon.disabled.color')};
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,42 +4,42 @@ export default {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-feature-settings: inherit;
|
font-feature-settings: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: var(--p-inputtext-text-color);
|
color: ${dt('inputtext.color')};
|
||||||
background: var(--p-inputtext-background);
|
background: ${dt('inputtext.background')};
|
||||||
padding: 0.5rem 0.75rem;
|
padding: 0.5rem 0.75rem;
|
||||||
border: 1px solid var(--p-inputtext-border-color);
|
border: 1px solid ${dt('inputtext.border.color')};
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
appearance: none;
|
appearance: none;
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: var(--p-inputtext-box-shadow);
|
box-shadow: ${dt('inputtext.box.shadow')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext:enabled:hover {
|
.p-inputtext:enabled:hover {
|
||||||
border-color: var(--p-inputtext-border-color-hover);
|
border-color: ${dt('inputtext.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext:enabled:focus {
|
.p-inputtext:enabled:focus {
|
||||||
border-color: var(--p-inputtext-border-color-focus);
|
border-color: ${dt('inputtext.focus.border.color')};
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext.p-invalid {
|
.p-inputtext.p-invalid {
|
||||||
border-color: var(--p-inputtext-border-color-invalid);
|
border-color: ${dt('inputtext.invalid.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext.p-variant-filled {
|
.p-inputtext.p-variant-filled {
|
||||||
background-color: var(--p-inputtext-background-filled);
|
background: ${dt('inputtext.filled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext.p-variant-filled:enabled:focus {
|
.p-inputtext.p-variant-filled:enabled:focus {
|
||||||
background-color: var(--p-inputtext-background-filled-focus);
|
background-color: ${dt('inputtext.filled.focus.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext:disabled {
|
.p-inputtext:disabled {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: var(--p-inputtext-background-disabled);
|
background: ${dt('inputtext.disabled.background')};
|
||||||
color: var(--p-inputtext-text-color-disabled);
|
color: ${dt('inputtext.disabled.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-input-icon-right > svg:last-of-type,
|
.p-input-icon-right > svg:last-of-type,
|
||||||
|
@ -53,7 +53,7 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtext::placeholder {
|
.p-inputtext::placeholder {
|
||||||
color: var(--p-inputtext-placeholder-text-color);
|
color: ${dt('inputtext.placeholder.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fluid .p-inputtext {
|
.p-fluid .p-inputtext {
|
||||||
|
|
|
@ -5,8 +5,8 @@ export default {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
width: var(--p-radiobutton-width);
|
width: ${dt('radiobutton.width')};
|
||||||
height: var(--p-radiobutton-height);
|
height: ${dt('radiobutton.height')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton-input {
|
.p-radiobutton-input {
|
||||||
|
@ -31,48 +31,48 @@ export default {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border: 1px solid var(--p-radiobutton-border-color);
|
border: 1px solid ${dt('radiobutton.border.color')};
|
||||||
background: var(--p-radiobutton-background);
|
background: ${dt('radiobutton.background')};
|
||||||
width: var(--p-radiobutton-width);
|
width: ${dt('radiobutton.width')};
|
||||||
height: var(--p-radiobutton-height);
|
height: ${dt('radiobutton.height')};
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: var(--p-radiobutton-box-shadow);
|
box-shadow: ${dt('radiobutton.box.shadow')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton-icon {
|
.p-radiobutton-icon {
|
||||||
transition-duration: ${dt('transition.duration')};
|
transition-duration: ${dt('transition.duration')};
|
||||||
background: transparent;
|
background: transparent;
|
||||||
font-size: var(--p-radiobutton-icon-size);
|
font-size: ${dt('radiobutton.icon.size')};
|
||||||
width: var(--p-radiobutton-icon-size);
|
width: ${dt('radiobutton.icon.size')};
|
||||||
height: var(--p-radiobutton-icon-size);
|
height: ${dt('radiobutton.icon.size')};
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
backface-visibility: hidden;
|
backface-visibility: hidden;
|
||||||
transform: translateZ(0) scale(0.1);
|
transform: translateZ(0) scale(0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
|
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
|
||||||
border-color: var(--p-radiobutton-border-color-hover);
|
border-color: ${dt('radiobutton.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-highlight .p-radiobutton-box {
|
.p-radiobutton.p-highlight .p-radiobutton-box {
|
||||||
border-color: var(--p-radiobutton-border-color-checked);
|
border-color: ${dt('radiobutton.checked.border.color')};
|
||||||
background: var(--p-radiobutton-background-checked);
|
background: ${dt('radiobutton.checked.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-highlight .p-radiobutton-box .p-radiobutton-icon {
|
.p-radiobutton.p-highlight .p-radiobutton-box .p-radiobutton-icon {
|
||||||
background: var(--p-radiobutton-icon-color-checked);
|
background: ${dt('radiobutton.icon.checked.color')};
|
||||||
transform: translateZ(0) scale(1, 1);
|
transform: translateZ(0) scale(1, 1);
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
|
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
|
||||||
border-color: var(--p-radiobutton-border-color-checked-hover);
|
border-color: ${dt('radiobutton.checked.hover.border.color')};
|
||||||
background: var(--p-radiobutton-background-checked-hover)
|
background: ${dt('radiobutton.checked.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box .p-radiobutton-icon {
|
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box .p-radiobutton-icon {
|
||||||
background: var(--p-radiobutton-icon-color-checked-hover);
|
background: ${dt('radiobutton.icon.checked.hover.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box {
|
.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box {
|
||||||
|
@ -81,19 +81,19 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
.p-radiobutton.p-invalid > .p-radiobutton-box {
|
||||||
border-color: var(--p-radiobutton-border-color-invalid);
|
border-color: ${dt('radiobutton.invalid.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
.p-radiobutton.p-variant-filled .p-radiobutton-box {
|
||||||
background: var(--p-radiobutton-background-filled);
|
background: ${dt('radiobutton.filled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-variant-filled.p-highlight .p-radiobutton-box {
|
.p-radiobutton.p-variant-filled.p-highlight .p-radiobutton-box {
|
||||||
background: var(--p-radiobutton-background-checked);
|
background: ${dt('radiobutton.checked.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
|
.p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
|
||||||
background: var(--p-radiobutton-background-checked-hover);
|
background: ${dt('radiobutton.checked.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-disabled {
|
.p-radiobutton.p-disabled {
|
||||||
|
@ -101,11 +101,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-disabled .p-radiobutton-box {
|
.p-radiobutton.p-disabled .p-radiobutton-box {
|
||||||
background: var(--p-radiobutton-background-disabled);
|
background: ${dt('radiobutton.disabled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-radiobutton.p-disabled .p-radiobutton-box .p-radiobutton-icon {
|
.p-radiobutton.p-disabled .p-radiobutton-box .p-radiobutton-icon {
|
||||||
color: var(--p-radiobutton-icon-color-disabled);
|
color: ${dt('radiobutton.icon.disabled.color')};
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,46 +4,46 @@ export default {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-feature-settings: inherit;
|
font-feature-settings: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: var(--p-textarea-text-color);
|
color: ${dt('textara.color')};
|
||||||
background: var(--p-textarea-background);
|
background: ${dt('textara.background')};
|
||||||
padding: 0.5rem 0.75rem;
|
padding: 0.5rem 0.75rem;
|
||||||
border: 1px solid var(--p-textarea-border-color);
|
border: 1px solid ${dt('textara.border.color')};
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
appearance: none;
|
appearance: none;
|
||||||
border-radius: ${dt('rounded.base')};
|
border-radius: ${dt('rounded.base')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: var(--p-textarea-box-shadow);
|
box-shadow: ${dt('textara.box.shadow')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea:enabled:hover {
|
.p-inputtextarea:enabled:hover {
|
||||||
border-color: var(--p-textarea-border-color-hover);
|
border-color: ${dt('textara.hover.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea:enabled:focus {
|
.p-inputtextarea:enabled:focus {
|
||||||
border-color: var(--p-textarea-border-color-focus);
|
border-color: ${dt('textara.focus.border.color')};
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea.p-invalid {
|
.p-inputtextarea.p-invalid {
|
||||||
border-color: var(--p-textarea-border-color-invalid);
|
border-color: ${dt('textara.invalid.border.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea.p-variant-filled {
|
.p-inputtextarea.p-variant-filled {
|
||||||
background-color: var(--p-textarea-background-filled);
|
background-color: ${dt('textara.filled.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea.p-variant-filled:enabled:focus {
|
.p-inputtextarea.p-variant-filled:enabled:focus {
|
||||||
background-color: var(--p-textarea-background-filled-focus);
|
background-color: ${dt('textara.filled.focus.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea:disabled {
|
.p-inputtextarea:disabled {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: var(--p-textarea-background-disabled);
|
background: ${dt('textara.disabled.background')};
|
||||||
color: var(--p-textarea-text-color-disabled);
|
color: ${dt('textara.disabled.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputtextarea::placeholder {
|
.p-inputtextarea::placeholder {
|
||||||
color: var(--p-textarea-placeholder-text-color);
|
color: ${dt('textara.placeholder.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-fluid .p-inputtextarea {
|
.p-fluid .p-inputtextarea {
|
||||||
|
|
|
@ -1,69 +1,69 @@
|
||||||
export default {
|
export default {
|
||||||
inputMultiple: {
|
inputMultiple: {
|
||||||
background: '{form.field.background}',
|
background: '{form.field.background}',
|
||||||
backgroundDisabled: '{form.field.background.disabled}',
|
disabledBackground: '{form.field.disabled.background}',
|
||||||
backgroundFilled: '{form.field.background.filled}',
|
filledBackground: '{form.field.filled.background}',
|
||||||
backgroundFilledFocus: '{form.field.background.filled.focus}',
|
filledFocusBackground: '{form.field.filled.focus.background}',
|
||||||
borderColor: '{form.field.border.color}',
|
borderColor: '{form.field.border.color}',
|
||||||
borderColorHover: '{form.field.border.color.hover}',
|
hoverBorderColor: '{form.field.hover.border.color}',
|
||||||
borderColorFocus: '{form.field.border.color.focus}',
|
focusBorderColor: '{form.field.focus.border.color}',
|
||||||
borderColorInvalid: '{form.field.border.color.invalid}',
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
||||||
textColor: '{form.field.text.color}',
|
color: '{form.field.color}',
|
||||||
textColorDisabled: '{form.field.text.disabled}',
|
disabledColor: '{form.field.disabled.color}',
|
||||||
placeholderTextColor: '{form.field.placeholder.text.color}',
|
placeholderColor: '{form.field.placeholder.color}',
|
||||||
boxShadow: '{form.field.box.shadow}'
|
boxShadow: '{form.field.box.shadow}'
|
||||||
},
|
},
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
chip: {
|
chip: {
|
||||||
background: '{surface.100}',
|
background: '{surface.100}',
|
||||||
backgroundFocus: '{surface.200}',
|
focusBackground: '{surface.200}',
|
||||||
textColor: '{surface.800}',
|
color: '{surface.800}',
|
||||||
textColorFocus: '{surface.900}'
|
focusColor: '{surface.900}'
|
||||||
},
|
},
|
||||||
overlay: {
|
overlay: {
|
||||||
background: '{surface.0}',
|
background: '{surface.0}',
|
||||||
borderColor: '{surface.200}',
|
borderColor: '{surface.200}',
|
||||||
textColor: '{surface.700}'
|
color: '{surface.700}'
|
||||||
},
|
},
|
||||||
item: {
|
item: {
|
||||||
backgroundFocus: '{surface.100}',
|
focusBackground: '{surface.100}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
backgroundSelectedFocus: '{highlight.background.focus}',
|
selectedFocusBackground: '{highlight.background.focus}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorFocus: '{surface.800}',
|
focusColor: '{surface.800}',
|
||||||
textColorSelected: '{highlight.text.color}',
|
selectedColor: '{highlight.text.color}',
|
||||||
textColorSelectedFocus: '{highlight.text.color.focus}'
|
selectedFocusColor: '{highlight.text.color.focus}'
|
||||||
},
|
},
|
||||||
itemGroup: {
|
itemGroup: {
|
||||||
background: '{surface.0}',
|
background: '{surface.0}',
|
||||||
textColor: '{surface.500}'
|
color: '{surface.500}'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
chip: {
|
chip: {
|
||||||
background: '{surface.700}',
|
background: '{surface.700}',
|
||||||
backgroundFocus: '{surface.600}',
|
focusBackground: '{surface.600}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorFocus: '{surface.0}'
|
focusColor: '{surface.0}'
|
||||||
},
|
},
|
||||||
overlay: {
|
overlay: {
|
||||||
background: '{surface.900}',
|
background: '{surface.900}',
|
||||||
borderColor: '{surface.700}',
|
borderColor: '{surface.700}',
|
||||||
textColor: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
item: {
|
item: {
|
||||||
backgroundFocus: '{surface.800}',
|
focusBackground: '{surface.800}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
backgroundSelectedFocus: '{highlight.background.focus}',
|
selectedFocusBackground: '{highlight.background.focus}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorFocus: '{surface.0}',
|
focusColor: '{surface.0}',
|
||||||
textColorSelected: '{highlight.text.color}',
|
selectedColor: '{highlight.text.color}',
|
||||||
textColorSelectedFocus: '{highlight.text.color.focus}'
|
selectedFocusColor: '{highlight.text.color.focus}'
|
||||||
},
|
},
|
||||||
itemGroup: {
|
itemGroup: {
|
||||||
background: '{surface.0}',
|
background: '{surface.0}',
|
||||||
textColor: '{surface.400}'
|
color: '{surface.400}'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,47 +12,47 @@ export default {
|
||||||
color: '{surface.700}'
|
color: '{surface.700}'
|
||||||
},
|
},
|
||||||
navigator: {
|
navigator: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
color: '{surface.500}',
|
color: '{surface.500}',
|
||||||
colorHover: '{surface.600}'
|
hoverColor: '{surface.600}'
|
||||||
},
|
},
|
||||||
monthPicker: {
|
monthPicker: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorHover: '{surface.800}'
|
hoverColor: '{surface.800}'
|
||||||
},
|
},
|
||||||
yearPicker: {
|
yearPicker: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorHover: '{surface.800}'
|
hoverColor: '{surface.800}'
|
||||||
},
|
},
|
||||||
group: {
|
group: {
|
||||||
borderColor: '{surface.200}'
|
borderColor: '{surface.200}'
|
||||||
},
|
},
|
||||||
date: {
|
date: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorHover: '{surface.800}',
|
hoverColor: '{surface.800}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
today: {
|
today: {
|
||||||
background: '{surface.200}',
|
background: '{surface.200}',
|
||||||
textColor: '{surface.900}'
|
color: '{surface.900}'
|
||||||
},
|
},
|
||||||
month: {
|
month: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorHover: '{surface.800}',
|
hoverColor: '{surface.800}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
year: {
|
year: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorHover: '{surface.800}',
|
hoverColor: '{surface.800}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
buttonbar: {
|
buttonbar: {
|
||||||
borderColor: '{surface.200}'
|
borderColor: '{surface.200}'
|
||||||
|
@ -61,9 +61,9 @@ export default {
|
||||||
borderColor: '{surface.200}'
|
borderColor: '{surface.200}'
|
||||||
},
|
},
|
||||||
timepickerSpin: {
|
timepickerSpin: {
|
||||||
backgroundHover: '{surface.100}',
|
hoverBackground: '{surface.100}',
|
||||||
color: '{surface.500}',
|
color: '{surface.500}',
|
||||||
colorHover: '{surface.600}'
|
hoverColor: '{surface.600}'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
|
@ -78,47 +78,47 @@ export default {
|
||||||
color: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
navigator: {
|
navigator: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
color: '{surface.400}',
|
color: '{surface.400}',
|
||||||
colorHover: '{surface.300}'
|
hoverColor: '{surface.300}'
|
||||||
},
|
},
|
||||||
monthPicker: {
|
monthPicker: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorHover: '{surface.0}'
|
hoverColor: '{surface.0}'
|
||||||
},
|
},
|
||||||
yearPicker: {
|
yearPicker: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorHover: '{surface.0}'
|
hoverColor: '{surface.0}'
|
||||||
},
|
},
|
||||||
group: {
|
group: {
|
||||||
borderColor: '{surface.700}'
|
borderColor: '{surface.700}'
|
||||||
},
|
},
|
||||||
date: {
|
date: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorHover: '{surface.0}',
|
hoverColor: '{surface.0}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
today: {
|
today: {
|
||||||
background: '{surface.700}',
|
background: '{surface.700}',
|
||||||
textColor: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
month: {
|
month: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorHover: '{surface.0}',
|
hoverColor: '{surface.0}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
year: {
|
year: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
backgroundSelected: '{highlight.background}',
|
selectedBackground: '{highlight.background}',
|
||||||
textColor: '{surface.0}',
|
color: '{surface.0}',
|
||||||
textColorHover: '{surface.0}',
|
hoverColor: '{surface.0}',
|
||||||
textColorSelected: '{highlight.text.color}'
|
selectedColor: '{highlight.text.color}'
|
||||||
},
|
},
|
||||||
buttonbar: {
|
buttonbar: {
|
||||||
borderColor: '{surface.700}'
|
borderColor: '{surface.700}'
|
||||||
|
@ -127,9 +127,9 @@ export default {
|
||||||
borderColor: '{surface.700}'
|
borderColor: '{surface.700}'
|
||||||
},
|
},
|
||||||
timepickerSpin: {
|
timepickerSpin: {
|
||||||
backgroundHover: '{surface.800}',
|
hoverBackground: '{surface.800}',
|
||||||
color: '{surface.400}',
|
color: '{surface.400}',
|
||||||
colorHover: '{surface.300}'
|
hoverColor: '{surface.300}'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,22 +4,22 @@ export default {
|
||||||
width: '1.25rem',
|
width: '1.25rem',
|
||||||
height: '1.25rem',
|
height: '1.25rem',
|
||||||
background: '{form.field.background}',
|
background: '{form.field.background}',
|
||||||
backgroundChecked: '{primary.color}',
|
checkedBackground: '{primary.color}',
|
||||||
backgroundCheckedHover: '{primary.hover.color}',
|
checkedHoverBackground: '{primary.hover.color}',
|
||||||
backgroundDisabled: '{form.field.background.disabled}',
|
disabledBackground: '{form.field.disabled.background}',
|
||||||
backgroundFilled: '{form.field.background.filled}',
|
filledBackground: '{form.field.filled.background}',
|
||||||
borderColor: '{form.field.border.color}',
|
borderColor: '{form.field.border.color}',
|
||||||
borderColorHover: '{form.field.border.color.hover}',
|
hoverBordercolor: '{form.field.hover.border.color}',
|
||||||
borderColorChecked: '{primary.color}',
|
checkedBorderColor: '{primary.color}',
|
||||||
borderColorCheckedHover: '{primary.hover.color}',
|
checkedHoverBorderColor: '{primary.hover.color}',
|
||||||
borderColorInvalid: '{form.field.border.color.invalid}',
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
||||||
boxShadow: '{form.field.box.shadow}'
|
boxShadow: '{form.field.box.shadow}'
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
size: '0.875rem',
|
size: '0.875rem',
|
||||||
color: '{form.field.text.color}',
|
color: '{form.field.color}',
|
||||||
colorChecked: '{primary.inverse.color}',
|
checkedColor: '{primary.inverse.color}',
|
||||||
colorCheckedHover: '{primary.inverse.color}',
|
checkedHoverColor: '{primary.inverse.color}',
|
||||||
colorDisabled: '{form.field.text.disabled}'
|
disabledColor: '{form.field.disabled.color}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -167,19 +167,19 @@ export default {
|
||||||
maskBackground: 'rgba(0,0,0,0.4)',
|
maskBackground: 'rgba(0,0,0,0.4)',
|
||||||
formField: {
|
formField: {
|
||||||
background: '{surface.0}',
|
background: '{surface.0}',
|
||||||
backgroundDisabled: '{surface.200}',
|
disabledBackground: '{surface.200}',
|
||||||
backgroundFilled: '{surface.50}',
|
filledBackground: '{surface.50}',
|
||||||
backgroundFilledFocus: '{surface.0}',
|
filledFocusBackground: '{surface.0}',
|
||||||
borderColor: '{surface.300}',
|
borderColor: '{surface.300}',
|
||||||
borderColorHover: '{surface.400}',
|
hoverBorderColor: '{surface.400}',
|
||||||
borderColorFocus: '{primary.color}',
|
focusBorderColor: '{primary.color}',
|
||||||
borderColorInvalid: '{red.400}',
|
invalidBorderColor: '{red.400}',
|
||||||
textColor: '{surface.700}',
|
color: '{surface.700}',
|
||||||
textColorDisabled: '{surface.500}',
|
disabledColor: '{surface.500}',
|
||||||
placeholderTextColor: '{surface.500}',
|
placeholderColor: '{surface.500}',
|
||||||
floatLabelTextColor: '{surface.500}',
|
floatLabelColor: '{surface.500}',
|
||||||
floatLabelTextColorInvalid: '{red.400}',
|
invalidFloatLabelColor: '{red.400}',
|
||||||
floatLabelTextColorFocus: '{surface.500}',
|
focusFloatLabelColor: '{surface.500}',
|
||||||
boxShadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)'
|
boxShadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
export default {
|
export default {
|
||||||
root: {
|
root: {
|
||||||
background: '{form.field.background}',
|
background: '{form.field.background}',
|
||||||
backgroundDisabled: '{form.field.background.disabled}',
|
disabledBackground: '{form.field.disabled.background}',
|
||||||
backgroundFilled: '{form.field.background.filled}',
|
filledBackground: '{form.field.filled.background}',
|
||||||
backgroundFilledFocus: '{form.field.background.filled.focus}',
|
filledFocusBackground: '{form.field.filled.focus.background}',
|
||||||
borderColor: '{form.field.border.color}',
|
borderColor: '{form.field.border.color}',
|
||||||
borderColorHover: '{form.field.border.color.hover}',
|
hoverBorderColor: '{form.field.hover.border.color}',
|
||||||
borderColorFocus: '{form.field.border.color.focus}',
|
focusBorderColor: '{form.field.focus.border.color}',
|
||||||
borderColorInvalid: '{form.field.border.color.invalid}',
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
||||||
textColor: '{form.field.text.color}',
|
color: '{form.field.color}',
|
||||||
textColorDisabled: '{form.field.text.disabled}',
|
disabledColor: '{form.field.disabled.color}',
|
||||||
placeholderTextColor: '{form.field.placeholder.text.color}',
|
placeholderColor: '{form.field.placeholder.color}',
|
||||||
boxShadow: '{form.field.box.shadow}'
|
boxShadow: '{form.field.box.shadow}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,21 +3,21 @@ export default {
|
||||||
width: '1.25rem',
|
width: '1.25rem',
|
||||||
height: '1.25rem',
|
height: '1.25rem',
|
||||||
background: '{form.field.background}',
|
background: '{form.field.background}',
|
||||||
backgroundChecked: '{form.field.background}',
|
checkedBackground: '{primary.color}',
|
||||||
backgroundCheckedHover: '{form.field.background}',
|
checkedHoverBackground: '{primary.hover.color}',
|
||||||
backgroundDisabled: '{form.field.background.disabled}',
|
disabledBackground: '{form.field.disabled.background}',
|
||||||
backgroundFilled: '{form.field.background.filled}',
|
filledBackground: '{form.field.filled.background}',
|
||||||
borderColor: '{form.field.border.color}',
|
borderColor: '{form.field.border.color}',
|
||||||
borderColorHover: '{form.field.border.color.hover}',
|
hoverBordercolor: '{form.field.hover.border.color}',
|
||||||
borderColorChecked: '{primary.color}',
|
checkedBorderColor: '{primary.color}',
|
||||||
borderColorCheckedHover: '{primary.hover.color}',
|
checkedHoverBorderColor: '{primary.hover.color}',
|
||||||
borderColorInvalid: '{form.field.border.color.invalid}',
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
||||||
boxShadow: '{form.field.box.shadow}'
|
boxShadow: '{form.field.box.shadow}'
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
size: '0.75rem',
|
size: '0.75rem',
|
||||||
colorChecked: '{primary.color}',
|
checkedColor: '{primary.inverse.color}',
|
||||||
colorCheckedHover: '{primary.hover.color}',
|
checkedHoverColor: '{primary.inverse.color}',
|
||||||
colorDisabled: '{form.field.text.disabled}'
|
disabledColor: '{form.field.disabled.color}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
export default {
|
export default {
|
||||||
root: {
|
root: {
|
||||||
background: '{form.field.background}',
|
background: '{form.field.background}',
|
||||||
backgroundDisabled: '{form.field.background.disabled}',
|
disabledBackground: '{form.field.disabled.background}',
|
||||||
backgroundFilled: '{form.field.background.filled}',
|
filledBackground: '{form.field.filled.background}',
|
||||||
backgroundFilledFocus: '{form.field.background.filled.focus}',
|
filledFocusBackground: '{form.field.filled.focus.background}',
|
||||||
borderColor: '{form.field.border.color}',
|
borderColor: '{form.field.border.color}',
|
||||||
borderColorHover: '{form.field.border.color.hover}',
|
hoverBorderColor: '{form.field.hover.border.color}',
|
||||||
borderColorFocus: '{form.field.border.color.focus}',
|
focusBorderColor: '{form.field.focus.border.color}',
|
||||||
borderColorInvalid: '{form.field.border.color.invalid}',
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
||||||
textColor: '{form.field.text.color}',
|
color: '{form.field.color}',
|
||||||
textColorDisabled: '{form.field.text.disabled}',
|
disabledColor: '{form.field.disabled.color}',
|
||||||
placeholderTextColor: '{form.field.placeholder.text.color}',
|
placeholderColor: '{form.field.placeholder.color}',
|
||||||
boxShadow: '{form.field.box.shadow}'
|
boxShadow: '{form.field.box.shadow}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue