Fixed few bugs and changed the node create/edit view to use the dialog

(tabbed) UI.

Also, fixed few bugs pointed by Dave:
* Open the URL in separate browser tab/window.
* Fixed few CSS changes for look and feel for the dialog view
* Some of the panels were not listed in the context menu for the
  wcDocker.
This commit is contained in:
Ashesh Vashi
2015-08-11 19:19:27 +05:30
parent b0b964dd55
commit 798398dba5
7 changed files with 49 additions and 29 deletions

View File

@@ -188,11 +188,27 @@ iframe {
}
.obj_properties .backform-tab {
width: 100%;
position: absolute;
margin: 0px 0px 80px;
padding: 0px;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
.obj_properties .backform-tab > .nav-tabs {
background-color: #DADADA;
}
.obj_properties .backform-tab > .tab-content {
padding: 0px;
overflow-y: auto;
max-height: 100%;
}
.backform-tab .tab-pane {
padding: 1em;
padding: 7px;
}
.form-group fieldset .caret {

View File

@@ -37,8 +37,8 @@
.wcFrameButton {
width: 20px;
height: 20px;
border: 2px solid #eeeeee;
background-color: #eeeeee;
border: 2px solid #8A0D0D;
background-color: #A56D6D;
font-size: 12px;
}
@@ -47,13 +47,11 @@
}
.wcFrameButton:hover {
border: 2px solid #cccccc;
background-color: #cccccc;
border: 2px solid #CCCCCC;
}
.wcFrameButton:active {
border: 2px solid #dddddd;
background-color: #dddddd;
border: 2px solid #DDDDDD;
}
.wcFrameButtonToggled, .wcFrameButtonToggled:hover {
@@ -133,7 +131,7 @@
}
.wcFloating .wcPanelTabActive {
background-color: #8A8A8A;
background-color: rgb(33, 81, 128);
margin-top: -2px;
font-weight: bold;
color: white;
@@ -248,9 +246,15 @@
.wcFloating .wcFrameTitleBar {
border-bottom: 2px solid darkgray;
background-color: #8A8A8A;
background-color: rgb(33, 81, 128);
}
.wcFloating .wcFrameTitleBar:hover {
background-color: #AAAAAA;
}
.wcFrameButtonBar {
top: 7px;
right: 5px;
color: white;
}