diff options
author | Devaev Maxim <[email protected]> | 2018-07-25 10:34:44 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-07-25 10:34:44 +0300 |
commit | 922e303c7045e2b1da8116611e53efb8e8d77e08 (patch) | |
tree | 68d98aa1504a69d548a431073a9763f2a67fbb56 /kvmd/web/css/msd.css | |
parent | 22c060956e37a9cb1733a3e7f808048779a5a72a (diff) |
virtual keyboard prototype
Diffstat (limited to 'kvmd/web/css/msd.css')
-rw-r--r-- | kvmd/web/css/msd.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/kvmd/web/css/msd.css b/kvmd/web/css/msd.css new file mode 100644 index 00000000..ee9fb147 --- /dev/null +++ b/kvmd/web/css/msd.css @@ -0,0 +1,45 @@ +div#msd-menu { + width: 450px; +} + +table#msd-info { + -webkit-user-select: text; + -moz-user-select: text; + user-select: text; + border-spacing: 5px; + margin: 0 10px 0 10px; + font-size: 12px; +} +table#msd-info +td#msd-status, +td#msd-current-image-name, +td#msd-current-image-size, +td#msd-storage-size, +td#msd-new-image-name, +td#msd-new-image-size { + font-weight: bold; + max-width: 310px; + overflow: hidden; +} + +div#msd-progress { + background-color: var(--bg-color-progress); + height: 1.5em; + width: 100%; + position: relative; +} +div#msd-progress:before { + color: var(--fg-color-intensive); + content: attr(data-label); + font-size: 0.8em; + position: absolute; + text-align: center; + top: 4px; + left: 0; + right: 0; +} +div#msd-progress span#msd-progress-value { + background-color: var(--fg-color-progress); + display: inline-block; + height: 100%; +} |