refactoring

This commit is contained in:
Maxim Devaev 2021-10-06 02:55:13 +03:00
parent 463237229d
commit 67b846ea55
3 changed files with 5 additions and 6 deletions

View File

@ -73,7 +73,7 @@
<div id="apps-box"> <div id="apps-box">
<h4>Loading ...</h4> <h4>Loading ...</h4>
</div> </div>
<div class="keyboard-warning"> <div id="app-keyboard-warning">
<hr> <hr>
<p class="text"> <p class="text">
Please note that when you are working with a KVM session or another application that captures the keyboard, Please note that when you are working with a KVM session or another application that captures the keyboard,
@ -92,4 +92,4 @@
</div> </div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -27,12 +27,12 @@ block start
div(id="apps-box") div(id="apps-box")
h4 Loading ... h4 Loading ...
div(class="keyboard-warning") div(id="app-keyboard-warning")
hr hr
p(class="text") p(class="text")
| Please note that when you are working with a KVM session or another application that captures the keyboard, | Please note that when you are working with a KVM session or another application that captures the keyboard,
| you can't use some keyboard shortcuts such as Ctrl+Alt+Del (which will be caught by your OS) or Ctrl+W (caught by your browser). | you can't use some keyboard shortcuts such as Ctrl+Alt+Del (which will be caught by your OS) or Ctrl+W (caught by your browser).
p(class="text") p(class="text")
| To override this limitation you can use #[a(target="_blank" href="https://google.com/chrome") Google Chrome] | To override this limitation you can use #[a(target="_blank" href="https://google.com/chrome") Google Chrome]
| or #[a(target="_blank" href="https://chromium.org/Home") Chromium] in application mode. | or #[a(target="_blank" href="https://chromium.org/Home") Chromium] in application mode.
div(id="app-text" class="code") div(id="app-text" class="code")

View File

@ -91,8 +91,7 @@ tr.server {
} }
@media all and (display-mode: standalone) { @media all and (display-mode: standalone) {
div.keyboard-warning { div#app-keyboard-warning {
display: none; display: none;
} }
} }