Steps to reproduce:
- run Modena app
- scroll to Hyperlink section
There are at least two possible solutions how to improve hyperlinks. Two of them are captured in attached CSS code.
/*******************************************************************************
* *
* Solution 1 *
* *
******************************************************************************/
.hyperlink,
.hyperlink:visited:armed,
.hyperlink:hover:armed {
-fx-text-fill: -fx-accent;
}
.hyperlink:hover,
.hyperlink:visited {
-fx-text-fill: -fx-text-background-color;
}
.hyperlink,
.hyperlink:visited {
-fx-underline: true;
}
.hyperlink:hover,
.hyperlink:armed {
-fx-underline: false;
}
/*******************************************************************************
* *
* Solution 2 *
* *
******************************************************************************/
.hyperlink,
.hyperlink:hover,
.hyperlink:hover:visited {
-fx-text-fill: -fx-accent;
}
.hyperlink:armed,
.hyperlink:visited,
.hyperlink:hover:armed {
-fx-text-fill: -fx-text-background-color;
}
.hyperlink:hover,
.hyperlink:visited,
.hyperlink:hover:visited {
-fx-underline: true;
}
.hyperlink:visited:armed {
-fx-underline: false;
}
- run Modena app
- scroll to Hyperlink section
There are at least two possible solutions how to improve hyperlinks. Two of them are captured in attached CSS code.
/*******************************************************************************
* *
* Solution 1 *
* *
******************************************************************************/
.hyperlink,
.hyperlink:visited:armed,
.hyperlink:hover:armed {
-fx-text-fill: -fx-accent;
}
.hyperlink:hover,
.hyperlink:visited {
-fx-text-fill: -fx-text-background-color;
}
.hyperlink,
.hyperlink:visited {
-fx-underline: true;
}
.hyperlink:hover,
.hyperlink:armed {
-fx-underline: false;
}
/*******************************************************************************
* *
* Solution 2 *
* *
******************************************************************************/
.hyperlink,
.hyperlink:hover,
.hyperlink:hover:visited {
-fx-text-fill: -fx-accent;
}
.hyperlink:armed,
.hyperlink:visited,
.hyperlink:hover:armed {
-fx-text-fill: -fx-text-background-color;
}
.hyperlink:hover,
.hyperlink:visited,
.hyperlink:hover:visited {
-fx-underline: true;
}
.hyperlink:visited:armed {
-fx-underline: false;
}