mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
fix(chip): use transparent outline on color chips (#17719)
This commit is contained in:
@ -37,20 +37,9 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:host(:focus) {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
:host(:focus) {
|
||||
--background: rgba(0, 0, 0, .16);
|
||||
}
|
||||
|
||||
:host(.activated) {
|
||||
--background: rgba(0, 0, 0, .20);
|
||||
}
|
||||
|
||||
|
||||
// Colors
|
||||
// Chip Colors
|
||||
// ---------------------------------------------
|
||||
|
||||
:host(.ion-color) {
|
||||
background: current-color(base, .08);
|
||||
@ -66,14 +55,16 @@
|
||||
}
|
||||
|
||||
|
||||
// Outline
|
||||
// Outline Chip
|
||||
// ---------------------------------------------
|
||||
|
||||
:host(.chip-outline) {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
:host(.chip-outline:not(.ion-color)) {
|
||||
:host(.chip-outline) {
|
||||
|
||||
border-color: rgba(0, 0, 0, .32);
|
||||
|
||||
background: transparent;
|
||||
@ -92,7 +83,8 @@
|
||||
}
|
||||
|
||||
|
||||
// Icon
|
||||
// Chip Icon
|
||||
// ---------------------------------------------
|
||||
|
||||
::slotted(ion-icon) {
|
||||
font-size: 20px;
|
||||
@ -111,7 +103,8 @@
|
||||
}
|
||||
|
||||
|
||||
// Avatar
|
||||
// Chip Avatar
|
||||
// ---------------------------------------------
|
||||
|
||||
::slotted(ion-avatar) {
|
||||
width: 24px;
|
||||
@ -127,7 +120,28 @@
|
||||
}
|
||||
|
||||
|
||||
// Hover
|
||||
// Chip: Focus
|
||||
// ---------------------------------------------
|
||||
|
||||
:host(:focus) {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
:host(:focus) {
|
||||
--background: rgba(0, 0, 0, .16);
|
||||
}
|
||||
|
||||
|
||||
// Chip: Activated
|
||||
// ---------------------------------------------
|
||||
|
||||
:host(.activated) {
|
||||
--background: rgba(0, 0, 0, .20);
|
||||
}
|
||||
|
||||
|
||||
// Chip: Hover
|
||||
// ---------------------------------------------
|
||||
|
||||
@media (any-hover: hover) {
|
||||
:host(:hover) {
|
||||
|
Reference in New Issue
Block a user