diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-30 23:53:14 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-30 23:53:14 -0400 | 
| commit | ab92e6573980b48ebd5de6fccba55381ab095aa7 (patch) | |
| tree | c3bc7c1d864b65042a6e66020f2df28731024f0c /src/gui | |
| parent | 4a5514698794960dda35af2ecc7b0ebc683fc4ec (diff) | |
| download | NPEhero-ab92e6573980b48ebd5de6fccba55381ab095aa7.tar.gz NPEhero-ab92e6573980b48ebd5de6fccba55381ab095aa7.tar.bz2 NPEhero-ab92e6573980b48ebd5de6fccba55381ab095aa7.zip  | |
fix cut off text in table
Diffstat (limited to '')
| -rw-r--r-- | src/gui/style.css | 20 | 
1 files changed, 1 insertions, 19 deletions
diff --git a/src/gui/style.css b/src/gui/style.css index 304ee9a..3b05196 100644 --- a/src/gui/style.css +++ b/src/gui/style.css @@ -39,12 +39,6 @@      -fx-text-fill: rgb(0, 0, 0);  } - - - - - -  /* table */  TableView { @@ -59,14 +53,10 @@ TableView {  .table-view .table-cell{      -fx-border-color: transparent; -    /* -fx-padding: 2 0 2 10px; */  }  .table-view .column-header-background{      -fx-background-color: transparent; -    /* -fx-background-radius: 7px 7px 0px 0px; -    -fx-background-insets: 0 11px 0 0; -    -fx-padding: 0 0 5px 0; */  }  .table-cell { @@ -76,12 +66,10 @@ TableView {  .table-view .column-header {      -fx-text-background-color: rgb(168, 168, 168);      -fx-background-color: transparent; -    /* -fx-background-radius: 5;     -    -fx-background-color: rgba(0, 0, 0, 0.5);  */  }  .table-row-cell { -    /* -fx-padding: .5em; */ +    -fx-cell-size: 40;      -fx-background-color: transparent;      -fx-background-radius: 3;      -fx-text-background-color: rgb(255, 255, 255); @@ -126,12 +114,6 @@ TableView:focused .list-cell:focused {      -fx-text-background-color: white;  } - - - - - -  /* slider */  Slider {  | 
