diff options
author | cglatot <[email protected]> | 2019-11-28 19:10:30 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-28 19:10:30 +0000 |
commit | 7a8cbe65c1716545d9f8dc5727b124071edf4516 (patch) | |
tree | 4eed80c12e4979c7f0a68ab82ba15f1c01f6f56b /index.html | |
parent | 71ede15fbfb90f4daa8881484a626e6c8b447e7d (diff) | |
download | pasta-7a8cbe65c1716545d9f8dc5727b124071edf4516.tar.gz pasta-7a8cbe65c1716545d9f8dc5727b124071edf4516.zip |
Update tab names and spacing
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -75,22 +75,22 @@ <!-- TABS --> <ul class="nav nav-tabs" id="myTab" role="tablist"> <li class="nav-item"> - <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a> + <a class="nav-link active" id="authentication-tab" data-toggle="tab" href="#authentication" role="tab" aria-controls="authentication" aria-selected="true">Authentication</a> </li> <li class="nav-item"> - <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a> + <a class="nav-link" id="series-tab" data-toggle="tab" href="#series" role="tab" aria-controls="series" aria-selected="false">Series</a> </li> <li class="nav-item"> - <a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a> + <a class="nav-link" id="episodes-tab" data-toggle="tab" href="#episodes" role="tab" aria-controls="episodes" aria-selected="false">Episodes</a> </li> </ul> <!-- / TABS --> <!-- TAB CONTENT --> <div class="tab-content" id="myTabContent"> - <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab"> + <div class="tab-pane fade show active" id="authentication" role="tabpanel" aria-labelledby="authentication-tab"> <!-- PLEX LOGIN FORM --> - <div class="row"> + <div class="row mt-3"> <div class="col"> <div class="form-group"> <label for="plexUrl">Plex URL</label> @@ -127,9 +127,9 @@ </div> <!-- / LIBRARIES TABLE --> </div> - <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab"> + <div class="tab-pane fade" id="series" role="tabpanel" aria-labelledby="series-tab"> <!-- ALPHABET LIBRARY --> - <div class="row mt-5"> + <div class="row mt-3"> <div class="col text-center"> <div id="alphabetGroup" class="btn-group flex-wrap" role="group" aria-label="TV Library First Letter"> <!-- set class "disabled" for buttons which are not active --> @@ -184,9 +184,9 @@ </div> <!-- / SHOWS TABLE --> </div> - <div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab"> + <div class="tab-pane fade" id="episodes" role="tabpanel" aria-labelledby="episodes-tab"> <!-- SEASONS TABLE --> - <div class="row mt-5"> + <div class="row mt-3"> <div class="col"> <table id="seasonsTable" class="table table-hover"> <thead> |