From 4859110cf2664210d82a0540de196dad43c006e3 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 19 Oct 2020 09:58:41 -0400
Subject: [PATCH] css for tanks

---
 src/facilities/incubator/incubator.css        | 7 +++++++
 src/facilities/incubator/incubatorInteract.js | 7 ++++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/src/facilities/incubator/incubator.css b/src/facilities/incubator/incubator.css
index 544f2080b53..6099fd74697 100644
--- a/src/facilities/incubator/incubator.css
+++ b/src/facilities/incubator/incubator.css
@@ -1,3 +1,10 @@
 .incubator-underscore {
 	border-bottom: 1px solid;
 }
+
+.incubator-tank {
+	border-bottom: 2px solid cyan;
+	border-top: 2px solid cyan;
+	border-radius: 15px;
+	padding: 0.5em;
+}
diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js
index dca09c6a757..86f3908227a 100644
--- a/src/facilities/incubator/incubatorInteract.js
+++ b/src/facilities/incubator/incubatorInteract.js
@@ -22,7 +22,7 @@ App.UI.incubator = function() {
 
 	const tabCaptions = {
 		mothers: 'Mothers',
-		children: 'Children',
+		tanks: 'Tanks',
 		settings: 'Settings'
 	};
 
@@ -31,12 +31,12 @@ App.UI.incubator = function() {
 	const tabBar = App.UI.DOM.appendNewElement("div", el, '', "tab-bar");
 	tabBar.append(
 		App.UI.tabBar.tabButtonDOM('mothers', tabCaptions.mothers),
-		App.UI.tabBar.tabButtonDOM('children', tabCaptions.children),
+		App.UI.tabBar.tabButtonDOM('tanks', tabCaptions.tanks),
 		App.UI.tabBar.tabButtonDOM('settings', tabCaptions.settings),
 	);
 
 	el.append(App.UI.tabBar.makeTabDOM('mothers', mothers()));
-	el.append(App.UI.tabBar.makeTabDOM('children', tankBabies()));
+	el.append(App.UI.tabBar.makeTabDOM('tanks', tankBabies()));
 	el.append(App.UI.tabBar.makeTabDOM('settings', tankSettings()));
 
 	return el;
@@ -1106,6 +1106,7 @@ App.UI.incubator = function() {
 
 			for (let i = 0; i < V.incubatorSlaves; i++) {
 				const p = document.createElement("p");
+				p.classList.add("incubator-tank");
 				let r = [];
 				const {
 					He, His,
-- 
GitLab