Merge branch 'v4' of https://github.com/primefaces/primevue into v4
commit
09b529e9e8
|
@ -179,27 +179,6 @@ export default {
|
|||
color: ${dt('autocomplete.input.multiple.disabled.color')};
|
||||
}
|
||||
|
||||
.p-autocomplete-chip {
|
||||
cursor: default;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex: 0 0 auto;
|
||||
padding: 0.25rem 0.75rem;
|
||||
background: ${dt('autocomplete.chip.background')};
|
||||
color: ${dt('autocomplete.chip.color')};
|
||||
border-radius: ${dt('rounded.sm')};
|
||||
}
|
||||
|
||||
.p-autocomplete-chip.p-focus {
|
||||
background: ${dt('autocomplete.chip.focus.background')};
|
||||
color: ${dt('autocomplete.chip.focus.color')};
|
||||
}
|
||||
|
||||
.p-autocomplete-chip-icon {
|
||||
cursor: pointer;
|
||||
margin-left: 0.375rem;
|
||||
}
|
||||
|
||||
.p-autocomplete-input-chip {
|
||||
flex: 1 1 auto;
|
||||
display: inline-flex;
|
||||
|
@ -210,7 +189,7 @@ export default {
|
|||
.p-autocomplete-input-chip input {
|
||||
border: 0 none;
|
||||
outline: 0 none;
|
||||
background-color: transparent;
|
||||
background: transparent;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
|
@ -220,8 +199,6 @@ export default {
|
|||
font-feature-settings: inherit;
|
||||
font-size: 1rem;
|
||||
color: inherit;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-autocomplete-input-chip input::placeholder {
|
||||
|
|
|
@ -52,27 +52,6 @@ export default {
|
|||
color: ${dt('chips.disabled.color')};
|
||||
}
|
||||
|
||||
.p-inputchips-chip {
|
||||
cursor: default;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex: 0 0 auto;
|
||||
padding: 0.25rem 0.75rem;
|
||||
background: ${dt('chips.chip.background')};
|
||||
color: ${dt('chips.chip.color')};
|
||||
border-radius: ${dt('rounded.sm')};
|
||||
}
|
||||
|
||||
.p-inputchips-chip.p-focus {
|
||||
background: ${dt('chips.chip.focus.background')};
|
||||
color: ${dt('chips.chip.focus.color')};
|
||||
}
|
||||
|
||||
.p-inputchips-chip-icon {
|
||||
cursor: pointer;
|
||||
margin-left: 0.375rem;
|
||||
}
|
||||
|
||||
.p-inputchips-input-item {
|
||||
padding: 0.25rem 0;
|
||||
margin-left: 0.5rem;
|
||||
|
@ -83,7 +62,7 @@ export default {
|
|||
.p-inputchips-input-item input {
|
||||
border: 0 none;
|
||||
outline: 0 none;
|
||||
background-color: transparent;
|
||||
background: transparent;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
|
@ -93,8 +72,6 @@ export default {
|
|||
font-feature-settings: inherit;
|
||||
font-size: 1rem;
|
||||
color: inherit;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-inputchips-input-item input::placeholder {
|
||||
|
|
|
@ -84,23 +84,6 @@ export default {
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
.p-multiselect-chip {
|
||||
cursor: default;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex: 0 0 auto;
|
||||
padding: 0.25rem 0.75rem;
|
||||
background: ${dt('multiselect.chip.background')};
|
||||
color: ${dt('multiselect.chip.color')};
|
||||
border-radius: ${dt('rounded.sm')};
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
.p-multiselect-chip-icon {
|
||||
cursor: pointer;
|
||||
margin-left: 0.375rem;
|
||||
}
|
||||
|
||||
.p-multiselect .p-multiselect-overlay {
|
||||
min-width: 100%;
|
||||
}
|
||||
|
|
|
@ -84,23 +84,6 @@ export default {
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
.p-treeselect-chip {
|
||||
cursor: default;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex: 0 0 auto;
|
||||
padding: 0.25rem 0.75rem;
|
||||
background: ${dt('treeselect.chip.background')};
|
||||
color: ${dt('treeselect.chip.color')};
|
||||
border-radius: ${dt('rounded.sm')};
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
.p-treeselect-chip-icon {
|
||||
cursor: pointer;
|
||||
margin-left: 0.375rem;
|
||||
}
|
||||
|
||||
.p-treeselect .p-treeselect-overlay {
|
||||
min-width: 100%;
|
||||
}
|
||||
|
|
|
@ -15,12 +15,6 @@ export default {
|
|||
},
|
||||
colorScheme: {
|
||||
light: {
|
||||
chip: {
|
||||
background: '{surface.100}',
|
||||
focusBackground: '{surface.200}',
|
||||
color: '{surface.800}',
|
||||
focusColor: '{surface.900}'
|
||||
},
|
||||
overlay: {
|
||||
background: '{surface.0}',
|
||||
borderColor: '{surface.200}',
|
||||
|
@ -53,12 +47,6 @@ export default {
|
|||
}
|
||||
},
|
||||
dark: {
|
||||
chip: {
|
||||
background: '{surface.700}',
|
||||
focusBackground: '{surface.600}',
|
||||
color: '{surface.0}',
|
||||
focusColor: '{surface.0}'
|
||||
},
|
||||
overlay: {
|
||||
background: '{surface.900}',
|
||||
borderColor: '{surface.700}',
|
||||
|
|
|
@ -12,23 +12,5 @@ export default {
|
|||
disabledColor: '{form.field.disabled.color}',
|
||||
placeholderColor: '{form.field.placeholder.color}',
|
||||
boxShadow: '{form.field.box.shadow}'
|
||||
},
|
||||
colorScheme: {
|
||||
light: {
|
||||
chip: {
|
||||
background: '{surface.100}',
|
||||
focusBackground: '{surface.200}',
|
||||
color: '{surface.800}',
|
||||
focusColor: '{surface.900}'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
chip: {
|
||||
background: '{surface.700}',
|
||||
focusBackground: '{surface.600}',
|
||||
color: '{surface.0}',
|
||||
focusColor: '{surface.0}'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -38,10 +38,6 @@ export default {
|
|||
focusColor: '{surface.800}',
|
||||
selectedColor: '{highlight.color}',
|
||||
selectedFocusColor: '{highlight.focus.color}'
|
||||
},
|
||||
chip: {
|
||||
background: '{surface.100}',
|
||||
color: '{surface.800}'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
|
@ -68,10 +64,6 @@ export default {
|
|||
focusColor: '{surface.0}',
|
||||
selectedColor: '{highlight.color}',
|
||||
selectedFocusColor: '{highlight.focus.color}'
|
||||
},
|
||||
chip: {
|
||||
background: '{surface.700}',
|
||||
color: '{surface.0}'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,10 +22,6 @@ export default {
|
|||
background: '{surface.0}',
|
||||
borderColor: '{surface.200}',
|
||||
color: '{surface.700}'
|
||||
},
|
||||
chip: {
|
||||
background: '{surface.100}',
|
||||
color: '{surface.800}'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
|
@ -36,10 +32,6 @@ export default {
|
|||
background: '{surface.900}',
|
||||
borderColor: '{surface.700}',
|
||||
color: '{surface.0}'
|
||||
},
|
||||
chip: {
|
||||
background: '{surface.700}',
|
||||
color: '{surface.0}'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue