Updated to use CSS3 gradients instead of images.

Fixed display bug with keyboard textbox.
This commit is contained in:
Chris Gordon
2011-09-08 11:27:08 +10:00
committed by Joel Martin
parent 8e0f008841
commit a7eb596d89
2 changed files with 42 additions and 14 deletions

View File

@@ -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 {