Improve download modal input style
[oweals/peertube.git] / client / src / app / core / hotkeys / hotkeys.component.html
1 <div class="cfp-hotkeys-container fade" [ngClass]="{'in': helpVisible}">
2   <div class="cfp-hotkeys">
3     <h4 class="cfp-hotkeys-title">{{ title }}</h4>
4     <div class="cfp-hotkeys-table">
5       <table>
6         <tbody>
7           <tr *ngFor="let hotkey of hotkeys">
8             <td class="cfp-hotkeys-keys">
9               <span *ngFor="let key of hotkey.formatted" class="cfp-hotkeys-key">{{ key }}</span>
10             </td>
11             <td class="cfp-hotkeys-text">{{ hotkey.description }}</td>
12           </tr>
13         </tbody>
14       </table>
15     </div>
16     <div class="cfp-hotkeys-close" (click)="toggleCheatSheet()">&#215;</div>
17   </div>
18 </div>