mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 15:11:22 +00:00
GUAC-955: OSK should not cover visible display area.
This commit is contained in:
@@ -23,9 +23,6 @@
|
||||
.keyboard-container {
|
||||
text-align: center;
|
||||
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -34,10 +31,5 @@
|
||||
background: #222;
|
||||
opacity: 0.85;
|
||||
|
||||
visibility: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.keyboard-container.shown {
|
||||
visibility: visible;
|
||||
}
|
||||
|
@@ -43,14 +43,15 @@
|
||||
<guac-text-input needs-focus="showTextInput"></guac-text-input>
|
||||
</div>
|
||||
|
||||
<!-- On-screen keyboard -->
|
||||
<div class="keyboard-container" ng-show="showOSK">
|
||||
<guac-osk layout="'CLIENT.URL_OSK_LAYOUT' | translate"/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- On-screen keyboard -->
|
||||
<div class="keyboard-container" ng-class="{shown: showOSK}">
|
||||
<guac-osk layout="'CLIENT.URL_OSK_LAYOUT' | translate"/>
|
||||
</div>
|
||||
|
||||
</guac-viewport>
|
||||
|
||||
|
Reference in New Issue
Block a user