Minor modification.
This commit is contained in:
parent
b0ceb14bd8
commit
dd218fd8cf
@ -45,7 +45,7 @@ div.rightbuttons
|
|||||||
float : right;
|
float : right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo
|
div.logo
|
||||||
{
|
{
|
||||||
color : #ffffff;
|
color : #ffffff;
|
||||||
background : linear-gradient(#0095c6, #006d91) #008ab8;
|
background : linear-gradient(#0095c6, #006d91) #008ab8;
|
||||||
@ -54,7 +54,7 @@ div.rightbuttons
|
|||||||
text-decoration : none;
|
text-decoration : none;
|
||||||
width : 240px;
|
width : 240px;
|
||||||
padding : 5px 0px;
|
padding : 5px 0px;
|
||||||
margin : 8px;
|
margin : 6px;
|
||||||
border-radius : 5px;
|
border-radius : 5px;
|
||||||
box-shadow: 0px 0px 5px #000000;
|
box-shadow: 0px 0px 5px #000000;
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
@ -67,16 +67,42 @@ span.version
|
|||||||
font-size : 10px;
|
font-size : 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.topbutton
|
||||||
|
{
|
||||||
|
cursor : pointer;
|
||||||
|
display : block;
|
||||||
|
float : left;
|
||||||
|
}
|
||||||
|
|
||||||
img.topbutton
|
img.topbutton
|
||||||
{
|
{
|
||||||
width : 25px;
|
width : 25px;
|
||||||
height : 25px;
|
height : 25px;
|
||||||
padding : 8px 4px;
|
padding : 7px 4px;
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
display : block;
|
display : block;
|
||||||
float : left;
|
float : left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.extbutton
|
||||||
|
{
|
||||||
|
color : #000000;
|
||||||
|
background : linear-gradient(#dddddd, #bbbbbb) #cccccc;
|
||||||
|
border-radius : 5px;
|
||||||
|
padding : 5px 10px;
|
||||||
|
margin : 6px;
|
||||||
|
cursor : pointer;
|
||||||
|
display : block;
|
||||||
|
float : left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.extbutton img
|
||||||
|
{
|
||||||
|
margin-right : 5px;
|
||||||
|
display : block;
|
||||||
|
float : left;
|
||||||
|
}
|
||||||
|
|
||||||
#left
|
#left
|
||||||
{
|
{
|
||||||
color : #222222;
|
color : #222222;
|
||||||
|
|||||||
@ -157,7 +157,7 @@ ImporterButtons = function (parent)
|
|||||||
ImporterButtons.prototype.AddLogo = function (title, onClick)
|
ImporterButtons.prototype.AddLogo = function (title, onClick)
|
||||||
{
|
{
|
||||||
var logoDiv = document.createElement ('div');
|
var logoDiv = document.createElement ('div');
|
||||||
logoDiv.id = 'logo';
|
logoDiv.className = 'logo';
|
||||||
logoDiv.innerHTML = title;
|
logoDiv.innerHTML = title;
|
||||||
logoDiv.onclick = onClick;
|
logoDiv.onclick = onClick;
|
||||||
this.buttonsDiv.appendChild (logoDiv);
|
this.buttonsDiv.appendChild (logoDiv);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user