mirror of https://github.com/apache/nifi.git
[NIFI-13353] improve anchor tag hover state styles in dark mode (#8920)
This closes #8920
This commit is contained in:
parent
7a85da9fee
commit
3ef85e3347
|
@ -294,7 +294,11 @@
|
|||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration-color: $material-theme-primary-palette-darker;
|
||||
text-decoration-color: if(
|
||||
$is-dark,
|
||||
$material-theme-primary-palette-default,
|
||||
$material-theme-primary-palette-darker
|
||||
);
|
||||
}
|
||||
|
||||
.has-errors,
|
||||
|
@ -316,7 +320,6 @@
|
|||
$material-theme-accent-palette-darker,
|
||||
$material-theme-accent-palette-lighter
|
||||
)};
|
||||
//font-family: mat.get-theme-typography($material-theme, body-1, font-family);
|
||||
}
|
||||
|
||||
.mat-h2,
|
||||
|
|
Loading…
Reference in New Issue