Add Danger theme for tippy
This commit is contained in:
parent
6ad2c24833
commit
c838884cce
|
@ -19,3 +19,25 @@
|
|||
.tippy-box[data-theme~='primary'] > .tippy-svg-arrow {
|
||||
fill: theme('colors.primary.800');
|
||||
}
|
||||
|
||||
.tippy-box[data-theme~='danger'] {
|
||||
@apply bg-red-800 text-red-100 shadow-lg;
|
||||
}
|
||||
.tippy-box[data-theme~='danger'][data-placement^='top'] > .tippy-arrow:before {
|
||||
border-top-color: theme('colors.red.800');
|
||||
}
|
||||
.tippy-box[data-theme~='danger'][data-placement^='bottom'] > .tippy-arrow:before {
|
||||
border-bottom-color: theme('colors.red.800');
|
||||
}
|
||||
.tippy-box[data-theme~='danger'][data-placement^='left'] > .tippy-arrow:before {
|
||||
border-left-color: theme('colors.red.800');
|
||||
}
|
||||
.tippy-box[data-theme~='danger'][data-placement^='right'] > .tippy-arrow:before {
|
||||
border-right-color: theme('colors.red.800');
|
||||
}
|
||||
.tippy-box[data-theme~='danger'] > .tippy-backdrop {
|
||||
background-color: theme('colors.red.800');
|
||||
}
|
||||
.tippy-box[data-placement='top-end'] > .tippy-arrow {
|
||||
@apply !transform-none !left-auto right-4;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue