mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
559 B
CSS
22 lines
559 B
CSS
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
|
||
|
#virtual-cursor-box {
|
||
|
position: fixed;
|
||
|
border: 1px solid orange;
|
||
|
pointer-events: none;
|
||
|
display: none;
|
||
|
border-radius: 2px;
|
||
|
box-shadow: 1px 1px 1px #444;
|
||
|
}
|
||
|
|
||
|
#virtual-cursor-inset {
|
||
|
border-radius: 1px;
|
||
|
box-shadow: inset 1px 1px 1px #444;
|
||
|
display: block;
|
||
|
box-sizing: border-box;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
pointer-events: none;
|
||
|
}
|