Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
noVNC
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
noVNC
Commits
a7eb596d
Commit
a7eb596d
authored
Sep 08, 2011
by
Chris Gordon
Committed by
Joel Martin
Sep 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated to use CSS3 gradients instead of images.
Fixed display bug with keyboard textbox.
parent
8e0f0088
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
14 deletions
+42
-14
base.css
include/base.css
+29
-13
black.css
include/black.css
+13
-1
No files found.
include/base.css
View file @
a7eb596d
...
...
@@ -3,10 +3,10 @@ body {
padding
:
0
;
font-family
:
Helvetica
;
/*Background image with light grey curve.*/
background-image
:
url('../images/screenbg.png')
;
background-color
:
#313131
;
background-color
:
#494949
;
background-repeat
:
no-repeat
;
background-position
:
right
bottom
;
height
:
100%
;
}
html
{
...
...
@@ -44,17 +44,19 @@ html {
/*Mobile buttons bar.*/
#noVNC-control-bar
{
position
:
fixed
;
background-attachment
:
initial
;
background-clip
:
initial
;
background-color
:
initial
;
background-image
:
url(../images/bg.png)
;
background-origin
:
initial
;
background-position
:
50%
0
;
/*
For Black:
background-position:50% 100%;
*/
background-repeat
:
repeat
no-repeat
;
background-color
:
#6d84a2
;
background-image
:
-webkit-gradient
(
linear
,
left
bottom
,
left
top
,
color-stop
(
0.5
,
rgb
(
109
,
132
,
162
)),
color-stop
(
1
,
rgb
(
140
,
157
,
179
))
);
background-image
:
-moz-linear-gradient
(
center
bottom
,
rgb
(
109
,
132
,
162
)
50%
,
rgb
(
140
,
157
,
179
)
100%
);
display
:
block
;
height
:
44px
;
left
:
0
;
...
...
@@ -135,6 +137,9 @@ html {
display
:
table
;
width
:
100%
;
height
:
100%
;
background-color
:
#313131
;
border-bottom-right-radius
:
800px
600px
;
/*border-top-left-radius: 800px 600px;*/
}
#VNC_canvas
{
background
:
#eee
;
...
...
@@ -246,4 +251,15 @@ html {
#noVNC_defaultScreen
span
{
color
:
green
;
}
#keyboardinput
{
width
:
0px
;
height
:
0px
;
background-color
:
#313131
;
border
:
0
;
}
.noVNC_status_warn
{
background-color
:
yellow
;
}
\ No newline at end of file
include/black.css
View file @
a7eb596d
#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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment