33 lines
976 B
CSS
33 lines
976 B
CSS
.fusion-highlight {
|
|
--awb-text-color: inherit;
|
|
--awb-background-image: none;
|
|
--gradient_start_color: inherit;
|
|
color: var(--awb-text-color);
|
|
}
|
|
.fusion-highlight.dark {
|
|
--awb-text-color: #ccc;
|
|
}
|
|
.fusion-highlight.awb-highlight-background {
|
|
--awb-color: var(--primary_color);
|
|
padding: 0.1em 0.3em;
|
|
line-height: 1.7em;
|
|
background: var(--awb-color);
|
|
}
|
|
.fusion-highlight.awb-highlight-background.rounded {
|
|
border-radius: 4px;
|
|
background-clip: padding-box;
|
|
}
|
|
.fusion-highlight.awb-highlight-marker {
|
|
--awb-color: var(--primary_color);
|
|
background: linear-gradient(to top, var(--awb-color) 40%, transparent 40%);
|
|
}
|
|
.fusion-highlight.awb-gradient-text {
|
|
background-color: var(--gradient_start_color);
|
|
background-image: var(--awb-background-image);
|
|
}
|
|
.fusion-highlight.fusion-text-has-stroke {
|
|
--awb-text-stroke-size: 1px;
|
|
--awb-text-stroke-color: var(--primary_color);
|
|
-webkit-text-stroke: var(--awb-text-stroke-size) var(--awb-text-stroke-color);
|
|
}
|