041d13f6a7
Clarify in LICENSE.txt that the noVNC core library is the part that is LGPLv3 licensed. The HTML, CSS, images and fonts are separate from the core library and can be modified and distributed with the noVNC core but under their own license conditions. HTML and CSS: 2-Clause BSD Fonts: SIL OFL 1.1 Images: CC BY SA 3.0 In other words, you can modify the layout and appearance of of noVNC to integrate with an existing or new web site or application without having to publish the source for those modifications under the LGPLv3. However, use of and modification of the noVNC core library (i.e. the core Javascript that makes up noVNC) must still be according to the LGPLv3. Chris Gordon was the other contributor to the HTML, CSS, and images included with noVNC and gave permission for this license clarification on June 23, 2012.
34 lines
638 B
CSS
34 lines
638 B
CSS
/*
|
|
* noVNC base CSS
|
|
* Copyright (C) 2012 Joel Martin
|
|
* noVNC is licensed under the LGPL-3 (see LICENSE.txt)
|
|
* This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
|
|
*/
|
|
|
|
#noVNC-control-bar {
|
|
background-color:#04073d;
|
|
background-image: -webkit-gradient(
|
|
linear,
|
|
left bottom,
|
|
left top,
|
|
color-stop(0.54, rgb(10,15,79)),
|
|
color-stop(0.5, rgb(4,7,61))
|
|
);
|
|
background-image: -moz-linear-gradient(
|
|
center bottom,
|
|
rgb(10,15,79) 54%,
|
|
rgb(4,7,61) 50%
|
|
);
|
|
}
|
|
|
|
.triangle-right {
|
|
border:2px solid #fff;
|
|
background:#04073d;
|
|
color:#fff;
|
|
}
|
|
|
|
#keyboardinput {
|
|
background-color:#04073d;
|
|
}
|
|
|