From 81c3768ee9396cecf84758cc55c87b2fdd3f6fee Mon Sep 17 00:00:00 2001
From: mstr2 <43553916+mstr2@users.noreply.github.com>
Date: Tue, 3 Jun 2025 03:09:43 +0200
Subject: [PATCH] fix wrong
HTML tags
---
.../docs/javafx/scene/doc-files/cssref.html | 28 +++++++++----------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html b/modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html
index dc8c836c99a..f5cd34e8749 100644
--- a/modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html
+++ b/modules/javafx.graphics/src/main/docs/javafx/scene/doc-files/cssref.html
@@ -737,7 +737,7 @@
A button that smoothly changes its opacity on mouse-hover can be defined in a stylesheet like this:
- .button {
- -fx-opacity: 0.8;
- transition-property: -fx-opacity;
- transition-duration: 0.5s;
- }
-
- .button:hover {
- -fx-opacity: 1;
+ .button {
+ -fx-opacity: 0.8;
+ transition-property: -fx-opacity;
+ transition-duration: 0.5s;
+ }
+
+ .button:hover {
+ -fx-opacity: 1;
}
linear | <cubic-bezier-easing-function> | <step-easing-function> | <fx-easing-function>
-Linear linear
+
Linear linear
The linear easing function is a simple linear mapping from the input progress value to the output progress value.
Cubic Bézier Easing Functions <cubic-bezier-easing-function>
+Cubic Bézier Easing Functions <cubic-bezier-easing-function>
ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)
The values have the following meaning:
| steps | defines a step function with <integer> intervals
- and an optional <step-position>; if omitted, + and an optional <step-position>; if omitted, end is implied |
| jump-start | the interval starts with a rise point when the input progress value is 0 | @@ -1778,7 +1778,7 @@