Skip to content

Commit

Permalink
- Added missing critical damage locations to repeating groups
Browse files Browse the repository at this point in the history
- Added Ship subtabs for Details & Notes
  • Loading branch information
brookesi committed Feb 4, 2024
1 parent 128eed9 commit 9c3f46f
Show file tree
Hide file tree
Showing 2 changed files with 527 additions and 468 deletions.
32 changes: 32 additions & 0 deletions Mongoose_Traveller2e/MongooseTraveller.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ select[multiple]:focus option:checked {
.sheet-npc,
.sheet-animal,
.sheet-ship,
.sheet-shipdetails,
.sheet-shipnotes,
.sheet-passengers,
.sheet-freight,
.sheet-speculative,
Expand Down Expand Up @@ -76,6 +78,34 @@ select[multiple]:focus option:checked {
opacity: 1;
}

.sheet-shiptypetoggle[value="ship"] ~ .sheet-ship {
display: block;
animation-name: slide-in;
animation-duration: 1s;
opacity: 1;
}

.sheet-typetoggle[value="ship"] ~ .sheet-ship {
display: block;
animation-name: slide-in;
animation-duration: 1s;
opacity: 1;
}

.sheet-shiptype[value="shipdetails"] ~ .sheet-shipdetails {
display: block;
animation-name: slide-in;
animation-duration: 1s;
opacity: 1;
}

.sheet-shiptype[value="shipnotes"] ~ .sheet-shipnotes {
display: block;
animation-name: slide-in;
animation-duration: 1s;
opacity: 1;
}

.sheet-typetoggle[value="trade"] ~ .sheet-trade {
display: block;
animation-name: slide-in;
Expand Down Expand Up @@ -1304,6 +1334,8 @@ input.sheet-typeshow[value="pc"] ~ .sheet-type-pc,
input.sheet-typeshow[value="npc"] ~ .sheet-type-npc,
input.sheet-typeshow[value="animal"] ~ .sheet-type-animal,
input.sheet-typeshow[value="ship"] ~ .sheet-type-ship,
input.sheet-shiptypeshow[value="shipdetails"] ~ .sheet-type-shipdetails,
input.sheet-shiptypeshow[value="shipnotes"] ~ .sheet-type-shipnotes,
input.sheet-typeshow[value="vehicle"] ~ .sheet-type-vehicle,
input.sheet-tradetypeshow[value="passengers"] ~ .sheet-type-passengers,
input.sheet-tradetypeshow[value="freight"] ~ .sheet-type-freight,
Expand Down
Loading

0 comments on commit 9c3f46f

Please sign in to comment.