123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
-
- /*
- YUI CSS Reset
- */
- html{color:#000;background:#FFF;}
- body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,input,textarea,p,blockquote,th,td
- {margin:0;padding:0;}
- table{border-collapse:collapse;border-spacing:0;}
- img{border:0;}
- address,caption,cite,code,dfn,em,strong,th,var
- {font-style:normal;font-weight:normal;}
- li{list-style:none;}
- caption,th{text-align:left;}
- q:before,q:after{content:'';}
- abbr,acronym{border:0;font-variant:normal;}
- sup{vertical-align:text-top;}
- sub{vertical-align:text-bottom;}
- input,textarea,select{}
- input,textarea,select{}
- del,ins{text-decoration:none;}
- /* -------------
- * commom *
- * ------------- */
- body{font-family: "微软雅黑", "宋体", Arial, sans-serif; font-size: 12px; }
- .l-clear{ clear:both; width:1px; height:1px; overflow:hidden;}
- .l-hidden {display: none;}
- .l-loading
- {
- position: absolute;z-index: 91000; top:40%; left:50%; overflow:hidden;
- background:url('img/ligerui/common/loading.gif') no-repeat 0px 0px;width:24px; height:24px;
- display:none;
- }
- /* -------------
- * 滚动条颜色 *
- * ------------- */
- .l-scroll
- {
- scrollbar-face-color:#C6D7FF; scrollbar-3dlight-color:#B5CBF7; scrollbar-darkshadow-color:#B5CBF7;
- scrollbar-base-color:#B5CBF7;
- scrollbar-shadow-color: #FFF; scrollbar-highlight-color: #FFF; scrollbar-track-color:#FFF; scrollbar-arrow-color:#4A6184;
- }
- .l-noscroll
- {
- overflow:hidden;
- }
- /* Resizable */
- .l-resizable { display:none; overflow:hidden; border-style:dashed; border-width:1px; opacity:0.5; filter:alpha(opacity=50); position:absolute; top:0; left:0; z-index:101; background:#f2f1f1;}
- .l-resizable-h-l { cursor:nw-resize; top:0; left:0; z-index:103;}
- .l-resizable-h-r { cursor:ne-resize; top:0; right:0; z-index:103;}
- .l-resizable-h-c { width:100%; cursor:n-resize; top:0; left:0; z-index:102;}
- .l-resizable-c-l { cursor:w-resize; top:0; left:0; z-index:102;}
- .l-resizable-c-r { cursor:e-resize; top:0; right:0; z-index:102;}
- .l-resizable-f-l { cursor:sw-resize; bottom:0; left:0; z-index:103;}
- .l-resizable-f-r { cursor:se-resize; bottom:0; right:0; z-index:103;}
- .l-resizable-f-c { width:100%; cursor:s-resize; bottom:0; left:0; z-index:102;}
- .l-resizable-h-l, .l-resizable-h-r, .l-resizable-h-c,.l-resizable-c-l, .l-resizable-c-r,.l-resizable-f-l, .l-resizable-f-r, .l-resizable-f-c { display:block; overflow:hidden; width:6px; height:6px; position:absolute;}
- /* --------------
- * icon *
- * ------------ */
- .l-icon-checkbox {background:url('img/ligerui/icon/checkbox.gif') no-repeat center;}
- /* -------------
- * 按钮 *
- * ------------- */
- .l-button
- {
- display:block;border: solid 1px #A3C0E8;
- width:50px ; height:20px; overflow:hidden; line-height:20px;
- background: #E0EDFF url(img/ligerui/controls/button-bg.gif) repeat-x center;
- text-align:center;color: #2C4D79; text-decoration:none; cursor:pointer;
- }
- .l-button-over,.l-button:hover
- {background: #FFBE76 url(img/ligerui/controls/button-bg-over.gif) repeat-x center; border-color:#D6A886;
- }
- .l-btn
- {
- display:block;
- height:21px; overflow:hidden; line-height:22px; position:relative;
- padding-left:15px; padding-right:15px; cursor:pointer;
- background: #E0EDFF url(img/ligerui/controls/btn.gif) repeat-x;
- text-align:center;color: #2C4D79; text-decoration:none; cursor:pointer;
- }
- /* 按钮左边部位 */
- .l-btn-l
- {
- position:absolute; width:3px; left:0px; top:0px;height:21px;
- background: #E0EDFF url(img/ligerui/controls/btn-l.gif) no-repeat;
- }
- /* 按钮右边部位 */
- .l-btn-r
- {position:absolute; width:3px; right:0px; top:0px;height:21px;
- background: #E0EDFF url(img/ligerui/controls/btn-r.gif) no-repeat;
- }
- .ht-btn{ float:left; padding-left:8px;padding-right:8px; height:24px; overflow:hidden;background:url('img/ligerui/box/box-btn.gif') repeat-x; line-height:24px; cursor:pointer; position:relative; margin-right:5px;}
- .ht-btn-over{background:url('img/ligerui/box/box-btn-over.gif') repeat-x;}
- .ht-btn-inner{ text-align:center;}
- .ht-btn-l{ height:24px; position:absolute; left:0px; top:0px; width:4px; background:url('img/ligerui/box/box-btn-l.gif') no-repeat;}
- .ht-btn-over .ht-btn-l{background:url('img/ligerui/box/box-btn-l-over.gif') no-repeat;}
- .ht-btn-r{ height:24px; position:absolute; right:0px; top:0px; width:4px; background:url('img/ligerui/box/box-btn-r.gif') no-repeat;}
- .ht-btn-over .ht-btn-r{background:url('img/ligerui/box/box-btn-r-over.gif') no-repeat;}
|