Skip to content

Commit

Permalink
Merge pull request #12365 from eGellman89/master
Browse files Browse the repository at this point in the history
Table Top Defined added new features
  • Loading branch information
NorWhal authored Dec 11, 2023
2 parents 824e5ad + 8a477a1 commit bdbc849
Show file tree
Hide file tree
Showing 2 changed files with 584 additions and 156 deletions.
25 changes: 20 additions & 5 deletions Table Top Defined/Table_Top_Defined.css
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,12 @@

.ggrid{
display: grid;
grid-template-columns: repeat(auto-fit, auto);
grid-auto-columns: auto;
}

.ggridc{
display: grid;
grid-template-rows: repeat(auto-fit, auto);
grid-auto-rows: auto;
}

/*End General Grid -- End*/
Expand Down Expand Up @@ -920,6 +920,7 @@ input.sptoggle[value="1"] ~ .sheet-repeating-fields{

.minimizable-repeat-spells .spells_description{
width: 388px;
overflow: clip;
background-color: #FFFFFF;
color: #000000;
border: 1px solid black;
Expand All @@ -929,11 +930,12 @@ input.sptoggle[value="1"] ~ .sheet-repeating-fields{
display: none;
grid-template-columns: 50% 50%;
padding: 0;
grid-template-rows: auto auto;
grid-template-rows: auto auto auto;
gap: 1px 1px;
grid-template-areas:
"Details-1 Details-2"
"Description Description";
"Description Description"
"Advanced Advanced";
}

.minimizable-repeat-spells .spells-toggle[value="1"] ~ div.spells_description{
Expand Down Expand Up @@ -1021,6 +1023,14 @@ input.sptoggle[value="1"] ~ .sheet-repeating-fields{
padding: 0;
}

.minimizable-repeat-spells .spells_description .Advanced {
grid-area: Advanced;
}

.minimizable-repeat-spells .spells_description .spells-advanced-toggle[value="1"] ~ div.grr2.ggridc{
display: none;
}

/*</editor-fold*/

/*</editor-fold>*/
Expand Down Expand Up @@ -1307,7 +1317,7 @@ input.sptoggle[value="1"] ~ .sheet-repeating-fields{
}

.ui-dialog .charsheet .sheet-gear .weapon-name{
background-color: #323232;
background-color: #000000;
color: #FFFFFF;
text-align: center;
font-weight: bold;
Expand Down Expand Up @@ -1335,6 +1345,11 @@ input.sptoggle[value="1"] ~ .sheet-repeating-fields{
display: none;
}

.sheet-gear .ggridc .grr1.ggrid .advancedweapon-toggle[value="0"] ~ .advancedweapon-shrink{
display: none;
}


.sheet-gear .grr7{
grid-template-columns: repeat(2,1fr);
}
Expand Down
Loading

0 comments on commit bdbc849

Please sign in to comment.