Skip to content

Commit

Permalink
fixes for subtable layout
Browse files Browse the repository at this point in the history
  • Loading branch information
codecivil committed Nov 28, 2024
1 parent 5976baa commit c0aca9c
Show file tree
Hide file tree
Showing 8 changed files with 441 additions and 8 deletions.
7 changes: 7 additions & 0 deletions nightly/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#v1.8.10
======
28.11.2024

* formal start of semantic versioning (incompatible changes.backward compatible features.bug fixes)
* fixes for subtable related layout

#v1.8.9
======
22.11.2024
Expand Down
10 changes: 10 additions & 0 deletions nightly/changelog_user
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
+v1.8.10
======

* verbesserte Anzeige im Zusammenhang mit Untertabellen
* Formaler Start der semantischen Versionierung:
- Letzte Zahl wird erhöht: nur Fehlerkorrekturen
- Mittlere Zahl wird erhöht: (auch) neue Features
- Erste Zahl wird erhöht: neue Version, die mit Versionen vorheriger
erster Zahl inkompatibel ist

#v1.8.9
======

Expand Down
4 changes: 2 additions & 2 deletions nightly/core/data/info.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
$author = "codecivil Dr. Marco Kühnel ICT Services";
$license = "GPLv3";
$versiondate = "22.11.2024";
$versionnumber = "1.8.9";
$versiondate = "28.11.2024";
$versionnumber = "1.8.10";
$firefox_least_featureversion = "121";
$contact = "[email protected]";
?>
4 changes: 1 addition & 3 deletions nightly/public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,6 @@ div#wasistneu_wrapper { width: 92%; margin: 0.5rem auto; box-shadow: 0 2px 5px #
}
#formChooseTables { font-size: 1rem; }
#formChooseTables > div:nth-child(2) { font-weight: bold; }
#formChooseTables .toggle + .chooseSubtable { display: none; }
#formChooseTables .toggle:checked + .chooseSubtable { display: block; }
#formChooseTables .chooseSubtable { background: var(--background-choose-subtable); }
#formChooseTables label.chooseSubtable { position: relative; top: -1.4rem; left: calc(100% - 1.4rem); font-size: 0.7rem; display: block; height: 0; width: 0.7rem; }
.hier_up:hover::after { content: '\2190'; } /* arrow left */
Expand Down Expand Up @@ -454,7 +452,7 @@ div#wasistneu_wrapper { width: 92%; margin: 0.5rem auto; box-shadow: 0 2px 5px #
.details .subtoggle:checked + div label .closed { display: none; }
.details .subtoggle:not(:checked) + div label .open { display: none; }
.details .subtoggle:not(:checked) + div label .closed { display: inline; }
.details .subtable_header { display: block; height: 2rem; background: var(--background-subtable-header); margin: 0.5rem; }
.details .subtable_header { display: block; z-index: 1; height: 2rem; background: var(--background-subtable-header); margin: 0.5rem; }
.details .subtable_header label { width: initial; float: none; text-align: left; padding: 0.5rem; }
/** SUGGESTion windows **/
.details .suggestions {
Expand Down
4 changes: 1 addition & 3 deletions nightly/public/css/main_clear_.css
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,6 @@ div#wasistneu_wrapper { width: 92%; margin: 0.5rem auto; box-shadow: 0 2px 5px #
}
#formChooseTables { font-size: 1rem; }
#formChooseTables > div:nth-child(2) { font-weight: bold; }
#formChooseTables .toggle + .chooseSubtable { display: none; }
#formChooseTables .toggle:checked + .chooseSubtable { display: block; }
#formChooseTables .chooseSubtable { background: var(--background-choose-subtable); }
#formChooseTables label.chooseSubtable { position: relative; top: -1.4rem; left: calc(100% - 1.4rem); font-size: 0.7rem; display: block; height: 0; width: 0.7rem; }
.hier_up:hover::after { content: '\2190'; } /* arrow left */
Expand Down Expand Up @@ -517,7 +515,7 @@ div#wasistneu_wrapper { width: 92%; margin: 0.5rem auto; box-shadow: 0 2px 5px #
.details .subtoggle:checked + div label .closed { display: none; }
.details .subtoggle:not(:checked) + div label .open { display: none; }
.details .subtoggle:not(:checked) + div label .closed { display: inline; }
.details .subtable_header { display: block; height: 2rem; background: var(--background-subtable-header); margin: 0.5rem; position: sticky; top: 8.5rem; }
.details .subtable_header { display: block; z-index: 1; height: 2rem; background: var(--background-subtable-header); margin: 0.5rem; position: sticky; top: 8.5rem; }
.details .subtable_header label { width: initial; float: none; text-align: left; padding: 0.5rem; }
/** SUGGESTion windows **/
.details .suggestions {
Expand Down
205 changes: 205 additions & 0 deletions nightly/public/css/subtables.css

Large diffs are not rendered by default.

213 changes: 213 additions & 0 deletions nightly/public/css/subtables.css.tmp

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions nightly/public/css/subtables.part.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#formChooseTables .toggle:nth-of-type(A) ~ .chooseSubtable:has(~ .toggle:nth-of-type(B)) { display: none; }
#formChooseTables .toggle:nth-of-type(A):checked + .chooseSubtable:has(~ .toggle:nth-of-type(B)) { display: block; }

0 comments on commit c0aca9c

Please sign in to comment.