summaryrefslogtreecommitdiffstats
path: root/WebContent/ITMILL/themes/base/window/window.css
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/ITMILL/themes/base/window/window.css')
-rw-r--r--WebContent/ITMILL/themes/base/window/window.css115
1 files changed, 38 insertions, 77 deletions
diff --git a/WebContent/ITMILL/themes/base/window/window.css b/WebContent/ITMILL/themes/base/window/window.css
index 41b7f54501..ba57a7d633 100644
--- a/WebContent/ITMILL/themes/base/window/window.css
+++ b/WebContent/ITMILL/themes/base/window/window.css
@@ -1,25 +1,24 @@
.i-window {
background: #fff;
}
-
.i-window-outerheader {
cursor: move;
+ padding: 0.3em 1em;
+ height: 1em;
}
-
-.i-window-header {
+div.i-window-header {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
+ font-weight: bold;
+ padding: 0;
}
-
.i-ie6 .i-window-header {
width: 100%;
}
-
.i-window-header .i-icon {
vertical-align: middle; /* This has to be 'middle', not 'bottom', to allow larger icons than 16px */
}
-
/* Partial fix for bug #1106 */
/* Target Firefox 2 (somehow this will force almost all window borders on top of a Flash object) */
.i-window-contents, x:-moz-any-link {
@@ -29,13 +28,10 @@
.i-window-contents, x:-moz-any-link, x:default {
overflow: visible;
}
-
.i-window-footer {
- height: 10px;
+ overflow: hidden;
}
-
.i-window-resizebox {
- position: relative; /* Needed to position the element over ScrollPanel, which is also relatively positioned */
display: inline; /* fix IE6 double float margin bug */
float: right;
width: 10px;
@@ -44,140 +40,105 @@
background: #ddd;
overflow: hidden;
}
-
.i-window-resizebox-disabled {
cursor: default;
- background: transparent;
+ display: none;
}
-
.i-window-closebox {
position: absolute;
top: 0;
right: 0;
- width: 12px;
- height: 12px;
+ width: 1em;
+ height: 1em;
background: red;
cursor: pointer;
overflow: hidden;
}
-
.i-window-modalitycurtain {
top: 0;
left: 0;
- background: white;
+ background: #999;
opacity: 0.5;
position: fixed;
width: 100%;
height: 100%;
filter: alpha(opacity=50);
}
-
/* IE6 workaround for position:fixed; */
-* html .i-window-modalitycurtain {
+.i-ie6 .i-window-modalitycurtain {
position: absolute;
top: expression(document.documentElement.scrollTop + "px");
}
-
-/* IE specific styles */
-
-* html .i-window {
- width: 0; /* min-size for IE6 */
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+/* min-width for IE6 */
+.i-ie6 .i-window {
+ width: 0; /* */
+}
/* Shadow for window */
-
.i-shadow-window {
position: absolute;
}
-
.i-shadow-window .top-left {
position: absolute; overflow: hidden;
- top: -13px; left: -20px;
- width: 39px; height: 39px;
+ top: -10px; left: -15px;
+ width: 28px; height: 28px;
background: transparent url(img/shadow/top-left.png);
}
-
.i-shadow-window .top {
position: absolute; overflow: hidden;
- top: -13px; left: 19px;
- height: 39px;
- right: 19px;
+ top: -10px; left: 13px;
+ height: 28px;
+ right: 13px;
background: transparent url(img/shadow/top.png);
}
-
.i-shadow-window .top-right {
position: absolute; overflow: hidden;
- top: -13px; right: -20px;
- width: 39px; height: 39px;
+ top: -10px; right: -15px;
+ width: 28px; height: 28px;
background: transparent url(img/shadow/top-right.png);
}
-
.i-shadow-window .left {
position: absolute; overflow: hidden;
- top: 26px; left: -20px;
- width: 39px;
- bottom: 12px;
+ top: 18px; left: -15px;
+ width: 28px;
+ bottom: 10px;
background: transparent url(img/shadow/left.png);
}
-
.i-shadow-window .center {
position: absolute; overflow: hidden;
- top: 26px; left: 19px;
- bottom: 12px; right: 19px;
+ top: 18px; left: 13px;
+ bottom: 10px; right: 13px;
background: transparent url(img/shadow/center.png);
}
-
.i-shadow-window .right {
position: absolute; overflow: hidden;
- top: 26px; right: -20px;
- width: 39px;
- bottom: 12px;
+ top: 18px; right: -15px;
+ width: 28px;
+ bottom: 10px;
background: transparent url(img/shadow/right.png);
}
-
.i-shadow-window .bottom-left {
position: absolute; overflow: hidden;
- bottom: -27px; left: -20px;
- width: 39px; height: 39px;
+ bottom: -18px; left: -15px;
+ width: 28px; height: 28px;
background: transparent url(img/shadow/bottom-left.png);
}
-
.i-shadow-window .bottom {
position: absolute; overflow: hidden;
- bottom: -27px; left: 19px;
- right: 19px; height: 39px;
+ bottom: -18px; left: 13px;
+ right: 13px; height: 28px;
background: transparent url(img/shadow/bottom.png);
}
-
.i-shadow-window .bottom-right {
position: absolute; overflow: hidden;
- bottom: -27px; right: -20px;
- width: 39px; height: 39px;
+ bottom: -18px; right: -15px;
+ width: 28px; height: 28px;
background: transparent url(img/shadow/bottom-right.png);
}
-
-
/* For IE6 (no transparent png's, we use a blur filter) */
-
-* html .i-shadow-window * {
+.i-ie6 .i-shadow-window * {
display: none;
}
-
-* html .i-shadow-window {
+.i-ie6 .i-shadow-window {
background: #000;
filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5) alpha(opacity=20);
margin-top: 2px;