diff --git a/html/management.html b/html/management.html index 4104d41..e408a44 100644 --- a/html/management.html +++ b/html/management.html @@ -99,6 +99,28 @@ display: none; width: 100%; } + + #SubTabContent.tab-content { + display: flex; + } + + #SubTabContent.tab-content > .tab-pane { + display: block; /* undo "display: none;" */ + visibility: hidden; + margin-right: -100%; + width: 100%; + } + + #SubTabContent.tab-content > .active { + visibility: visible; + } + + /* IOS display fix */ + select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + }
@@ -161,10 +183,23 @@