X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2FApp.vue;h=4b062a65454852daa30efd97b7e37ab2fdf735bf;hb=5157ce0b8872417fbeecd736c9d1ae750b24acdc;hp=84f4b51ed6954f90d25da8e48868e0ffba30594a;hpb=41cb9b940084d6f56351a772f0340ebf0bc8d1bc;p=vchess.git diff --git a/client/src/App.vue b/client/src/App.vue index 84f4b51e..4b062a65 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -8,12 +8,12 @@ .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 // Menu (top of page): - // Left: hall, variants, mygames, forum (ext. link) + // Left: hall, variants, mygames // Right: usermenu, settings, flag nav label.drawer-toggle(for="drawerControl") input#drawerControl.drawer(type="checkbox") - #menuBar + #menuBar(@click="hideDrawer") label.drawer-close(for="drawerControl") #leftMenu router-link(to="/") @@ -22,11 +22,9 @@ | {{ st.tr["Variants"] }} router-link(to="/mygames") | {{ st.tr["My games"] }} - a(href="https://groups.google.com/forum/#!forum/vchess-club") - | {{ st.tr["Forum"] }} #rightMenu .clickable(onClick="doClick('modalUser')") - | {{ st.user.id > 0 ? "Update" : "Login" }} + | {{ st.user.id > 0 ? (st.user.name || "@nonymous") : "Login" }} .clickable(onClick="doClick('modalSettings')") | {{ st.tr["Settings"] }} .clickable#flagContainer(onClick="doClick('modalLang')") @@ -38,8 +36,8 @@ router-link.menuitem(to="/about") {{ st.tr["About"] }} p.clickable(onClick="doClick('modalContact')") | {{ st.tr["Contact"] }} - // TODO: add only the necessary icons to mini-css custom build - //script(src="//unpkg.com/feather-icons") + a.menuitem(href="https://forum.vchess.club") + | {{ st.tr["Forum"] }} @@ -131,13 +140,19 @@ nav width: 36px height: 27px -// TODO: drawer, until 600px wide OK (seemingly) -// After, zone where left and right just go on top of another -// Then, on narrow screen put everything on one line +@media screen and (max-width: 767px) + nav + border: none + [type="checkbox"].drawer+* right: -767px +#menuBar + label.drawer-close + top: 50px + footer + border: 1px solid #ddd //background-color: #000033 font-size: 1rem width: 100% @@ -148,12 +163,17 @@ footer justify-content: center & > .menuitem display: inline-block - margin: 0 10px 0 0 + margin: 0 10px &:link color: #2c3e50 - &:hover + &:visited, &:hover + color: #2c3e50 text-decoration: none & > p display: inline-block - margin: 0 0 0 10px + margin: 0 10px + +@media screen and (max-width: 767px) + footer + border: none