2008-07-09 20:07:13 +07:00
|
|
|
<%@ page contentType="text/css;charset=UTF-8" %>
|
|
|
|
<%@ taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c" %>
|
|
|
|
|
|
|
|
html,body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #D4E3F4;
|
|
|
|
}
|
|
|
|
|
2009-05-14 15:38:37 +07:00
|
|
|
<%-- login --%>
|
|
|
|
.login-window {
|
|
|
|
background-color: #E5E5E5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-box-body {
|
|
|
|
width: 660px;
|
|
|
|
height: 200px;
|
|
|
|
background-image: url(../images/login-box-bg.png);
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-color: transparent;
|
|
|
|
z-index: 1;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-box-header {
|
|
|
|
background-image: url(../images/login-box-header.png);
|
|
|
|
background-color: transparent;
|
|
|
|
z-index: 2;
|
|
|
|
height: 54px;
|
|
|
|
width: 660px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-box-header-txt {
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
position: relative;
|
|
|
|
top: 30px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
2009-05-14 15:38:37 +07:00
|
|
|
.login-box-header-logo {
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-box-footer {
|
|
|
|
background-image: url(../images/login-box-footer.png);
|
2009-05-16 00:39:50 +07:00
|
|
|
background-position: top right;
|
2009-05-14 15:38:37 +07:00
|
|
|
background-color: transparent;
|
|
|
|
z-index: 2;
|
|
|
|
height: 110px;
|
|
|
|
width: 660px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-box-footer-pnl {
|
|
|
|
width: 604px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-label {
|
|
|
|
color: black;
|
|
|
|
text-align: right;
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-field {
|
|
|
|
text-align: left;
|
|
|
|
width: 55%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-btn {
|
|
|
|
height: 36px;
|
|
|
|
width: 72px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-east-panel, .login-west-panel {
|
|
|
|
width: 350px;
|
|
|
|
background-color: #E0EAF7;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
<%-- header --%>
|
2008-07-09 20:07:13 +07:00
|
|
|
.header-left {
|
|
|
|
margin: 0;
|
|
|
|
margin-left: 5px;
|
2009-05-07 13:46:23 +07:00
|
|
|
margin-top: 3px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-right {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 3px;
|
2009-05-07 13:46:23 +07:00
|
|
|
padding-right: 5px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.disableFilter img {
|
2008-09-03 11:07:41 +07:00
|
|
|
opacity: 0.2;
|
2009-05-07 13:46:23 +07:00
|
|
|
filter: progid : DXImageTransform . Microsoft . Alpha(opacity = 20);
|
|
|
|
-moz-opacity: 0.2;
|
2008-10-02 05:45:11 +07:00
|
|
|
}
|
|
|
|
|
2008-12-03 09:48:02 +07:00
|
|
|
.depressed img {
|
2008-10-02 05:45:11 +07:00
|
|
|
border-style: inset;
|
|
|
|
border-width: 1px;
|
2008-12-03 09:48:02 +07:00
|
|
|
border-color: #9CBDFF;
|
|
|
|
background-color: #C4DCFB;
|
2008-10-02 05:45:11 +07:00
|
|
|
-moz-border-radius: 5px;
|
|
|
|
padding: 1px 4px 1px 4px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2009-05-14 15:38:37 +07:00
|
|
|
background-image: url(../images/header-bg.png);
|
2008-07-09 20:07:13 +07:00
|
|
|
background-repeat: repeat-x;
|
|
|
|
width: 100%;
|
|
|
|
height: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.headerFont {
|
|
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
2009-05-14 15:38:37 +07:00
|
|
|
<%-- button --%>
|
2008-08-23 11:06:26 +07:00
|
|
|
.action-button {
|
|
|
|
height: 32px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
|
2008-08-28 05:41:42 +07:00
|
|
|
.action-text-button {
|
|
|
|
height: 32px;
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2008-09-07 05:04:55 +07:00
|
|
|
.editor-button {
|
|
|
|
width: 26px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor-button img {
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2009-05-14 15:38:37 +07:00
|
|
|
<%-- desktop --%>
|
2008-08-23 11:06:26 +07:00
|
|
|
div.wc-modal, div.wc-modal-none, div.wc-highlighted, div.wc-highlighted-none {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2008-07-09 20:07:13 +07:00
|
|
|
.desktop-tabpanel {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-search {
|
|
|
|
background-color: #E0EAF7;
|
|
|
|
}
|
|
|
|
|
|
|
|
<%-- adwindow and form --%>
|
|
|
|
.adform-content-none {
|
|
|
|
overflow: auto;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2008-08-09 17:49:03 +07:00
|
|
|
margin: 3px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-status {
|
|
|
|
background-color: #E0EAF7;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2009-05-07 13:46:23 +07:00
|
|
|
.adwindow-nav {
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
2009-05-07 13:46:23 +07:00
|
|
|
.adwindow-left-nav {
|
|
|
|
border-right: 1px solid #7EAAC6;
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-right-nav {
|
|
|
|
border-left: 1px solid #7EAAC6;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
2008-07-09 20:07:13 +07:00
|
|
|
.adwindow-nav-content {
|
|
|
|
background-color: #E0EAF7;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-toolbar {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-navbtn-dis, .adwindow-navbtn-sel, .adwindow-navbtn-uns {
|
|
|
|
border: 0px;
|
|
|
|
margin-top: 3px;
|
2009-05-07 13:46:23 +07:00
|
|
|
padding-top: 2px;
|
2008-07-09 20:07:13 +07:00
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
2009-05-07 13:46:23 +07:00
|
|
|
|
2008-07-09 20:07:13 +07:00
|
|
|
.adwindow-navbtn-sel {
|
2009-05-07 13:46:23 +07:00
|
|
|
background-color: #9CBDFF;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #274D5F;
|
|
|
|
cursor: pointer;
|
2009-05-14 15:38:37 +07:00
|
|
|
border-top: 2px solid #7EAAC6;
|
|
|
|
border-bottom: 2px solid #7EAAC6;
|
2009-05-07 13:46:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-left-navbtn-sel {
|
2009-05-14 15:38:37 +07:00
|
|
|
border-left: 2px solid #7EAAC6;
|
2009-05-07 13:46:23 +07:00
|
|
|
border-right: none;
|
|
|
|
text-align: right;
|
2009-05-14 15:38:37 +07:00
|
|
|
-moz-border-radius-topleft: 5px;
|
|
|
|
-moz-border-radius-bottomleft: 5px;
|
|
|
|
-webkit-border-radius-top-left: 5px;
|
|
|
|
-webkit-border-radius-bottom-left: 5px;
|
|
|
|
background-color: #d1e7f6 !important;
|
|
|
|
background-image: url(../images/adtab-left-bg.png);
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-position: top right;
|
2009-05-07 13:46:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-right-navbtn-sel {
|
2009-05-14 15:38:37 +07:00
|
|
|
border-right: 2px solid #7EAAC6;
|
2009-05-07 13:46:23 +07:00
|
|
|
border-left: none;
|
|
|
|
text-align: left;
|
2009-05-14 15:38:37 +07:00
|
|
|
-moz-border-radius-topright: 5px;
|
|
|
|
-moz-border-radius-bottomright: 5px;
|
|
|
|
-webkit-border-radius-top-right: 5px;
|
|
|
|
-webkit-border-radius-bottom-right: 5px;
|
|
|
|
background-color: #d1e7f6 !important;
|
|
|
|
background-image: url(../images/adtab-right-bg.png);
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-position: top left;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-navbtn-uns {
|
2009-05-07 13:46:23 +07:00
|
|
|
background-color: #C4DCFB;
|
|
|
|
font-weight: normal;
|
2008-07-09 20:07:13 +07:00
|
|
|
color: #274D5F;
|
2008-08-16 16:03:15 +07:00
|
|
|
cursor: pointer;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-navbtn-dis {
|
2009-05-07 13:46:23 +07:00
|
|
|
background-color: #C4DCFB;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-navbtn-uns, .adwindow-navbtn-dis {
|
|
|
|
border-top: 1px solid #CCCCCC;
|
|
|
|
border-bottom: 1px solid #CCCCCC;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-left-navbtn-uns, .adwindow-left-navbtn-dis {
|
|
|
|
border-left: 1px solid #CCCCCC;
|
|
|
|
border-right: none;
|
|
|
|
text-align: right;
|
2009-05-14 15:38:37 +07:00
|
|
|
-moz-border-radius-topleft: 5px;
|
|
|
|
-moz-border-radius-bottomleft: 5px;
|
2009-05-07 13:46:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adwindow-right-navbtn-uns, .adwindow-right-navbtn-dis {
|
|
|
|
border-right: 1px solid #CCCCCC;
|
|
|
|
border-left: none;
|
|
|
|
text-align: left;
|
2009-05-14 15:38:37 +07:00
|
|
|
-moz-border-radius-topright: 5px;
|
|
|
|
-moz-border-radius-bottomright: 5px;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
<%-- ad tab --%>
|
|
|
|
.adtab-body {
|
|
|
|
position: absolute;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2008-07-22 10:22:45 +07:00
|
|
|
border: none;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
2009-05-07 13:46:23 +07:00
|
|
|
.adtab-content {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2008-07-22 10:22:45 +07:00
|
|
|
border: none;
|
2008-07-09 20:07:13 +07:00
|
|
|
overflow: auto;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2009-05-07 13:46:23 +07:00
|
|
|
position: absolute;
|
2008-07-09 20:07:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.adtab-grid-panel {
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adtab-grid {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.adtab-tabpanels {
|
|
|
|
width: 80%;
|
|
|
|
border-top: 1px solid #9CBDFF;
|
|
|
|
border-bottom: 1px solid #9CBDFF;
|
|
|
|
border-left: 2px solid #9CBDFF;
|
|
|
|
border-right: 2px solid #9CBDFF;
|
|
|
|
}
|
2008-07-12 07:20:49 +07:00
|
|
|
|
|
|
|
<%-- status bar --%>
|
|
|
|
.status {
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-db {
|
2009-05-07 13:46:23 +07:00
|
|
|
padding-top: 0;
|
|
|
|
pdding-bottom: 0;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
2008-07-12 07:20:49 +07:00
|
|
|
border-left: solid 1px #9CBDFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-info {
|
|
|
|
padding-right: 10px;
|
2008-08-28 05:41:42 +07:00
|
|
|
border-left: solid 1px #9CBDFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-border {
|
|
|
|
border: solid 1px #9CBDFF;
|
2008-07-12 07:20:49 +07:00
|
|
|
}
|
2008-10-09 15:33:10 +07:00
|
|
|
|
|
|
|
.form-button {
|
|
|
|
width: 99%;
|
|
|
|
}
|
2009-04-16 16:37:11 +07:00
|
|
|
|
2009-04-22 13:22:40 +07:00
|
|
|
<%-- Combobox --%>
|
2009-04-16 16:37:11 +07:00
|
|
|
.z-combobox-disd {
|
2009-04-22 13:22:40 +07:00
|
|
|
color: black !important; cursor: default !important; opacity: 1; -moz-opacity: 1; -khtml-opacity: 1; filter: alpha(opacity=100);
|
2009-04-16 16:37:11 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.z-combobox-disd * {
|
2009-04-22 13:22:40 +07:00
|
|
|
color: black !important; cursor: default !important;
|
|
|
|
}
|
|
|
|
|
2009-05-16 00:39:50 +07:00
|
|
|
.z-combobox-text-disd {
|
|
|
|
background-color: #ECEAE4 !important;
|
|
|
|
}
|
|
|
|
|
2009-04-22 13:22:40 +07:00
|
|
|
<%-- Button --%>
|
|
|
|
.z-button-disd {
|
|
|
|
color: black; cursor: default; opacity: .6; -moz-opacity: .6; -khtml-opacity: .6; filter: alpha(opacity=60);
|
2009-05-07 16:34:58 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
<%-- highlight focus form element --%>
|
|
|
|
input:focus, textarea:focus, .z-combobox-inp:focus, z-datebox-inp:focus {
|
|
|
|
border: 1px solid #0000ff;
|
|
|
|
}
|
2009-05-14 15:38:37 +07:00
|
|
|
|
|
|
|
<%-- fixed combobox btn position when width is set 100% --%>
|
|
|
|
.z-combobox-inp {
|
|
|
|
font-family: ${fontFamilyC};
|
|
|
|
font-size: ${fontSizeM};
|
|
|
|
font-weight: normal;
|
|
|
|
background: #FFF url(${c:encodeURL('~./zul/img/grid/text-bg.gif')}) repeat-x 0 0;
|
|
|
|
border: 1px solid #7F9DB9;
|
|
|
|
margin-right: -17px;
|
|
|
|
}
|