diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2024-07-14 03:40:03 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2024-07-14 03:40:03 -0400 | 
| commit | 550701557c1e021e45bddff92ad1a2e8c808e8e0 (patch) | |
| tree | 219c5979d3b30843b88336ae755dd8e45a1e5471 /src/main/resources/net/sowgro/npehero | |
| parent | cf8f3d35716cd93d0d5d123d80b07f9ae704f939 (diff) | |
| download | NPEhero-550701557c1e021e45bddff92ad1a2e8c808e8e0.tar.gz NPEhero-550701557c1e021e45bddff92ad1a2e8c808e8e0.tar.bz2 NPEhero-550701557c1e021e45bddff92ad1a2e8c808e8e0.zip  | |
NEW LEVEL EDITOR!!!!
Diffstat (limited to 'src/main/resources/net/sowgro/npehero')
| -rwxr-xr-x | src/main/resources/net/sowgro/npehero/style.css | 24 | 
1 files changed, 16 insertions, 8 deletions
diff --git a/src/main/resources/net/sowgro/npehero/style.css b/src/main/resources/net/sowgro/npehero/style.css index 6e8a7a3..950be11 100755 --- a/src/main/resources/net/sowgro/npehero/style.css +++ b/src/main/resources/net/sowgro/npehero/style.css @@ -7,9 +7,8 @@      -fx-font-size: 20;  } -/* button */ - -.button {  +/* buttons */ +Button, TextField, RadioButton, ToggleButton, ColorPicker {      -fx-background-color: rgba(0, 0, 0, 0.5);       -fx-text-fill: white;      -fx-border-color: transparent; @@ -19,27 +18,31 @@      -fx-background-radius: 5;  } -.button:hover { +Button:hover, TextField:hover, RadioButton:hover, ToggleButton:hover, ColorPicker:hover {      -fx-background-color: rgb(50, 50, 50, 0.5);  } -.button:focused { +Button:focused, TextField:focused, RadioButton:focused, ToggleButton:focused, ColorPicker:focused {      -fx-background-color: rgb(50, 50, 50, 0.5);      -fx-border-color: rgb(255, 255, 255);  } -.button:selected { +Button:selected, TextField:selected, RadioButton:selected, ToggleButton:selected, ColorPicker:selected {      -fx-background-color: rgb(255, 255, 255);      -fx-text-fill: rgb(0, 0, 0);  } -.button:pressed{ +Button:pressed, TextField:pressed, RadioButton:pressed, ToggleButton:pressed, ColorPicker:pressed {      -fx-background-color: rgb(231, 231, 231);      -fx-border-color: transparent;      -fx-text-fill: rgb(0, 0, 0);  } +ColorPicker { +    -fx-color-label-visible: false +} +  /* table */  TableView { @@ -105,6 +108,7 @@ TableView:focused .list-cell:focused {  .table-row-cell:pressed {      -fx-background-color: rgb(231, 231, 231); +    -fx-text-background-color: rgb(0, 0, 0);      /* -fx-border-color: transparent; */  } @@ -161,7 +165,7 @@ Slider:focused .thumb{  .scroll-bar:horizontal ,  .scroll-bar:vertical{ -    -fx-font-size: 5px; +    -fx-font-size: 10px;      -fx-background-color :transparent;      -fx-border-color :transparent;      -fx-background-radius : 0.0em; @@ -225,6 +229,10 @@ Slider:focused .thumb{      -fx-text-fill: white;  } +.box Label { +    -fx-text-fill: white; +} +  /* debug */  .debug {  | 
