mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-31 17:39:39 +00:00
Updated to use CSS3 gradients instead of images.
Fixed display bug with keyboard textbox.
This commit is contained in:
committed by
Joel Martin
parent
8e0f008841
commit
a7eb596d89
@@ -1,5 +1,17 @@
|
||||
#noVNC-control-bar {
|
||||
background-position:50% 100%;
|
||||
background-color:#000;
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.5, rgb(0,0,0)),
|
||||
color-stop(0.5, rgb(20,20,20))
|
||||
);
|
||||
background-image: -moz-linear-gradient(
|
||||
center bottom,
|
||||
rgb(0,0,0) 50%,
|
||||
rgb(20,20,20) 50%
|
||||
);
|
||||
}
|
||||
|
||||
.triangle-right {
|
||||
|
||||
Reference in New Issue
Block a user