diff options
Diffstat (limited to 'client/src/app/menu')
-rw-r--r-- | client/src/app/menu/menu.component.html | 32 | ||||
-rw-r--r-- | client/src/app/menu/menu.component.scss | 20 |
2 files changed, 26 insertions, 26 deletions
diff --git a/client/src/app/menu/menu.component.html b/client/src/app/menu/menu.component.html index f1c131184..32e48d6b6 100644 --- a/client/src/app/menu/menu.component.html +++ b/client/src/app/menu/menu.component.html | |||
@@ -149,29 +149,29 @@ | |||
149 | </a> | 149 | </a> |
150 | </div> | 150 | </div> |
151 | 151 | ||
152 | <div class="d-flex flex-column"> | 152 | <div class="bottom-links"> |
153 | <div class="footer-links"> | 153 | |
154 | <a i18n routerLink="/about/instance">Contact</a> | ||
155 | <a i18n routerLink="/about/instance">Terms of Service</a> | ||
156 | <a i18n routerLink="/about/instance" fragment="statistics">Stats</a> | ||
157 | <a (click)="openLanguageChooser()" class="c-hand"> | ||
158 | <span i18n>Interface: {{ language }}</span> | ||
159 | </a> | ||
160 | </div> | ||
161 | <div class="footer-links"> | 154 | <div class="footer-links"> |
162 | <a i18n href="https://joinpeertube.org/#you-are-a-video-maker" i18n-title title="Creator guide" target="_blank" rel="noopener noreferrer">Creators</a> | 155 | <div *ngIf="isLoggedIn === false"> |
163 | <a i18n href="https://docs.joinpeertube.org/#/contribute-getting-started" i18n-title title="PeerTube license" target="_blank" rel="noopener noreferrer">Contributors</a> | 156 | <span role="button" (click)="openLanguageChooser()" class="c-hand" i18n>Interface: {{ language }}</span> |
164 | <a i18n routerLink="/about/peertube" i18n-title title="More information about privacy within PeerTube">Privacy</a> | 157 | </div> |
165 | <a i18n href="https://joinpeertube.org/faq" i18n-title title="Frequently asked questions about PeerTube" target="_blank" rel="noopener noreferrer">FAQ</a> | 158 | |
166 | <a i18n href="https://docs.joinpeertube.org/api-rest-reference.html" i18n-title title="API documentation" target="_blank" rel="noopener noreferrer">API</a> | 159 | <div> |
167 | <a i18n href="https://joinpeertube.org/help" i18n-title title="Get help using PeerTube" target="_blank" rel="noopener noreferrer">Help</a> | 160 | <a i18n routerLink="/about/instance">Contact</a> |
168 | <a (click)="openHotkeysCheatSheet()" class="c-hand" i18n>Shortcuts</a> | 161 | <a i18n href="https://joinpeertube.org/help" i18n-title title="Get help using PeerTube" target="_blank" rel="noopener noreferrer">Help</a> |
162 | <a i18n href="https://joinpeertube.org/faq" i18n-title title="Frequently asked questions about PeerTube" target="_blank" rel="noopener noreferrer">FAQ</a> | ||
163 | <a i18n routerLink="/about/instance" fragment="statistics">Stats</a> | ||
164 | <a i18n href="https://docs.joinpeertube.org/api-rest-reference.html" i18n-title title="API documentation" target="_blank" rel="noopener noreferrer">API</a> | ||
165 | <a (click)="openHotkeysCheatSheet()" class="c-hand" i18n>Shortcuts</a> | ||
166 | </div> | ||
169 | </div> | 167 | </div> |
168 | |||
170 | <div class="footer-copyleft"> | 169 | <div class="footer-copyleft"> |
171 | <small class="d-inline" i18n-title title="powered by PeerTube - CopyLeft 2015-2020"> | 170 | <small class="d-inline" i18n-title title="powered by PeerTube - CopyLeft 2015-2020"> |
172 | <a href="https://joinpeertube.org" i18n-title title="PeerTube website" target="_blank" rel="noopener noreferrer" i18n> | 171 | <a href="https://joinpeertube.org" i18n-title title="PeerTube website" target="_blank" rel="noopener noreferrer" i18n> |
173 | powered by PeerTube | 172 | powered by PeerTube |
174 | </a> | 173 | </a> |
174 | |||
175 | <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" i18n-title title="PeerTube license" target="_blank" rel="noopener noreferrer"> | 175 | <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" i18n-title title="PeerTube license" target="_blank" rel="noopener noreferrer"> |
176 | <span aria-label="copyleft" class="d-inline-block" style="transform: rotateY(180deg)">©</span> 2015-2020 | 176 | <span aria-label="copyleft" class="d-inline-block" style="transform: rotateY(180deg)">©</span> 2015-2020 |
177 | </a> | 177 | </a> |
diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index a4b1ec000..9ae40493d 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss | |||
@@ -185,21 +185,21 @@ menu { | |||
185 | width: $menu-width; | 185 | width: $menu-width; |
186 | padding-bottom: 15px; | 186 | padding-bottom: 15px; |
187 | 187 | ||
188 | & > div:not(.panel-block) { | 188 | .bottom-links { |
189 | padding-left: $menu-lateral-padding; | 189 | display: flex; |
190 | padding-right: $menu-lateral-padding; | 190 | flex-direction: column; |
191 | row-gap: 1em; | 191 | padding: 0 $menu-lateral-padding; |
192 | } | 192 | } |
193 | 193 | ||
194 | $footer-links-base-opacity: .8; | 194 | $footer-links-base-opacity: .8; |
195 | 195 | ||
196 | .footer-links { | 196 | .footer-links { |
197 | display: inline-flex; | 197 | &, > div { |
198 | flex-wrap: wrap; | 198 | display: flex; |
199 | 199 | flex-wrap: wrap; | |
200 | & > a { | 200 | } |
201 | @include disable-default-a-behaviour; | ||
202 | 201 | ||
202 | a, span[role=button] { | ||
203 | display: inline-block; | 203 | display: inline-block; |
204 | text-decoration: none; | 204 | text-decoration: none; |
205 | color: var(--mainBackgroundColor); | 205 | color: var(--mainBackgroundColor); |
@@ -218,7 +218,7 @@ menu { | |||
218 | 218 | ||
219 | my-global-icon { | 219 | my-global-icon { |
220 | @include apply-svg-color(var(--mainBackgroundColor)); | 220 | @include apply-svg-color(var(--mainBackgroundColor)); |
221 | 221 | ||
222 | display: flex; | 222 | display: flex; |
223 | width: auto; | 223 | width: auto; |
224 | height: 90%; | 224 | height: 90%; |