Refs #1065 New web theme: Fix Group Box top padding
@ -176,13 +176,13 @@ public class VGroupBox extends VPanel {
|
||||
DOM.setStyleAttribute(contentNode, "height", "0px");
|
||||
|
||||
borderPaddingHorizontal = contentNodeBorderPaddingsHor = contentNode.getOffsetWidth();
|
||||
borderPaddingVertical = contentNodeBorderPaddingsVer = contentNode.getOffsetHeight();
|
||||
borderPaddingVertical = contentNodeBorderPaddingsVer = contentNode.getOffsetHeight() / 2;
|
||||
|
||||
DOM.setStyleAttribute(contentNode, "width", "");
|
||||
DOM.setStyleAttribute(contentNode, "height", "");
|
||||
|
||||
borderPaddingHorizontal += (fieldset.getOffsetWidth() - contentNode.getOffsetWidth());
|
||||
borderPaddingVertical += (fieldset.getOffsetHeight() - contentNode.getOffsetHeight());
|
||||
borderPaddingVertical += (fieldset.getOffsetHeight() - contentNode.getOffsetHeight()) / 2;
|
||||
|
||||
DOM.setStyleAttribute(contentNode, "width", oldWidth);
|
||||
DOM.setStyleAttribute(contentNode, "height", oldHeight);
|
||||
|
@ -117,6 +117,8 @@ public class ApplicationConnection {
|
||||
|
||||
private int activeRequests = 0;
|
||||
|
||||
private VNotification errorNotification = null;
|
||||
|
||||
/** Parameters for this application connection loaded from the web-page */
|
||||
private ApplicationConfiguration configuration;
|
||||
|
||||
@ -691,16 +693,19 @@ public class ApplicationConnection {
|
||||
}
|
||||
|
||||
if (html.length() > 0) {
|
||||
|
||||
// Add error description
|
||||
html.append("<br/><p><I style=\"font-size:0.7em\">");
|
||||
html.append(details);
|
||||
html.append("</I></p>");
|
||||
|
||||
if (errorNotification != null)
|
||||
errorNotification.hide();
|
||||
|
||||
VNotification n = new VNotification(1000 * 60 * 45);
|
||||
n.addEventListener(new NotificationRedirect(url));
|
||||
n.show(html.toString(), VNotification.CENTERED_TOP,
|
||||
VNotification.STYLE_SYSTEM);
|
||||
n.show(html.toString(), VNotification.CENTERED_TOP, VNotification.STYLE_SYSTEM);
|
||||
|
||||
errorNotification = n;
|
||||
} else {
|
||||
redirect(url);
|
||||
}
|
||||
|
@ -8,8 +8,6 @@
|
||||
}
|
||||
|
||||
.group-box {
|
||||
background: #fff;
|
||||
padding-top: .5em; /*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> legend, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> overflow: hidden*/
|
||||
}
|
||||
|
||||
.group-box.group-box-nocollapsable.group-box-nocaption {
|
||||
@ -26,6 +24,10 @@
|
||||
padding: 5px 10px 10px;
|
||||
}
|
||||
|
||||
.group-box.group-box-nocaption > fieldset {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.group-box legend {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -1,6 +1,14 @@
|
||||
.v-menubar {
|
||||
}
|
||||
|
||||
.v-menubar:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.v-menubar menuitem:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.v-menubar table {
|
||||
font-family: verdana, tahoma, arial, geneva, helvetica, sans-serif;
|
||||
font-size: 11px;
|
||||
|
Before Width: | Height: | Size: 217 B |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 992 B |
Before Width: | Height: | Size: 486 B |
Before Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 200 B |
@ -33,9 +33,9 @@
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.v-splitpanel-horizontal .v-splitpanel-second-container {
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
/* IE specific styles */
|
||||
|
||||
|
@ -14,9 +14,8 @@
|
||||
.v-tabsheet-tabs {
|
||||
empty-cells: hide;
|
||||
border-collapse: collapse;
|
||||
margin:0;
|
||||
margin-top: 0;
|
||||
padding:0;
|
||||
margin: 0;
|
||||
padding:0;
|
||||
border:0;
|
||||
height: 29px;
|
||||
width: 100%;
|
||||
@ -24,7 +23,8 @@
|
||||
background: url(img/bg-top-tabseet.png) repeat-x bottom;
|
||||
}
|
||||
|
||||
.v-tabsheet-content .v-tabsheet-tabs {
|
||||
.v-tabsheet-content .v-tabsheet-tabs,
|
||||
.v-window-contents .v-tabsheet-tabs {
|
||||
background: transparent url(img/bg-middle-tabseet.png) repeat-x bottom;
|
||||
}
|
||||
|
||||
@ -42,7 +42,8 @@
|
||||
border-top: 0;
|
||||
background: transparent;
|
||||
}
|
||||
.v-tabsheet-content .v-tabsheet-spacertd div {
|
||||
.v-tabsheet-content .v-tabsheet-spacertd div,
|
||||
.v-window-contents .v-tabsheet-spacertd div {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
@ -90,11 +91,11 @@
|
||||
}
|
||||
.v-tabsheet-scrollerPrev-disabled,
|
||||
.v-tabsheet-scrollerNext-disabled {
|
||||
background-position: -12px 0px;
|
||||
background-position: -12px 0;
|
||||
}
|
||||
.v-tabsheet-scrollerPrev-disabled:hover,
|
||||
.v-tabsheet-scrollerNext-disabled:hover {
|
||||
background-position: -12px 0px;
|
||||
background-position: -12px 0;
|
||||
|
||||
}
|
||||
|
||||
@ -127,7 +128,10 @@
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.v-tabsheet-content .v-tabsheet-tabs .v-tabsheet-tabitem-selected, .v-tabsheet-content .v-tabsheet-tabs .v-tabsheet-tabitem-selected-first{
|
||||
.v-tabsheet-content .v-tabsheet-tabs .v-tabsheet-tabitem-selected,
|
||||
.v-window-contents .v-tabsheet-tabs .v-tabsheet-tabitem-selected,
|
||||
.v-tabsheet-content .v-tabsheet-tabs .v-tabsheet-tabitem-selected-first,
|
||||
.v-window-contents .v-tabsheet-tabs .v-tabsheet-tabitem-selected-first {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
@ -154,7 +158,9 @@
|
||||
}
|
||||
|
||||
.v-tabsheet-content .v-tabsheet-tabitem-selected-first,
|
||||
.v-tabsheet-content .v-tabsheet-tabitem-selected{
|
||||
.v-window-contents .v-tabsheet-tabitem-selected-first,
|
||||
.v-tabsheet-content .v-tabsheet-tabitem-selected,
|
||||
.v-window-contents .v-tabsheet-tabitem-selected {
|
||||
background: #F5F7F9;
|
||||
border-color: #D2E3EE;
|
||||
}
|
||||
@ -173,7 +179,7 @@
|
||||
|
||||
.v-tabsheet-tabitem-selected .v-caption {
|
||||
background: none;
|
||||
margin: 0 -1px 0 0px;
|
||||
margin: 0 -1px 0 0;
|
||||
padding: 2px 4px 5px 2px;
|
||||
overflow: visible;
|
||||
}
|
||||
@ -186,7 +192,8 @@
|
||||
color: #1E3146;
|
||||
}
|
||||
|
||||
.v-tabsheet-content .v-tabsheet-tabitem .v-caption .v-captiontext {
|
||||
.v-tabsheet-content .v-tabsheet-tabitem .v-caption .v-captiontext,
|
||||
.v-window-contents .v-tabsheet-tabitem .v-caption .v-captiontext {
|
||||
color:#1E3146;
|
||||
}
|
||||
|
||||
@ -219,7 +226,8 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.v-tabsheet-content .v-tabsheet-content{
|
||||
.v-tabsheet-content .v-tabsheet-content,
|
||||
.v-window-contents .v-tabsheet-content {
|
||||
border-color: #D2E3EE;
|
||||
background: #F5F7F9;
|
||||
}
|
||||
@ -231,7 +239,7 @@
|
||||
.v-tabsheet-deco {
|
||||
height: 1px;
|
||||
background: none; /*transparent url(img/tab-sep.gif) repeat-x right top;*/
|
||||
margin-left: 0px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.v-tabsheet-deco:before {
|
||||
|
Before Width: | Height: | Size: 267 B After Width: | Height: | Size: 324 B |
Before Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 18 KiB |
@ -12,7 +12,7 @@
|
||||
.v-window-outerheader {
|
||||
margin-left: 0;
|
||||
padding: 0 0 0 5px;
|
||||
background: url(img/win-header-left.png) no-repeat left top;
|
||||
background: #2b4666 no-repeat left top;
|
||||
cursor: move;
|
||||
/*
|
||||
border: 0 solid #131415;
|
||||
@ -25,7 +25,7 @@
|
||||
padding: 6px 5px 5px 7px;
|
||||
font-weight: bold;
|
||||
letter-spacing: 0;
|
||||
background: url(img/win-header-right-wide.png) no-repeat right top;
|
||||
background: #2b4666 no-repeat right top;
|
||||
color: #ffffff;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
@ -42,7 +42,7 @@
|
||||
}
|
||||
|
||||
.v-window-contents {
|
||||
background: #fff;
|
||||
background: url(img/win-body-bg.png) repeat-x left top #fff;
|
||||
color: #1E3146;
|
||||
padding: 8px;
|
||||
font-size: 12px;
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
.group-box {
|
||||
background: #fff;
|
||||
padding-top: .5em; /*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> legend, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> overflow: hidden*/
|
||||
/*padding-top: .5em;*/
|
||||
}
|
||||
|
||||
.group-box.group-box-nocollapsable.group-box-nocaption {
|
||||
|