adjust css to match existing toolbar and toggle split/pane popup
This commit is contained in:
parent
7f8c5ea839
commit
75582f23f9
2 changed files with 17 additions and 9 deletions
|
|
@ -129,20 +129,28 @@ div {margin:0px;}
|
||||||
max-height: 3rem;
|
max-height: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.splitbutton {
|
#splitbutton {
|
||||||
position: absolute;
|
|
||||||
right: 1%;
|
|
||||||
top: 1%;
|
|
||||||
z-index: 1;
|
|
||||||
width: 2rem;
|
width: 2rem;
|
||||||
height: 2rem;
|
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
color: #a6a6a6;
|
color: #a6a6a6;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.splitbutton:hover {
|
#splitbutton:hover {
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#panebutton {
|
||||||
|
width: 2rem;
|
||||||
|
font-size: 2rem;
|
||||||
|
color: #a6a6a6;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#panebutton:hover {
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -496,7 +496,7 @@ function onSplitDialog() {
|
||||||
|
|
||||||
$("#splitclose").bind("click", onSplitDialogClose);
|
$("#splitclose").bind("click", onSplitDialogClose);
|
||||||
|
|
||||||
openPopup("#splitdialog");
|
togglePopup("#splitdialog");
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPaneControlDialogClose() {
|
function onPaneControlDialogClose() {
|
||||||
|
|
@ -530,7 +530,7 @@ function onPaneControlDialog() {
|
||||||
|
|
||||||
$("#paneclose").bind("click", onPaneControlDialogClose);
|
$("#paneclose").bind("click", onPaneControlDialogClose);
|
||||||
|
|
||||||
openPopup("#splitdialog");
|
togglePopup("#splitdialog");
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue