diff --git a/Cyberrats/Cyberrats.css b/Cyberrats/Cyberrats.css
index 5b80b99d85..805749ef17 100644
--- a/Cyberrats/Cyberrats.css
+++ b/Cyberrats/Cyberrats.css
@@ -1517,17 +1517,33 @@ input.baselocked:checked ~ input, input.baselocked:checked ~ textarea {
display: none;
}
- /* Toggle between briny input and reuglar */
+ /* Toggle between briny, space, and regular inputs */
/* This specificity trick saved us from having to create 16 hidden checkboxes. */
/* Also lost an hour becuase didn't realize JQuery is ONLY available in dev server but c'est la vie. */
+
+/* Hide core buildings when either briny or space is checked */
input.sheet-briny:checked ~ div.basesheet > div.mainbase > section > input.corebuildings {
display: none;
}
+input.sheet-space:checked ~ div.basesheet > div.mainbase > section > input.corebuildings {
+ display: none;
+}
+
+/* Hide briny buildings when briny is not checked OR when space is checked */
input.sheet-briny:not(:checked) ~ div.basesheet > div.mainbase > section > input.brinybuildings {
display: none;
}
+input.sheet-space:checked ~ div.basesheet > div.mainbase > section > input.brinybuildings {
+ display: none;
+}
+
+/* Hide space buildings when space is not checked */
+input.sheet-space:not(:checked) ~ div.basesheet > div.mainbase > section > input.spacebuildings {
+ display: none;
+}
+
/* Hide the Briny Bastards lieutenants page if we're not on BB mode */
input.sheet-briny:not(:checked) ~ .campaignsheet .lieutenants {
display: none;
diff --git a/Cyberrats/Cyberrats.html b/Cyberrats/Cyberrats.html
index f0f4acd9df..4c387bc4d0 100644
--- a/Cyberrats/Cyberrats.html
+++ b/Cyberrats/Cyberrats.html
@@ -767,6 +767,7 @@
+
@@ -779,6 +780,7 @@
+
@@ -791,6 +793,7 @@
+
@@ -803,6 +806,7 @@
+
@@ -815,6 +819,7 @@
+
@@ -827,6 +832,7 @@
+
@@ -839,6 +845,7 @@
+
@@ -851,6 +858,7 @@
+
@@ -863,6 +871,7 @@
+
@@ -875,6 +884,7 @@
+
@@ -887,6 +897,7 @@
+
@@ -899,6 +910,7 @@
+
@@ -911,6 +923,7 @@
+
@@ -923,6 +936,7 @@
+
@@ -935,6 +949,7 @@
+
@@ -947,6 +962,7 @@
+
@@ -2232,6 +2248,24 @@
+
+