| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- * {
- touch-action: none;
- }
- .virtual-keyboard-window {
- user-select: none;
- position: fixed;
- top: 0;
- width: 800px;
- border-radius: 10px;
- box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
- border: 1px solid #ddd;
- background: #ececec;
- z-index: 999;
- overflow: hidden;
- }
- .virtual-keyboard-window .window-content {
- height: 100%;
- }
- .hg-theme-default .hg-button {
- height: 45px;
- }
- .virtual-keyboard-window .window-top {
- cursor: move;
- text-align: center;
- height: 20px;
- border-top-right-radius: 5px;
- border-top-left-radius: 5px;
- padding: 5px;
- background-color: #ddd;
- color: #333;
- }
- .virtual-keyboard-window .btn-close {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 0;
- width: 50px;
- height: 30px;
- box-sizing: border-box;
- padding: 5px 15px;
- border: none;
- background: none;
- cursor: pointer;
- }
- .keyboard-toggle,
- .logs-toggle {
- width: 20px;
- height: 20px;
- padding: 5px;
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- opacity: 0.5;
- box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
- color: #333;
- border-radius: 4px;
- border: 1px solid #ddd;
- z-index: 999;
- cursor: pointer;
- }
- .logs-window {
- position: absolute;
- top: 0;
- right: 0;
- height: 400px;
- background: rgba(0, 0, 0, 0.3);
- width: 50%;
- color: white;
- padding: 20px;
- overflow: auto;
- display: none;
- }
|