Produced by Araxis Merge on Fri Oct 19 14:26:01 2007 UTC. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a reasonably standards compliant browser such as the latest version of Internet Explorer. For optimum results when printing this report, enable printing of background images and colours in your browser and use landscape orientation.
| # | File | Location | Last Modified |
|---|---|---|---|
| 1 | template_css.jsp | C:\jahia\template_diff\V2_JAHIA_5_0_2\src\jsp\css | Fri Oct 19 14:17:32 2007 UTC |
| 2 | template_css.jsp | C:\jahia\template_diff\V2_JAHIA_5_0_3\src\jsp\css | Fri Oct 19 14:16:50 2007 UTC |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Blocks | Lines | |
| Unchanged | 10 | 490 |
| Changed | 7 | 41 |
| Inserted | 1 | 3 |
| Removed | 1 | 2 |
| Whitespace | All differences in whitespace within lines are ignored |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Hidden in comparison detail |
No regular expressions were active.
| 1 | <%-- | 1 | <%-- | |||
| 2 | Copyright 2002-2006 Jahia Ltd | 2 | Copyright 2002-2006 Jahia Ltd | |||
| 3 | 3 | |||||
| 4 | Licensed under the JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDDL), | 4 | Licensed under the JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDDL), | |||
| 5 | Version 1.0 (the "License"), or (at your option) any later version; you may | 5 | Version 1.0 (the "License"), or (at your option) any later version; you may | |||
| 6 | not use this file except in compliance with the License. You should have | 6 | not use this file except in compliance with the License. You should have | |||
| 7 | received a copy of the License along with this program; if not, you may obtain | 7 | received a copy of the License along with this program; if not, you may obtain | |||
| 8 | a copy of the License at | 8 | a copy of the License at | |||
| 9 | 9 | |||||
| 10 | http://www.jahia.org/license/ | 10 | http://www.jahia.org/license/ | |||
| 11 | 11 | |||||
| 12 | Unless required by applicable law or agreed to in writing, software | 12 | Unless required by applicable law or agreed to in writing, software | |||
| 13 | distributed under the License is distributed on an "AS IS" BASIS, | 13 | distributed under the License is distributed on an "AS IS" BASIS, | |||
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
| 15 | See the License for the specific language governing permissions and | 15 | See the License for the specific language governing permissions and | |||
| 16 | limitations under the License. | 16 | limitations under the License. | |||
| 17 | --%><%@ page language="java" %><%@ taglib uri="contentLib" prefix="content" %><% | 17 | --%><%@ page language="java" %><% | |||
| 18 | response.setContentType("text/css"); | 18 | response.setContentType("text/css"); | |||
| 19 | // this value can control the different parts of css (if needed) | 19 | String ctx = request.getContextPa th( ); | |||
| 20 | String bv=""; | |||||
| 21 | bv=(String)request.get Parameter("bval"); | |||||
| 22 | if(bv==null || bv.equalsIgnoreCase("")) bv="3"; | |||||
| 23 | int bval=Integer.parseInt(bv); | |||||
| 24 | org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger(getClass()); | |||||
| 25 | org.jahia.settings.SettingsBean siteSetting = org.jahia.bin.Jahia.getSettings(); | 20 | org.jahia.settings.SettingsBean siteSetting = org.jahia.bin.Jahia.getSettings(); | |||
| 26 | if (siteSetting != null ) { | 21 | if (siteSetting != null && siteSetting.isDevelopmentMode()) { | |||
| 27 | if (siteSetting.isDevelopmentMode()) { | 22 | response.setHeader("Cache-Control","no-store, no-cache, must-revalidate, max-age=0"); //HTTP 1.1 | |||
| 28 | logger.debug("We are in dev mode -> Disable browser cache for template_css.jsp"); | 23 | response.addHeader("Cache-Control","post-check=0, pre-check=0"); | |||
| 29 | response.setHeader("Cache-Control","no -cache "); //HTTP 1.1 | |||||
| 30 | response.setHeader("Pragma","no-cache"); //HTTP 1.0 | 24 | response.setHeader("Pragma","no-cache"); //HTTP 1.0 | |||
| 31 | response.setDateHeader ("Expires", -1); | 25 | response.setDateHeader ("Expires", -1); | |||
| 32 | } else { | 26 | } else { | |||
| 33 | logger.debug("We are in production mode -> Set browser cache for template_css.jsp to 1 hour"); | 27 | response.setHeader("Cache-Control", "public, max-age= 604800, post-check=7200, pre-check=604800"); | |||
| 34 | long now = System.currentTimeMillis(); | 28 | response.setHeader("Pragma", ""); | |||
| 35 | response.setDateHeader("Expires", now + 3600000); // 1 hour | 29 | response.setDateHeader("Expires", System.currentTimeMillis() + 604800 * 1000); // 7 days | |||
| 36 | response.addHeader("Cache-Control", " max-age=360 0"); | |||||
| 37 | } | 30 | } | |||
| 38 | } | |||||
| 39 | logger.debug("Opening template_css.jsp"); | |||||
| 40 | %>/* GLOBAL SETTINGS | 31 | %>/* GLOBAL SETTINGS | |||
| 41 | ------------------------------------------------ */ | 32 | ------------------------------------------------ */ | |||
| 42 | body{background:#ddd;color:#333;font-family:Arial, Helvetica, sans-serif;font-size:11px;text-align:left;margin:0;padding:0;} | 33 | body{background:#ddd;color:#333;font-family:Arial, Helvetica, sans-serif;font-size:11px;text-align:left;margin:0;padding:0;} | |||
| 43 | a{color:#333;text-decoration:none;} | 34 | a{color:#333;text-decoration:none;} | |||
| 44 | a:hover{text-decoration:underline;} | 35 | a:hover{text-decoration:underline;} | |||
| 45 | h1{background:url(../img/line.gif) no-repeat left bottom;color:#333;font-size:16px;font-weight:700;margin:10px 0 5px;padding-bottom:20px;} | 36 | h1{background:url(../img/line.gif) no-repeat left bottom;color:#333;font-size:16px;font-weight:700;margin:10px 0 5px;padding-bottom:20px;} | |||
| 46 | h2{background:url(../img/arrow.gif) no-repeat 0 8px;color:#7ca648;font-size:14px;font-weight:700;padding:5px 0 10px 20px;} | 37 | h2{background:url(../img/arrow.gif) no-repeat 0 8px;color:#7ca648;font-size:14px;font-weight:700;padding:5px 0 10px 20px;} | |||
| 47 | div.dotted{background:url(../img/dotted.gif) repeat-x top;display:block;height:1px;} | 38 | div.dotted{background:url(../img/dotted.gif) repeat-x top;display:block;height:1px;} | |||
| 48 | .MainShell{visibility:hidden;} | 39 | .MainShell{visibility:hidden;} | |||
| 49 | 40 | |||||
| 50 | /* MAIN STRUCT CLASS | 41 | /* MAIN STRUCT CLASS | |||
| 51 | ------------------------------------------------ */ | 42 | ------------------------------------------------ */ | |||
| 52 | #wrapper{display:block;text-align:left;width:1004px;} | 43 | #wrapper{display:block;text-align:left;width:1004px;} | |||
| 53 | #topmodules{border-bottom:1px dotted #AAA;top:0;width:1004px;} | 44 | #topmodules{border-bottom:1px dotted #AAA;top:0;width:1004px;} | |||
| 54 | #toplinks{clear:both;} | 45 | #toplinks{clear:both;} | |||
| 55 | #header{background:#fff;clear:both;display:block;float:left;width:1004px;} | 46 | #header{background:#fff;clear:both;display:block;float:left;width:1004px;} | |||
| 56 | #pagebody{background:#fff;clear:both;display:block;float:left;padding:0 0 20px;width:1004px;} | 47 | #pagebody{background:#fff;clear:both;display:block;float:left;padding:0 0 20px;width:1004px;} | |||
| 57 | #footer{background:url(../img/dotted.gif) repeat-x top left #fff;clear:both;display:block;float:left;padding-top:10px;text-align:left;width:1004px;} | 48 | #footer{background:url(../img/dotted.gif) repeat-x top left #fff;clear:both;display:block;float:left;padding-top:10px;text-align:left;width:1004px;} | |||
| 58 | #footer .margin{display:block;padding:0 20px 40px;} | 49 | #footer .margin{display:block;padding:0 20px 40px;} | |||
| 59 | #pagetitle{display:none;} | 50 | #pagetitle{display:none;} | |||
| 60 | 51 | |||||
| 61 | /* HEADER | 52 | /* HEADER | |||
| 62 | ------------------------------------------------ */ | 53 | ------------------------------------------------ */ | |||
| 63 | #thechat{display:block;float:left;margin:0 10px;} | 54 | #thechat{display:block;float:left;margin:0 10px;} | |||
| 64 | #theprocess a{color:#333;font-size:11px;} | 55 | #theprocess a{color:#333;font-size:11px;} | |||
| 65 | #adminbuttons a{color:#402808;font-size:10px;padding:5px 5px 0;} | 56 | #adminbuttons a{color:#402808;font-size:10px;padding:5px 5px 0;} | |||
| 66 | a.green{color:green !important;} | 57 | a.green{color:green !important;} | |||
| 67 | a.orange{color:orange !important;} | 58 | a.orange{color:orange !important;} | |||
| 68 | a.red{color:red !important;} | 59 | a.red{color:red !important;} | |||
| 69 | #quicklinkright{float:right;padding:0 20px 0 0;} | 60 | #quicklinkright{float:right;padding:0 20px 0 0;} | |||
| 70 | #quicklinkright ul{list-style:none;} | 61 | #quicklinkright ul{list-style:none;} | |||
| 71 | #quicklinkright a{border-right:1px solid #d2d2d2;color:#402808;display:block;float:left;font-size:10px;padding:10px 5px 0;white-space:nowrap;} | 62 | #quicklinkright a{border-right:1px solid #d2d2d2;color:#402808;display:block;float:left;font-size:10px;padding:10px 5px 0;white-space:nowrap;} | |||
| 72 | #logo{float:left;padding:5px 20px 0;} | 63 | #logo{float:left;padding:5px 20px 0;} | |||
| 73 | #search{background:#e9e9e9;border:1px #ccc solid;display:none;height:40px;margin:25px 0 0 10px;padding:10px 5px 5px 10px;position:absolute;width:300px;z-index:100;} | 64 | #search{background:#e9e9e9;border:1px #ccc solid;display:none;height:40px;margin:25px 0 0 10px;padding:10px 5px 5px 10px;position:absolute;width:300px;z-index:100;} | |||
| 74 | .search li{display:block;padding-bottom:10px;} | 65 | .search li{display:block;padding-bottom:10px;} | |||
| 75 | .bold{font-weight:700;} | 66 | .bold{font-weight:700;} | |||
| 76 | span.hl{background:#FF6;} | 67 | span.hl{background:#FF6;} | |||
| 77 | #theprocess,#adminbuttons{display:block;float:left;margin:0 30px 0 20px;} | 68 | #theprocess,#adminbuttons{display:block;float:left;margin:0 30px 0 20px;} | |||
| 78 | #quicklinkright li,#search input{display:inline;} | 69 | #quicklinkright li,#search input{display:inline;} | |||
| 79 | 70 | |||||
| 80 | /* TOPMENU | 71 | /* TOPMENU | |||
| 81 | ------------------------------------------------ */ | 72 | ------------------------------------------------ */ | |||
| 82 | #topmenu{background:#bbd9ee;border-top:4px solid #54a4de;clear:both;display:block;float:left;font-size:11px;padding:10px 0 0 40px;width:964px !important;} | 73 | #topmenu{background:#bbd9ee;border-top:4px solid #54a4de;clear:both;display:block;float:left;font-size:11px;padding:10px 0 0 40px;width:964px !important;} | |||
| 83 | #topmenu div.selected,#topmenu div.notselected{float:left;} | 74 | #topmenu div.selected,#topmenu div.notselected{float:left;} | |||
| 84 | #topmenu div.actions{float:left;padding:3px 5px;} | 75 | #topmenu div.actions{float:left;padding:3px 5px;} | |||
| 85 | #topmenu a{float:left;text-decoration:none;} | 76 | #topmenu a{float:left;text-decoration:none;} | |||
| 86 | #topmenu a:hover{text-decoration:none;} | 77 | #topmenu a:hover{text-decoration:none;} | |||
| 87 | #topmenu a span{color:#000;display:block;padding:7px 17px 7px 15px;text-decoration:none;} | 78 | #topmenu a span{color:#000;display:block;padding:7px 17px 7px 15px;text-decoration:none;} | |||
| 88 | #topmenu a.link{background:url(../img/top_right.gif) no-repeat 100% 0;} | 79 | #topmenu a.link{background:url(../img/top_right.gif) no-repeat 100% 0;} | |||
| 89 | #topmenu a.link span{background:url(../img/top_left.gif) no-repeat;} | 80 | #topmenu a.link span{background:url(../img/top_left.gif) no-repeat;} | |||
| 90 | #topmenu a:hover.link{background:url(../img/top_right.gif) no-repeat 100% -30px;} | 81 | #topmenu a:hover.link{background:url(../img/top_right.gif) no-repeat 100% -30px;} | |||
| 91 | #topmenu a:hover.link span{background:url(../img/top_left.gif) no-repeat 0 -30px;} | 82 | #topmenu a:hover.link span{background:url(../img/top_left.gif) no-repeat 0 -30px;} | |||
| 92 | #topmenu div.selected a.link {background-position: 100% -60px;} | 83 | #topmenu div.selected a.link {background-position: 100% -60px;} | |||
| 93 | #topmenu div.selected a.link span {background-position: 0 -60px;border-width:0px !important;} | 84 | #topmenu div.selected a.link span {background-position: 0 -60px;border-width:0px !important;} | |||
| 94 | #topmenu div.notselected a.link span{border-bottom:1px solid #bbd9ee;} | 85 | #topmenu div.notselected a.link span{border-bottom:1px solid #bbd9ee;} | |||
| 95 | 86 | |||||
| 96 | /* NAV | 87 | /* NAV | |||
| 97 | ------------------------------------------------ */ | 88 | ------------------------------------------------ */ | |||
| 98 | #navigation{background:url(../img/nav_top.gif) no-repeat right top #f1efe2;float:left;margin-top:15px;padding-top:27px;width:230px;} | 89 | #navigation{background:url(../img/nav_top.gif) no-repeat right top #f1efe2;float:left;margin-top:15px;padding-top:27px;width:230px;} | |||
| 99 | #navigation .navdeco{background:url(../img/nav_bottom.gif) no-repeat right bottom #f1efe2;padding-bottom:27px;} | 90 | #navigation .navdeco{background:url(../img/nav_bottom.gif) no-repeat right bottom #f1efe2;padding-bottom:27px;} | |||
| 100 | #navigation .shortcuts{color:#FFF;display:block;float:left;padding:10px;width:220px !important;} | 91 | #navigation .shortcuts{color:#FFF;display:block;float:left;padding:10px;width:220px !important;} | |||
| 101 | #navigation h1{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:18px !important;padding-left:10px;} | 92 | #navigation h1{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:18px !important;padding-left:10px;} | |||
| 102 | #navigation h2{margin-left:10px;} | 93 | #navigation h2{margin-left:10px;} | |||
| 103 | #navigation a{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;padding:2px;text-decoration:none;} | 94 | #navigation a{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;padding:2px;text-decoration:none;} | |||
| 104 | #navigation a:hover{text-decoration:underline;} | 95 | #navigation a:hover{text-decoration:underline;} | |||
| 105 | #navigation a.current{color:#507076;} | 96 | #navigation a.current{color:#507076;} | |||
| 106 | #navigation div.level1{border-bottom:2px solid #fff;display:block;padding:5px 0 5px 10px;} | 97 | #navigation div.level1{border-bottom:2px solid #fff;display:block;padding:5px 0 5px 10px;} | |||
| 107 | #navigation div.level1 a.link1{background:url(../img/arrow.gif) no-repeat 0 3px;padding-left:20px;} | 98 | #navigation div.level1 a.link1{background:url(../img/arrow.gif) no-repeat 0 3px;padding-left:20px;} | |||
| 108 | #navigation div.level2{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 30px;} | 99 | #navigation div.level2{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 30px;} | |||
| 109 | #navigation div.level2 a.link2{background:url(../img/arrow2.gif) no-repeat 0 3px;padding-left:13px;} | 100 | #navigation div.level2 a.link2{background:url(../img/arrow2.gif) no-repeat 0 3px;padding-left:13px;} | |||
| 110 | #navigation div.level2 a.current{background:url(../img/arrow3.gif) no-repeat 0 3px;padding-left:13px;} | 101 | #navigation div.level2 a.current{background:url(../img/arrow3.gif) no-repeat 0 3px;padding-left:13px;} | |||
| 111 | #navigation div.level3{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 40px;} | 102 | #navigation div.level3{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 40px;} | |||
| 112 | #navigation div.level3 a.link3{background:url(../img/arrow4.gif) no-repeat 0 6px;padding-left:10px;} | 103 | #navigation div.level3 a.link3{background:url(../img/arrow4.gif) no-repeat 0 6px;padding-left:10px;} | |||
| 113 | #navigation div.level3 a.current{background:url(../img/arrow5.gif) no-repeat 0 6px;font-weight:700;padding-left:10px;} | 104 | #navigation div.level3 a.current{background:url(../img/arrow5.gif) no-repeat 0 6px;font-weight:700;padding-left:10px;} | |||
| 114 | #navigation div.level4{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 50px;} | 105 | #navigation div.level4{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 50px;} | |||
| 115 | #navigation div.level4 a.link4{background:url(../img/arrow6.gif) no-repeat 0 8px;padding-left:6px;} | 106 | #navigation div.level4 a.link4{background:url(../img/arrow6.gif) no-repeat 0 8px;padding-left:6px;} | |||
| 116 | #navigation div.level4 a.current{background:url(../img/arrow7.gif) no-repeat 0 8px;font-weight:700;padding-left:6px;} | 107 | #navigation div.level4 a.current{background:url(../img/arrow7.gif) no-repeat 0 8px;font-weight:700;padding-left:6px;} | |||
| 117 | #navigation div.level5{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 60px;} | 108 | #navigation div.level5{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 60px;} | |||
| 118 | #navigation div.level6{display:block;padding:2px 0 2px 70px;} | 109 | #navigation div.level6{display:block;padding:2px 0 2px 70px;} | |||
| 119 | #navigation div.level6 a{border-bottom:1px solid #fff;font-weight:400;} | 110 | #navigation div.level6 a{border-bottom:1px solid #fff;font-weight:400;} | |||
| 120 | #navigation div.level7{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 70px;} | 111 | #navigation div.level7{border-bottom:1px solid #fff;display:block;padding:2px 0 2px 70px;} | |||
| 121 | #navigation form{padding:10px;} | 112 | #navigation form{padding:10px;} | |||
| 122 | #navigation .searchbox2{background:url(../img/dotted.gif) repeat-x top left #548a94;clear:both;display:block;margin:20px 0 10px;padding:2px 0 2px 5px;} | 113 | #navigation .searchbox2{background:url(../img/dotted.gif) repeat-x top left #548a94;clear:both;display:block;margin:20px 0 10px;padding:2px 0 2px 5px;} | |||
| 123 | #navigation .searchbox2 form input{color:#878787;font-size:10px;margin:2px 2px 2px 0;} | 114 | #navigation .searchbox2 form input{color:#878787;font-size:10px;margin:2px 2px 2px 0;} | |||
| 124 | #navigation .searchbox2 form a{color:#fff;font-weight:700;margin:2px 2px 2px 0;padding:2px 5px;} | 115 | #navigation .searchbox2 form a{color:#fff;font-weight:700;margin:2px 2px 2px 0;padding:2px 5px;} | |||
| 125 | #navigation box{clear:both;display:block;float:left;padding-bottom:15px;width:180px;} | 116 | #navigation box{clear:both;display:block;float:left;padding-bottom:15px;width:180px;} | |||
| 126 | #navigation .box .content{display:block;padding:0 0 5px;width:175px;} | 117 | #navigation .box .content{display:block;padding:0 0 5px;width:175px;} | |||
| 127 | .new{display:block;padding:5px 0;} | 118 | .new{display:block;padding:5px 0;} | |||
| 128 | .new .title,.new .title a{color:#dd6330;font-size:11px;font-weight:700;} | 119 | .new .title,.new .title a{color:#dd6330;font-size:11px;font-weight:700;} | |||
| 129 | .new .date{color:#d2d2d2;font-size:9px;} | 120 | .new .date{color:#d2d2d2;font-size:9px;} | |||
| 130 | #navigation div.level3 a,#navigation div.level4 a,#navigation div.level5 a,#navigation div.level7 a,#navigation form a{font-weight:400;} | 121 | #navigation div.level3 a,#navigation div.level4 a,#navigation div.level5 a,#navigation div.level7 a,#navigation form a{font-weight:400;} | |||
| 131 | #navigation div.level5 a.current,#navigation div.level6 a.current,#navigation div.level7 a.current{font-weight:700;} | 122 | #navigation div.level5 a.current,#navigation div.level6 a.current,#navigation div.level7 a.current{font-weight:700;} | |||
| 132 | #navigation .layout0,#navigation .layout1 {margin-left:10px;} | 123 | #navigation .layout0,#navigation .layout1 {margin-left:10px;} | |||
| 133 | 124 | |||||
| 134 | /* CONTENT | 125 | /* CONTENT | |||
| 135 | ------------------------------------------------ */ | 126 | ------------------------------------------------ */ | |||
| 136 | #main content.splash{border:0;display:block;} | 127 | #main content.splash{border:0;display:block;} | |||
| 137 | #content{float:right;padding-right:10px;width:754px;} | 128 | #content{float:right;padding-right:10px;width:754px;} | |||
| 138 | .path{display:block;float:left;padding:18px 10px 3px;width:744px;} | 129 | .path{display:block;float:left;padding:18px 10px 3px;width:744px;} | |||
| 139 | .path,.path a{color:#444;} | 130 | .path,.path a{color:#444;} | |||
| 140 | #content .leftcol{background:url(../img/dotted.gif) repeat-y top right;clear:both;float:left;margin-top:10px;padding-left:10px;padding-right:10px;width:480px;} | 131 | #content .leftcol{background:url(../img/dotted.gif) repeat-y top right;clear:both;float:left;margin-top:10px;padding-left:10px;padding-right:10px;width:480px;} | |||
| 141 | #content .rightcol{float:left;margin:10px 0 0 10px;width:234px;} | 132 | #content .rightcol{float:left;margin:10px 0 0 10px;width:234px;} | |||
| 142 | #content .maincontent img{border:1px solid #d2d2d2;padding:2px;} | 133 | #content .maincontent img{border:1px solid #d2d2d2;padding:2px;} | |||
| 143 | #content .maincontent img.left{margin-right:10px;} | 134 | #content .maincontent img.left{margin-right:10px;} | |||
| 144 | #content .maincontent img.right{margin-left:10px;} | 135 | #content .maincontent img.right{margin-left:10px;} | |||
| 145 | #content .maincontent a{text-decoration:underline;} | 136 | #content .maincontent a{text-decoration:underline;} | |||
| 146 | #content .maincontent {display: block; overflow: hidden;} | 137 | #content .maincontent {display: block; overflow: hidden;} | |||
| 147 | #content .full,#content .full2{display:block;float:left;padding:5px 10px 10px;width:713px;} | 138 | #content .full,#content .full2{display:block;float:left;padding:5px 10px 10px;width:713px;} | |||
| 148 | #content .splash { | 139 | #content .splash { | |||
| 149 | /* | 140 | /* | |||
| 150 | background: url(../img/splash.gif) no-repeat; | 141 | background: url(../img/splash.gif) no-repeat; | |||
| 151 | display: block; | 142 | display: block; | |||
| 152 | width: 539px; | 143 | width: 539px; | |||
| 153 | height: 82px; | 144 | height: 82px; | |||
| 154 | */ | 145 | */ | |||
| 155 | } | 146 | } | |||
| 156 | 147 | |||||
| 157 | /* FOOTER | 148 | /* FOOTER | |||
| 158 | ------------------------------------------------ */ | 149 | ------------------------------------------------ */ | |||
| 159 | #footer{text-align:left;} | 150 | #footer{text-align:left;} | |||
| 160 | #footer div.footerlink1,#footer div.footerlink{float:left;font-family:Verdana,Arial, Helvetica, sans-serif;font-size:9px;padding:0 5px;} | 151 | #footer div.footerlink1,#footer div.footerlink{float:left;font-family:Verdana,Arial, Helvetica, sans-serif;font-size:9px;padding:0 5px;} | |||
| 161 | #footer div.footerlink{border-left:1px solid #d2d2d2;} | 152 | #footer div.footerlink{border-left:1px solid #d2d2d2;} | |||
| 162 | #footer div.footerlinklogo{clear:both;display:block;} | 153 | #footer div.footerlinklogo{clear:both;display:block;} | |||
| 163 | #footer a.flink{color:#402808;text-decoration:none;} | 154 | #footer a.flink{color:#402808;text-decoration:none;} | |||
| 164 | #footer a.flink:hover{text-decoration:underline;} | 155 | #footer a.flink:hover{text-decoration:underline;} | |||
| 165 | #footer .copyright{clear:both;display:block;float:left;margin-bottom:20px;margin-top:10px;padding-top:10px;width:710px;} | 156 | #footer .copyright{clear:both;display:block;float:left;margin-bottom:20px;margin-top:10px;padding-top:10px;width:710px;} | |||
| 166 | 157 | |||||
| 167 | /* FILES | 158 | /* FILES | |||
| 168 | ------------------------------------------------ */ | 159 | ------------------------------------------------ */ | |||
| 169 | table.files tr td{font-size:11px;padding:1px;vertical-align:top;} | 160 | table.files tr td{font-size:11px;padding:1px;vertical-align:top;} | |||
| 170 | table.files tr:hover{background:#e9e9e9;} | 161 | table.files tr:hover{background:#e9e9e9;} | |||
| 171 | table.files tr td.nowrap{white-space:nowrap;} | 162 | table.files tr td.nowrap{white-space:nowrap;} | |||
| 172 | .searchResultListing a,table.files a{color:#402808;display:block;padding-bottom:2px;} | 163 | .searchResultListing a,table.files a{color:#402808;display:block;padding-bottom:2px;} | |||
| 173 | table.files a{font-weight:700;} | 164 | table.files a{font-weight:700;} | |||
| 174 | a.file{background:url(../img/files/file.gif) no-repeat;padding-left:20px !important;} | 165 | a.file{background:url(../img/files/file.gif) no-repeat;padding-left:20px !important;} | |||
| 175 | a.video{background:url(../img/files/video.gif) no-repeat;padding-left:20px !important;} | 166 | a.video{background:url(../img/files/video.gif) no-repeat;padding-left:20px !important;} | |||
| 176 | a.ppt{background:url(../img/files/ppt.gif) no-repeat;padding-left:20px !important;} | 167 | a.ppt{background:url(../img/files/ppt.gif) no-repeat;padding-left:20px !important;} | |||
| 177 | a.exe{background:url(../img/files/exe.gif) no-repeat;padding-left:20px !important;} | 168 | a.exe{background:url(../img/files/exe.gif) no-repeat;padding-left:20px !important;} | |||
| 178 | a.doc{background:url(../img/files/doc.gif) no-repeat;padding-left:20px !important;} | 169 | a.doc{background:url(../img/files/doc.gif) no-repeat;padding-left:20px !important;} | |||
| 179 | a.dir{background:url(../img/files/dir.gif) no-repeat;padding-left:20px !important;} | 170 | a.dir{background:url(../img/files/dir.gif) no-repeat;padding-left:20px !important;} | |||
| 180 | a.html{background:url(../img/files/html.gif) no-repeat;padding-left:20px !important;} | 171 | a.html{background:url(../img/files/html.gif) no-repeat;padding-left:20px !important;} | |||
| 181 | a.img{background:url(../img/files/img.gif) no-repeat;padding-left:20px !important;} | 172 | a.img{background:url(../img/files/img.gif) no-repeat;padding-left:20px !important;} | |||
| 182 | a.pdf{background:url(../img/files/pdf.gif) no-repeat;padding-left:20px !important;} | 173 | a.pdf{background:url(../img/files/pdf.gif) no-repeat;padding-left:20px !important;} | |||
| 183 | a.sound{background:url(../img/files/sound.gif) no-repeat;padding-left:20px !important;} | 174 | a.sound{background:url(../img/files/sound.gif) no-repeat;padding-left:20px !important;} | |||
| 184 | a.txt{background:url(../img/files/txt.gif) no-repeat;padding-left:20px !important;} | 175 | a.txt{background:url(../img/files/txt.gif) no-repeat;padding-left:20px !important;} | |||
| 185 | a.zip{background:url(../img/files/zip.gif) no-repeat;padding-left:20px !important;} | 176 | a.zip{background:url(../img/files/zip.gif) no-repeat;padding-left:20px !important;} | |||
| 186 | a.xls,a.csv{background:url(../img/files/xls.gif) no-repeat;padding-left:20px !important;} | 177 | a.xls,a.csv{background:url(../img/files/xls.gif) no-repeat;padding-left:20px !important;} | |||
| 187 | 178 | |||||
| 188 | /* LINKS | 179 | /* LINKS | |||
| 189 | ------------------------------------------------ */ | 180 | ------------------------------------------------ */ | |||
| 190 | .error{color:red;} | 181 | .error{color:red;} | |||
| 191 | .fieldset{margin:0;padding:0;} | 182 | .fieldset{margin:0;padding:0;} | |||
| 192 | .links{display:block;padding-bottom:3px;} | 183 | .links{display:block;padding-bottom:3px;} | |||
| 193 | .links a{color:#402808;font-weight:700;} | 184 | .links a{color:#402808;font-weight:700;} | |||
| 194 | #content ul.list{list-style:none;margin:0;padding:0;} | 185 | #content ul.list{list-style:none;margin:0;padding:0;} | |||
| 195 | #content ul.list li{margin:0;padding:0 0 20px;} | 186 | #content ul.list li{margin:0;padding:0 0 20px;} | |||
| 196 | table.forms td{background:#e9e9e9;padding:0 5px;vertical-align:top;} | 187 | table.forms td{background:#e9e9e9;padding:0 5px;vertical-align:top;} | |||
| 197 | table.forms tr.title td{background:#402808;color:#fff;font-weight:700;} | 188 | table.forms tr.title td{background:#402808;color:#fff;font-weight:700;} | |||
| 198 | DIV#errors,DIV#errors li{color:#B42C29;} | 189 | DIV#errors,DIV#errors li{color:#B42C29;} | |||
| 199 | 190 | |||||
| 200 | /* CALENDAR | 191 | /* CALENDAR | |||
| 201 | ------------------------------------------------ */ | 192 | ------------------------------------------------ */ | |||
| 202 | div.calendar{background:#FFF;display:block;font-family:Courrier;font-size:11px;line-height:17px;margin-right:10px;} | 193 | div.calendar{background:#FFF;display:block;font-family:Courrier;font-size:11px;line-height:17px;margin-right:10px;} | |||
| 203 | div.calendar div.pre{white-space:pre;} | 194 | div.calendar div.pre{white-space:pre;} | |||
| 204 | div.calendar a{color:#006;font-family:"Courier New", Courier, mono;font-size:11px;text-decoration:none;} | 195 | div.calendar a{color:#006;font-family:"Courier New", Courier, mono;font-size:11px;text-decoration:none;} | |||
| 205 | div.calendar a.weekOfYear{color:#75777B;} | 196 | div.calendar a.weekOfYear{color:#75777B;} | |||
| 206 | div.calendar .currentweek,div.calendar a.currentday{background:#E7E7E7;border:1px solid #B42C29;font-weight:700;} | 197 | div.calendar .currentweek,div.calendar a.currentday{background:#E7E7E7;border:1px solid #B42C29;font-weight:700;} | |||
| 207 | div.calendar a:hover{background:#E7E7E7;} | 198 | div.calendar a:hover{background:#E7E7E7;} | |||
| 208 | div.calendar h2{color:#069;font-size:12px;font-weight:700;text-align:center;} | 199 | div.calendar h2{color:#069;font-size:12px;font-weight:700;text-align:center;} | |||
| 209 | div.calendar h2 a{color:#069;padding:0 5px;} | 200 | div.calendar h2 a{color:#069;padding:0 5px;} | |||
| 210 | div.calendar span.days{background:#E7E7E7;font-weight:700;padding:0 2px;} | 201 | div.calendar span.days{background:#E7E7E7;font-weight:700;padding:0 2px;} | |||
| 211 | div.xmlButton{background:#f60;color:#FFF;font-family:verdana,helvetica,arial,sans-serif;font-size:10px;padding:0 1px;text-decoration:none;} | 202 | div.xmlButton{background:#f60;color:#FFF;font-family:verdana,helvetica,arial,sans-serif;font-size:10px;padding:0 1px;text-decoration:none;} | |||
| 212 | a.xmlButton{color:#FFF;font-family:verdana,helvetica,arial,sans-serif;font-size:10px;font-weight:700;text-decoration:none;} | 203 | a.xmlButton{color:#FFF;font-family:verdana,helvetica,arial,sans-serif;font-size:10px;font-weight:700;text-decoration:none;} | |||
| 213 | div.xmlWrap{border:1px solid #666;margin:0;padding:1px;text-align:center;text-decoration:none;width:34px;} | 204 | div.xmlWrap{border:1px solid #666;margin:0;padding:1px;text-align:center;text-decoration:none;width:34px;} | |||
| 214 | div.spacer{clear:both;font-size:1px;line-height:0;} | 205 | div.spacer{clear:both;font-size:1px;line-height:0;} | |||
| 215 | 206 | |||||
| 216 | /* BLOG | 207 | /* BLOG | |||
| 217 | ------------------------------------------------ */ | 208 | ------------------------------------------------ */ | |||
| 218 | .entry{margin:0 0 1.75em;} | 209 | .entry{margin:0 0 1.75em;} | |||
| 219 | .entry h3{color:#245;font:175%/1.3em Georgia,Serif;line-height:1.3em;margin:1em 0 .2em;} | 210 | .entry h3{color:#245;font:175%/1.3em Georgia,Serif;line-height:1.3em;margin:1em 0 .2em;} | |||
| 220 | .blog h2.date{border-bottom:1px dotted #ccc;margin-bottom:.5em;padding-bottom:.3em;} | 211 | .blog h2.date{border-bottom:1px dotted #ccc;margin-bottom:.5em;padding-bottom:.3em;} | |||
| 221 | .blog h3{border-bottom:1px dotted #ccc;font-size:140%;line-height:1.5em;margin:.75em 0 .5em;padding:0 0 .2em;} | 212 | .blog h3{border-bottom:1px dotted #ccc;font-size:140%;line-height:1.5em;margin:.75em 0 .5em;padding:0 0 .2em;} | |||
| 222 | .posted{color:#998;} | 213 | .posted{color:#998;} | |||
| 223 | .blog .posted,.blog .posted a{font-size:85%;line-height:1.6em;} | 214 | .blog .posted,.blog .posted a{font-size:85%;line-height:1.6em;} | |||
| 224 | .blog dd.posted{border-top:1px dotted #ccd;margin-top:.5em;padding-top:4px;} | 215 | .blog dd.posted{border-top:1px dotted #ccd;margin-top:.5em;padding-top:4px;} | |||
| 225 | .posted strong{color:#887;font-weight:400;} | 216 | .posted strong{color:#887;font-weight:400;} | |||
| 226 | a.permalink{background:url("../img/blog/icon_pg.gif") no-repeat;border-width:0;display:block;float:left;height:10px;margin:.3em 5px 0 0;text-indent:-10000px;width:9px;} | 217 | a.permalink{background:url("../img/blog/icon_pg.gif") no-repeat;border-width:0;display:block;float:left;height:10px;margin:.3em 5px 0 0;text-indent:-10000px;width:9px;} | |||
| 227 | .commentlink,.commentlink:visited{background:url("../img/blog/icon_comment.gif") no-repeat 8px 50%;border-left:1px solid #ccb;border-width:0;color:#359;margin-left:.5em;padding-left:22px;white-space:nowrap;} | 218 | .commentlink,.commentlink:visited{background:url("../img/blog/icon_comment.gif") no-repeat 8px 50%;border-left:1px solid #ccb;border-width:0;color:#359;margin-left:.5em;padding-left:22px;white-space:nowrap;} | |||
| 228 | span.commentlink{color:#887;} | 219 | span.commentlink{color:#887;} | |||
| 229 | a.commentlink:hover{border-color:#ccb;color:#933;text-decoration:none;} | 220 | a.commentlink:hover{border-color:#ccb;color:#933;text-decoration:none;} | |||
| 230 | .commentlink img{margin-top:.5em;} | 221 | .commentlink img{margin-top:.5em;} | |||
| 231 | a.commentlink:hover img{padding-left:48px;width:0;} | 222 | a.commentlink:hover img{padding-left:48px;width:0;} | |||
| 232 | dl.previously{margin-bottom:1.25em;} | 223 | dl.previously{margin-bottom:1.25em;} | |||
| 233 | .previously dt a{border-width:0;font:150%/1.4em Georgia,Serif;} | 224 | .previously dt a{border-width:0;font:150%/1.4em Georgia,Serif;} | |||
| 234 | .previously dd{margin-bottom:1em;margin-left:0;} | 225 | .previously dd{margin-bottom:1em;margin-left:0;} | |||
| 235 | .previously dd.summary{margin-bottom:0;} | 226 | .previously dd.summary{margin-bottom:0;} | |||
| 236 | .blog .previously dd.posted{margin-bottom:1.75em;margin-top:.7em;} | 227 | .blog .previously dd.posted{margin-bottom:1.75em;margin-top:.7em;} | |||
| 237 | .blog a.continued{background:url("../img/arrow.gif") no-repeat 100% 2px;border-bottom:1px #402808 dotted;border-width:0;color:#402808;padding-right:16px;text-decoration:none;} | 228 | .blog a.continued{background:url("../img/arrow.gif") no-repeat 100% 2px;border-bottom:1px #402808 dotted;border-width:0;color:#402808;padding-right:16px;text-decoration:none;} | |||
| 238 | .blog a.continued:hover{border-bottom:1px #e9e9e9 solid;text-decoration:underline;} | 229 | .blog a.continued:hover{border-bottom:1px #e9e9e9 solid;text-decoration:underline;} | |||
| 239 | .blog,.blog a{font-size:12px;} | 230 | .blog,.blog a{font-size:12px;} | |||
| 240 | .posted-top .commentlink,.posted-top .commentlink:visited,.posted-top .commentlink{background:0 50%;border-left-width:0;margin-left:0;padding-left:14px;} | 231 | .posted-top .commentlink,.posted-top .commentlink:visited,.posted-top .commentlink{background:0 50%;border-left-width:0;margin-left:0;padding-left:14px;} | |||
| 241 | 232 | |||||
| 242 | /* BLOG COMMENTS | 233 | /* BLOG COMMENTS | |||
| 243 | ----------------------------------------------- */ | 234 | ----------------------------------------------- */ | |||
| 244 | #comments{padding:10px;} | 235 | #comments{padding:10px;} | |||
| 245 | #comments h4{font:140% Verdana,Sans-serif;margin:0 0 1em;} | 236 | #comments h4{font:140% Verdana,Sans-serif;margin:0 0 1em;} | |||
| 246 | #comments h4 span{color:#776;font:85% Verdana,Sans-serif;} | 237 | #comments h4 span{color:#776;font:85% Verdana,Sans-serif;} | |||
| 247 | #comments dl{font-size:85%;line-height:1.6em;} | 238 | #comments dl{font-size:85%;line-height:1.6em;} | |||
| 248 | #comments dt{background:#eee;font-weight:400;padding:8px 6px .5em;} | 239 | #comments dt{background:#eee;font-weight:400;padding:8px 6px .5em;} | |||
| 249 | #comments dd{background:#eee;margin:0 0 1.5em;padding:2px 20px 8px;} | 240 | #comments dd{background:#eee;margin:0 0 1.5em;padding:2px 20px 8px;} | |||
| 250 | form table tr td{vertical-align:top;} | 241 | form table tr td{vertical-align:top;} | |||
| 251 | #comments dt.alt,#comments dd.alt{background:#ddd;} | 242 | #comments dt.alt,#comments dd.alt{background:#ddd;} | |||
| 252 | #comments dd del:hover,#comments dd del:active{color:#333;text-decoration:none;} | 243 | #comments dd del:hover,#comments dd del:active{color:#333;text-decoration:none;} | |||
| 253 | #comments .postno{background:url("../img/blog/icon_comment.gif") no-repeat 0 55%;border-right:1px solid #ccc;border-width:0;color:#358;font:180% Georgia,Serif;margin-right:2px;padding:0 5px 0 14px;} | 244 | #comments .postno{background:url("../img/blog/icon_comment.gif") no-repeat 0 55%;border-right:1px solid #ccc;border-width:0;color:#358;font:180% Georgia,Serif;margin-right:2px;padding:0 5px 0 14px;} | |||
| 254 | #comments .alt .postno{border-color:#bbb;} | 245 | #comments .alt .postno{border-color:#bbb;} | |||
| 255 | #comments dt.owner{background:#357;color:#cde;padding-bottom:1em;} | 246 | #comments dt.owner{background:#357;color:#cde;padding-bottom:1em;} | |||
| 256 | #comments dd.owner{padding-top:8px;} | 247 | #comments dd.owner{padding-top:8px;} | |||
| 257 | #comments dt.owner .postno{background:url("../img/blog/icon_comment.gif");border-right-color:#579;color:#9bd;font-weight:400;} | 248 | #comments dt.owner .postno{background:url("../img/blog/icon_comment.gif");border-right-color:#579;color:#9bd;font-weight:400;} | |||
| 258 | #comments dt.owner a{border-width:0;color:#eee;font-weight:700;} | 249 | #comments dt.owner a{border-width:0;color:#eee;font-weight:700;} | |||
| 259 | #comment-notes p{color:#554;font-size:85%;line-height:1.6em;} | 250 | #comment-notes p{color:#554;font-size:85%;line-height:1.6em;} | |||
| 260 | #subcol #comment-notes p{font-size:100%;} | 251 | #subcol #comment-notes p{font-size:100%;} | |||
| 261 | h4#postcomment{margin:0 0 .5em;padding-top:.5em;} | 252 | h4#postcomment{margin:0 0 .5em;padding-top:.5em;} | |||
| 262 | #comment-notes{margin-top:2em;} | 253 | #comment-notes{margin-top:2em;} | |||
| 263 | 254 | |||||
| 264 | /* BOX | 255 | /* BOX | |||
| 265 | ----------------------------------------------- */ | 256 | ----------------------------------------------- */ | |||
| 266 | .layout0 .title{background:url(../img/arrow2.gif) no-repeat 0 3px;color:#000;display:block;font-weight:700;margin:0;padding:1px 5px 1px 13px;} | 257 | .layout0 .title{background:url(../img/arrow2.gif) no-repeat 0 3px;color:#000;display:block;font-weight:700;margin:0;padding:1px 5px 1px 13px;} | |||
| 267 | .layout0 .deco{background:url(../img/dotted.gif) repeat-x bottom;padding-bottom:3px;} | 258 | .layout0 .deco{background:url(../img/dotted.gif) repeat-x bottom;padding-bottom:3px;} | |||
| 268 | .layout0 .boxcontent{display:block;} | 259 | .layout0 .boxcontent{display:block;} | |||
| 269 | .layout1 .title{background:url(../img/box_title_orange.gif);color:#fff;display:block;font-weight:700;margin:0;padding:5px 5px 5px 15px;} | 260 | .layout1 .title{background:url(../img/box_title_orange.gif);color:#fff;display:block;font-weight:700;margin:0;padding:5px 5px 5px 15px;} | |||
| 270 | .layout1 .boxcontent{background:#f2f2f2;display:block;padding:5px;} | 261 | .layout1 .boxcontent{background:#f2f2f2;display:block;padding:5px;} | |||
| 262 | .boxcontent div.savedSearchBox ul {margin:0;padding:0;list-style-type: none;} | |||||
| 263 | .boxcontent div.savedSearchBox ul li {margin:0;padding:0 0 8px 8px;background:url(../img/arrow5.gif) no-repeat 0 5px;} | |||||
| 264 | ||||||
| 271 | .splash0,.splash1,.splash2,.splash3{background:repeat-x;display:block;height:160px;} | 265 | .splash0,.splash1,.splash2,.splash3{background:repeat-x;display:block;height:160px;} | |||
| 272 | .splash1{height:80px;} | 266 | .splash1{height:80px;} | |||
| 273 | .splash2{height:40px;} | 267 | .splash2{height:40px;} | |||
| 274 | .splash3{height:20px;} | 268 | .splash3{height:20px;} | |||
| 275 | .boxEPcontentcolor1{background:#FFF;} | 269 | .boxEPcontentcolor1{background:#FFF;} | |||
| 276 | .boxEPbordercolor1{border-bottom:1px solid #402808;border-left:1px solid #402808;border-right:1px solid #402808;border-top:1px solid #402808;} | 270 | .boxEPbordercolor1{border-bottom:1px solid #402808;border-left:1px solid #402808;border-right:1px solid #402808;border-top:1px solid #402808;} | |||
| 277 | .boxEPTitlecolor1{background:#402808;color:#FFF;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;padding-bottom:2px;padding-top:2px;text-align:left;white-space:nowrap;} | 271 | .boxEPTitlecolor1{background:#402808;color:#FFF;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;padding-bottom:2px;padding-top:2px;text-align:left;white-space:nowrap;} | |||
| 278 | .boxEPLinkcolor1{color:#FFF;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;text-align:left;white-space:nowrap;} | 272 | .boxEPLinkcolor1{color:#FFF;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;text-align:left;white-space:nowrap;} | |||
| 279 | .boxEPPaginationPos{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-style:normal;text-align:left;white-space:nowrap;} | 273 | .boxEPPaginationPos{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-style:normal;text-align:left;white-space:nowrap;} | |||
| 280 | .boxEPPaginationNav{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-style:normal;text-align:right;white-space:nowrap;} | 274 | .boxEPPaginationNav{color:#402808;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-style:normal;text-align:right;white-space:nowrap;} | |||
| 281 | .EPMetaDataTitle{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;text-align:left;vertical-align:top;white-space:nowrap;} | 275 | .EPMetaDataTitle{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;text-align:left;vertical-align:top;white-space:nowrap;} | |||
| 282 | .EPMetaDataValue{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;text-align:left;vertical-align:top;} | 276 | .EPMetaDataValue{color:#000;font-family:Arial, Helvetica, sans-serif;font-size:11px;text-align:left;vertical-align:top;} | |||
| 283 | a.sort{background:url(../img/sort.gif) no-repeat 100% 4px;color:#fff;font-weight:700;padding-right:12px;} | 277 | a.sort{background:url(../img/sort.gif) no-repeat 100% 4px;color:#fff;font-weight:700;padding-right:12px;} | |||
| 284 | .input{color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;font-style:normal;} | 278 | .input{color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;font-style:normal;} | |||
| 285 | .tabs_li{display:inline;list-style-type:none;margin:0;padding:0;text-indent:0;} | 279 | .tabs_li{display:inline;list-style-type:none;margin:0;padding:0;text-indent:0;} | |||
| 286 | .centeredBox{display:block;margin:0 auto;width:95%;} | 280 | .centeredBox{display:block;margin:0 auto;width:95%;} | |||
| 287 | #searchPanel{clear:both;display:block;margin:0 auto;width:100%;} | 281 | #searchPanel{clear:both;display:block;margin:0 auto;width:100%;} | |||
| 288 | .searchPageDetailFrame{display:block;height:100%;width:650px;} | 282 | .searchPageDetailFrame{display:block;height:100%;width:650px;} | |||
| 289 | .searchHit{clear:both;} | 283 | .searchHit{clear:both;} | |||
| 290 | .searchHitInfo{padding:10px 0;} | 284 | .searchHitInfo{padding:10px 0;} | |||
| 291 | .searchHitInfo tr td{font-size:10px;text-align:left;vertical-align:top;} | 285 | .searchHitInfo tr td{font-size:10px;text-align:left;vertical-align:top;} | |||
| 292 | .searchHitMetadataLabel{float:left;} | 286 | .searchHitMetadataLabel{float:left;} | |||
| 293 | .searchHitMetadataColon{float:right;} | 287 | .searchHitMetadataColon{float:right;} | |||
| 294 | div.searchHit hr{background:url(../img/line_200.gif) repeat-x 100%;border:0 solid;clear:both;height:1px;} | 288 | div.searchHit hr{background:url(../img/line_200.gif) repeat-x 100%;border:0 solid;clear:both;height:1px;} | |||
| 295 | .davbox ul{list-style:none;margin:0;padding:0;} | 289 | .davbox ul{list-style:none;margin:0;padding:0;} | |||
| 296 | .davbox li{display:inline;margin:0;padding:0;} | 290 | .davbox li{display:inline;margin:0;padding:0;} | |||
| 297 | .davbox a{display:block;line-height:18px;} | 291 | .davbox a{display:block;line-height:18px;} | |||
| 298 | .layout0,.layout1{clear:both;display:block;margin-bottom:10px;margin-right:5px;} | 292 | .layout0,.layout1{clear:both;display:block;margin-bottom:10px;margin-right:5px;} | |||
| 299 | .showSearchHitDetails,.searchLink{background:#eee;} | 293 | .showSearchHitDetails,.searchLink{background:#eee;} | |||
| 300 | 294 | |||||
| 301 | 295 | |||||
| 302 | /* JFORUM | 296 | /* JFORUM | |||
| 303 | ----------------------------------------------- */ | 297 | ----------------------------------------------- */ | |||
| 304 | .jforum INPUT{border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;text-indent:2px;} | 298 | .jforum INPUT{border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;text-indent:2px;} | |||
| 305 | .jforum TEXTAREA{border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;} | 299 | .jforum TEXTAREA{border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;} | |||
| 306 | .jforum SELECT{background:#fff;border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;} | 300 | .jforum SELECT{background:#fff;border:1px;border-color:#000;color:#000;font:11px Verdana, Arial, Helvetica, sans-serif;} | |||
| 307 | .jforum INPUT.button{background:#fafafa;border:1px;color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;} | 301 | .jforum INPUT.button{background:#fafafa;border:1px;color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;} | |||
| 308 | .jforum .postbody{font-size:12px;line-height:18px;} | 302 | .jforum .postbody{font-size:12px;line-height:18px;} | |||
| 309 | .jforum TH{background:url(images/cellpic3.gif) #01336b;color:#ffa34f;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;height:25px;} | 303 | .jforum TH{background:url(images/cellpic3.gif) #01336b;color:#ffa34f;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;font-weight:700;height:25px;} | |||
| 310 | .jforum A:hover{color:#DD6900;text-decoration:underline;} | 304 | .jforum A:hover{color:#DD6900;text-decoration:underline;} | |||
| 311 | .jforum HR{border-bottom:#dfdfdf 0 solid;border-left:#dfdfdf 0 solid;border-right:#dfdfdf 0 solid;border-top:#dfdfdf 1px solid;height:0;} | 305 | .jforum HR{border-bottom:#dfdfdf 0 solid;border-left:#dfdfdf 0 solid;border-right:#dfdfdf 0 solid;border-top:#dfdfdf 1px solid;height:0;} | |||
| 312 | .jforum .bodyline{background:#fff;border-bottom:#ccc 1px solid;border-left:#ccc 1px solid;border-right:#ccc 1px solid;border-top:#ccc 1px solid;} | 306 | .jforum .bodyline{background:#fff;border-bottom:#ccc 1px solid;border-left:#ccc 1px solid;border-right:#ccc 1px solid;border-top:#ccc 1px solid;} | |||
| 313 | .jforum .forumline{background:#fff;border-bottom:#069 2px solid;border-left:#069 2px solid;border-right:#069 2px solid;border-top:#069 2px solid;} | 307 | .jforum .forumline{background:#fff;border-bottom:#069 2px solid;border-left:#069 2px solid;border-right:#069 2px solid;border-top:#069 2px solid;} | |||
| 314 | .jforum TD.row1{background:#fafafa;} | 308 | .jforum TD.row1{background:#fafafa;} | |||
| 315 | .jforum TD.row2{background:#f7f7f8;} | 309 | .jforum TD.row2{background:#f7f7f8;} | |||
| 316 | .jforum TD.row3{background:#dfdfdf;} | 310 | .jforum TD.row3{background:#dfdfdf;} | |||
| 317 | .jforum TD.rowpic{background:url(images/cellpic2.jpg) repeat-y #fff;} | 311 | .jforum TD.rowpic{background:url(images/cellpic2.jpg) repeat-y #fff;} | |||
| 318 | .jforum TD.cat{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0;height:29px;} | 312 | .jforum TD.cat{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0;height:29px;} | |||
| 319 | .jforum TD.catHead{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0;font-size:12px;height:29px;} | 313 | .jforum TD.catHead{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0;font-size:12px;height:29px;} | |||
| 320 | .jforum TD.catSides{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;height:28px;} | 314 | .jforum TD.catSides{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;height:28px;} | |||
| 321 | .jforum TD.catLeft{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 0 0 1px;height:28px;} | 315 | .jforum TD.catLeft{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 0 0 1px;height:28px;} | |||
| 322 | .jforum TD.catRight{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;height:28px;} | 316 | .jforum TD.catRight{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;height:28px;} | |||
| 323 | .jforum TD.catBottom{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 1px;height:29px;} | 317 | .jforum TD.catBottom{background:url(images/cellpic1.gif) #dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 1px;height:29px;} | |||
| 324 | .jforum TH.thHead{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0;font-size:12px;font-weight:700;height:28px;} | 318 | .jforum TH.thHead{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0;font-size:12px;font-weight:700;height:28px;} | |||
| 325 | .jforum TH.thSides{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;font-weight:700;height:28px;} | 319 | .jforum TH.thSides{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;font-weight:700;height:28px;} | |||
| 326 | .jforum TH.thTop{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 0 0;font-weight:700;height:28px;} | 320 | .jforum TH.thTop{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 0 0;font-weight:700;height:28px;} | |||
| 327 | .jforum TH.thLeft{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 0 0 1px;font-weight:700;height:28px;} | 321 | .jforum TH.thLeft{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 0 0 1px;font-weight:700;height:28px;} | |||
| 328 | .jforum TH.thRight{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;font-weight:700;height:28px;} | 322 | .jforum TH.thRight{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;font-weight:700;height:28px;} | |||
| 329 | .jforum TH.thBottom{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 1px;font-weight:700;height:28px;} | 323 | .jforum TH.thBottom{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 1px;font-weight:700;height:28px;} | |||
| 330 | .jforum TH.thCornerL{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 0 0 1px;font-weight:700;height:28px;} | 324 | .jforum TH.thCornerL{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 0 0 1px;font-weight:700;height:28px;} | |||
| 331 | .jforum TH.thCornerR{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0 0;font-weight:700;height:28px;} | 325 | .jforum TH.thCornerR{border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:1px 1px 0 0;font-weight:700;height:28px;} | |||
| 332 | .jforum TD.row3Right{background:#dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;} | 326 | .jforum TD.row3Right{background:#dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px 0 0;} | |||
| 333 | .jforum TD.spaceRow{background:#dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;} | 327 | .jforum TD.spaceRow{background:#dfdfdf;border-bottom:#fff solid;border-left:#fff solid;border-right:#fff solid;border-top:#fff solid;border-width:0 1px;} | |||
| 334 | .jforum .maintitle{color:#000;font-family:"Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;font-size:22px;font-weight:700;line-height:120%;text-decoration:none;} | 328 | .jforum .maintitle{color:#000;font-family:"Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;font-size:22px;font-weight:700;line-height:120%;text-decoration:none;} | |||
| 335 | .jforum .gen{color:#000;font-size:12px;} | 329 | .jforum .gen{color:#000;font-size:12px;} | |||
| 336 | .jforum .cattitle{color:#01336b;font-size:12px;font-weight:700;letter-spacing:1px;} | 330 | .jforum .cattitle{color:#01336b;font-size:12px;font-weight:700;letter-spacing:1px;} | |||
| 337 | .jforum .forumlink{color:#01336b;font-size:12px;font-weight:700;} | 331 | .jforum .forumlink{color:#01336b;font-size:12px;font-weight:700;} | |||
| 338 | .jforum .quote{color:#444;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;line-height:125%;} | 332 | .jforum .quote{color:#444;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;line-height:125%;} | |||
| 339 | .jforum .copyright{color:#444;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;letter-spacing:-1px;} | 333 | .jforum .copyright{color:#444;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;letter-spacing:-1px;} | |||
| 340 | .jforum A.copyright{color:#444;text-decoration:none;} | 334 | .jforum A.copyright{color:#444;text-decoration:none;} | |||
| 341 | .jforum A.copyright:hover{color:#000;text-decoration:underline;} | 335 | .jforum A.copyright:hover{color:#000;text-decoration:underline;} | |||
| 342 | .jforum INPUT.mainoption{background:#fafafa;font-weight:700;} | 336 | .jforum INPUT.mainoption{background:#fafafa;font-weight:700;} | |||
| 343 | .jforum INPUT.liteoption{background:#fafafa;font-weight:400;} | 337 | .jforum INPUT.liteoption{background:#fafafa;font-weight:400;} | |||
| 344 | .jforum .helpline{background:#f7f7f8;border-style:none;} | 338 | .jforum .helpline{background:#f7f7f8;border-style:none;} | |||
| 345 | .jforum .moderatortitle{color:#ffa34f;font-size:12px;font-weight:700;} | 339 | .jforum .moderatortitle{color:#ffa34f;font-size:12px;font-weight:700;} | |||
| 346 | .jforum .moderator{color:#060;font-size:12px;} | 340 | .jforum .moderator{color:#060;font-size:12px;} | |||
| 347 | .jforum .admin{color:#FFA34F;font-size:12px;} | 341 | .jforum .admin{color:#FFA34F;font-size:12px;} | |||
| 348 | .jforum FONT,.jforum TD,.jforum P{font-family:Verdana, Arial, Helvetica, sans-serif;} | 342 | .jforum FONT,.jforum TD,.jforum P{font-family:Verdana, Arial, Helvetica, sans-serif;} | |||
| 349 | .jforum PRE,.jforum .code{color:#444;font-family:Courier, 'Courier New', sans-serif;font-size:11px;} | 343 | .jforum PRE,.jforum .code{color:#444;font-family:Courier, 'Courier New', sans-serif;font-size:11px;} | |||
| 350 | .jforum A:link,.jforum A:active,.jforum A:visited{color:#01336b;} | 344 | .jforum A:link,.jforum A:active,.jforum A:visited{color:#01336b;} | |||
| 351 | .jforum .genmed,.jforum .mainmenu,.jforum .name{color:#000;font-size:11px;} | 345 | .jforum .genmed,.jforum .mainmenu,.jforum .name{color:#000;font-size:11px;} | |||
| 352 | .jforum .gensmall,.jforum .postdetails{color:#000;font-size:10px;} | 346 | .jforum .gensmall,.jforum .postdetails{color:#000;font-size:10px;} | |||
| 353 | .jforum A.gen,.jforum A.genmed,.jforum A.gensmall,.jforum A.mainmenu,.jforum A.cattitle,.jforum A.forumlink,.jforum A.nav,.jforum A.topictitle:link,.jforum A.topictitle:visited,.jforum A.postlink:link,.jforum A.postlink:visited{color:#01336b;text-decoration:none;} | 347 | .jforum A.gen,.jforum A.genmed,.jforum A.gensmall,.jforum A.mainmenu,.jforum A.cattitle,.jforum A.forumlink,.jforum A.nav,.jforum A.topictitle:link,.jforum A.topictitle:visited,.jforum A.postlink:link,.jforum A.postlink:visited{color:#01336b;text-decoration:none;} | |||
| 354 | .jforum A.gen:hover,.jforum A.genmed:hover,.jforum A.gensmall:hover,.jforum A.mainmenu:hover,.jforum A.forumlink:hover,.jforum A.topictitle:hover,.jforum A.postlink:hover{color:#01336b;text-decoration:underline;} | 348 | .jforum A.gen:hover,.jforum A.genmed:hover,.jforum A.gensmall:hover,.jforum A.mainmenu:hover,.jforum A.forumlink:hover,.jforum A.topictitle:hover,.jforum A.postlink:hover{color:#01336b;text-decoration:underline;} | |||
| 355 | .jforum A.cattitle:hover,.jforum A.nav:hover{text-decoration:underline;} | 349 | .jforum A.cattitle:hover,.jforum A.nav:hover{text-decoration:underline;} | |||
| 356 | .jforum .nav,.jforum .topictitle,.jforum H1,.jforum H2{color:#000;font-size:11px;font-weight:700;} | 350 | .jforum .nav,.jforum .topictitle,.jforum H1,.jforum H2{color:#000;font-size:11px;font-weight:700;} | |||
| 357 | .jforum INPUT.post,.jforum TEXTAREA.post{background:#fff;} | 351 | .jforum INPUT.post,.jforum TEXTAREA.post{background:#fff;} | |||
| 358 | 352 | |||||
| 359 | /* ADVSEARCH | 353 | /* ADVSEARCH | |||
| 360 | ----------------------------------------------- */ | 354 | ----------------------------------------------- */ | |||
| 361 | .input{color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;font-style:normal;} | 355 | .input{color:#000;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;font-style:normal;} | |||
| 362 | div.searchResultListing{font-size:11px;overflow:auto;overflow-y:hidden;width:100%;} | 356 | div.searchResultListing{font-size:11px;overflow:auto;overflow-y:hidden;width:100%;} | |||
| 363 | .tabs_li{display:inline;list-style-type:none;margin:0;padding:0;text-indent:0;} | 357 | .tabs_li{display:inline;list-style-type:none;margin:0;padding:0;text-indent:0;} | |||
| 364 | #searchPanel{clear:both;float:left;width:100%;} | 358 | #searchPanel{clear:both;float:left;width:100%;} | |||
| 365 | #searchPanel *{font-size:11px;} | 359 | #searchPanel *{font-size:11px;} | |||
| 366 | table.searchResultListing{font-size:11px;margin:10px 0 !important;padding:0;width:100%;} | 360 | table.searchResultListing{font-size:11px;margin:10px 0 !important;padding:0;width:100%;} | |||
| 367 | table.searchResultListing th,table.searchResultListing td{padding:2px 10px 2px 4px !important;text-align:left;vertical-align:top;} | 361 | table.searchResultListing th,table.searchResultListing td{padding:2px 10px 2px 4px !important;text-align:left;vertical-align:top;} | |||
| 368 | table.searchResultListing thead tr{background:#faf1c3;} | 362 | table.searchResultListing thead tr{background:#faf1c3;} | |||
| 369 | table.searchResultListing th.sorted{background:#f6e896;font-weight:700;} | 363 | table.searchResultListing th.sorted{background:#f6e896;font-weight:700;} | |||
| 370 | table.searchResultListing th a,table.searchResultListing th a:visited{color:#000;} | 364 | table.searchResultListing th a,table.searchResultListing th a:visited{color:#000;} | |||
| 371 | table.searchResultListing th a:hover{color:#000;text-decoration:underline;} | 365 | table.searchResultListing th a:hover{color:#000;text-decoration:underline;} | |||
| 372 | table.searchResultListing th.sorted a,table.searchResultListing th.sortable a{background:right top;display:block;width:100%;} | 366 | table.searchResultListing th.sorted a,table.searchResultListing th.sortable a{background:right top;display:block;width:100%;} | |||
| 373 | table.searchResultListing th.sortable a{background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_off.png) no-repeat;padding-right:5px;} | 367 | table.searchResultListing th.sortable a{background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_off.png) no-repeat;padding-right:5px;} | |||
| 374 | table.searchResultListing th.order1 a{background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_down.png) no-repeat;padding-right:5px;} | 368 | table.searchResultListing th.order1 a{background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_down.png) no-repeat;padding-right:5px;} | |||
| 375 | table.searchResultListing th.order2 a{background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_up.png) no-repeat;padding-right:5px;} | 369 | table.searchResultListing th.order2 a{background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_up.png) no-repeat;padding-right:5px;} | |||
| 376 | table.searchResultListing tr.odd{background:#ecf7ce;} | 370 | table.searchResultListing tr.odd{background:#ecf7ce;} | |||
| 377 | table.searchResultListing tr.even{background:#fff;} | 371 | table.searchResultListing tr.even{background:#fff;} | |||
| 378 | div.searchResultListing span.pagelinks a{display:inline;} | 372 | div.searchResultListing span.pagelinks a{display:inline;} | |||
| 379 | 373 | |||||
| 380 | /* ACTION MENUS | 374 | /* ACTION MENUS | |||
| 381 | ----------------------------------------------- */ | 375 | ----------------------------------------------- */ | |||
| 382 | #menu div.menu{background:#d0d0d0 !important;} | 376 | #menu div.menu{background:#d0d0d0 !important;} | |||
| 383 | div.menu a{font-weight:400;} | 377 | div.menu a{font-weight:400;} | |||
| 384 | .nostyle,.nostyle a{font-weight:400;} | 378 | .nostyle,.nostyle a{font-weight:400;} | |||
| 385 | div.menu,div.menu a.menuItem{color:#000;font-family:"MS Sans Serif", Arial, sans-serif;font-size:8pt;font-style:normal;font-weight:400;white-space:nowrap;} | 379 | div.menu,div.menu a.menuItem{color:#000;font-family:"MS Sans Serif", Arial, sans-serif;font-size:8pt;font-style:normal;font-weight:400;white-space:nowrap;} | |||
| 386 | #navigation span a{padding:0 !important;} | 380 | #navigation span a{padding:0 !important;} | |||
| 387 | div.menu{background:#d0d0d0;border:2px solid;border-color:#f0f0f0 #909090 #909090 #f0f0f0;left:0;padding:0 1px 1px 0 !important;position:absolute;top:0;visibility:hidden;z-index:101;} | 381 | div.menu{background:#d0d0d0;border:2px solid;border-color:#f0f0f0 #909090 #909090 #f0f0f0;left:0;padding:0 1px 1px 0 !important;position:absolute;top:0;visibility:hidden;z-index:101;} | |||
| 388 | div.menu a.menuItem{clear:both;color:#000 !important;cursor:default;display:block !important;font-family:Arial, Helvetica, sans-serif;font-weight:400;padding:3px 1em !important;text-decoration:none;white-space:nowrap;width:220px;} | 382 | div.menu a.menuItem{clear:both;color:#000 !important;cursor:default;display:block !important;font-family:Arial, Helvetica, sans-serif;font-weight:400;padding:3px 1em !important;text-decoration:none;white-space:nowrap;width:220px;} | |||
| 389 | div.menu a.menuItem:hover,div.menu a.menuItemHighlight{background:navy !important;color:#fff !important;text-decoration:none !important;} | 383 | div.menu a.menuItem:hover,div.menu a.menuItemHighlight{background:navy !important;color:#fff !important;text-decoration:none !important;} | |||
| 390 | div.menu a.menuItem span.menuItemArrow{margin-right:-0.75em !important;} | 384 | div.menu a.menuItem span.menuItemArrow{margin-right:-0.75em !important;} | |||
| 391 | div.menu div.menuItemSep{border-bottom:1px solid #f0f0f0;border-top:1px solid #909090;margin:4px 2px;} | 385 | div.menu div.menuItemSep{border-bottom:1px solid #f0f0f0;border-top:1px solid #909090;margin:4px 2px;} | |||
| 392 | fieldset{clear:both;margin:0;padding:0;} | 386 | fieldset{clear:both;margin:0;padding:0;} | |||
| 393 | 387 | |||||
| 394 | 388 | |||||
| 395 | /* PORTLETS | 389 | /* PORTLETS | |||
| 396 | ----------------------------------------------- */ | 390 | ----------------------------------------------- */ | |||
| 397 | ul.portletModes{background:url(images/portlets/tabBorder.gif) repeat-x bottom;color:#515C6A;float:right;list-style:none;margin:0;padding:0 0 0 2px;} | 391 | ul.portletModes{background:url(images/portlets/tabBorder.gif) repeat-x bottom;color:#515C6A;float:right;list-style:none;margin:0;padding:0 0 0 2px;} | |||
| 398 | ul.portletModes a{background:url(images/portlets/tabRight.gif) no-repeat right top;border-bottom:1px solid #515C6A;float:left;margin-right:2px;text-decoration:none;} | 392 | ul.portletModes a{background:url(images/portlets/tabRight.gif) no-repeat right top;border-bottom:1px solid #515C6A;float:left;margin-right:2px;text-decoration:none;} | |||
| 399 | ul.portletModes a:hover{background:100% -26px;} | 393 | ul.portletModes a:hover{background:100% -26px;} | |||
| 400 | ul.portletModes a:hover span{background:0 -26px;} | 394 | ul.portletModes a:hover span{background:0 -26px;} | |||
| 401 | ul.portletModes li.current a{background:100% -26px;border-width:0;} | 395 | ul.portletModes li.current a{background:100% -26px;border-width:0;} | |||
| 402 | ul.portletModes li.current span{background:0 -26px;padding-bottom:1px;} | 396 | ul.portletModes li.current span{background:0 -26px;padding-bottom:1px;} | |||
| 403 | ul.portletModes span{background:url(images/portlets/tabLeft.gif) no-repeat left top;color:#515C6A;display:block;float:none;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;padding:1px 6px 1px 22px;white-space:nowrap;} | 397 | ul.portletModes span{background:url(images/portlets/tabLeft.gif) no-repeat left top;color:#515C6A;display:block;float:none;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;padding:1px 6px 1px 22px;white-space:nowrap;} | |||
| 404 | ul.windowStates{background:url(images/portlets/tabBorder.gif) repeat-x bottom;color:#515C6A;float:right;list-style:none;margin:0;padding:0;} | 398 | ul.windowStates{background:url(images/portlets/tabBorder.gif) repeat-x bottom;color:#515C6A;float:right;list-style:none;margin:0;padding:0;} | |||
| 405 | ul.windowStates a{background:url(images/windowStates.gif) no-repeat left top;border-bottom:1px solid #515C6A;float:left;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;height:14px;margin-right:2px;text-decoration:none;width:17px;z-index:1;} | 399 | ul.windowStates a{background:url(images/windowStates.gif) no-repeat left top;border-bottom:1px solid #515C6A;float:left;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:9px;height:14px;margin-right:2px;text-decoration:none;width:17px;z-index:1;} | |||
| 406 | ul.windowStates a.maximized{background:url(images/portlets/windowStates_maximized.gif);} | 400 | ul.windowStates a.maximized{background:url(images/portlets/windowStates_maximized.gif);} | |||
| 407 | ul.windowStates a.minimized{background:url(images/portlets/windowStates_minimized.gif);} | 401 | ul.windowStates a.minimized{background:url(images/portlets/windowStates_minimized.gif);} | |||
| 408 | ul.windowStates a.normal{background:url(images/portlets/windowStates_normal.gif);} | 402 | ul.windowStates a.normal{background:url(images/portlets/windowStates_normal.gif);} | |||
| 409 | ul.windowStates a:hover{background:0 -15px;}/* Commented Backslash Hack hides rule from IE5-Mac \*/ | 403 | ul.windowStates a:hover{background:0 -15px;}/* Commented Backslash Hack hides rule from IE5-Mac \*/ | |||
| 410 | ul.windowStates div{float:none;}/* End IE5-Mac hack */ | 404 | ul.windowStates div{float:none;}/* End IE5-Mac hack */ | |||
| 411 | ul.portletModes li,ul.windowStates li{display:inline;margin:0;padding:0;} | 405 | ul.portletModes li,ul.windowStates li{display:inline;margin:0;padding:0;} | |||
| 412 | ul.windowStates a span,ul.windowStates li.current a{display:none;} | 406 | ul.windowStates a span,ul.windowStates li.current a{display:none;} | |||
| 413 | 407 | |||||
| 414 | /* PORTAL PORTLETS CLASS REF | 408 | /* PORTAL PORTLETS CLASS REF | |||
| 415 | ----------------------------------------------- */ | 409 | ----------------------------------------------- */ | |||
| 416 | .Portal-Portlet-Title{background:#CC9;border:1px solid #000;color:#000;font-family:Verdana, Arial, Helvetica;font-size:180%;font-weight:700;margin-left:auto;margin-right:auto;padding:4px;text-align:center;} | 410 | .Portal-Portlet-Title{background:#CC9;border:1px solid #000;color:#000;font-family:Verdana, Arial, Helvetica;font-size:180%;font-weight:700;margin-left:auto;margin-right:auto;padding:4px;text-align:center;} | |||
| 417 | .Portal-Portlet-Information{color:#000;font-family:Verdana, Arial, Helvetica;font-size:120%;font-style:oblique;font-weight:700;margin:.5em auto 1em;padding:4px;text-align:center;width:400px;} | 411 | .Portal-Portlet-Information{color:#000;font-family:Verdana, Arial, Helvetica;font-size:120%;font-style:oblique;font-weight:700;margin:.5em auto 1em;padding:4px;text-align:center;width:400px;} | |||
| 418 | .Portal-Portlet-Group{border:2px solid #000;margin-left:auto;margin-right:auto;margin-top:1em;text-align:center;width:400px;} | 412 | .Portal-Portlet-Group{border:2px solid #000;margin-left:auto;margin-right:auto;margin-top:1em;text-align:center;width:400px;} | |||
| 419 | .Portal-Portlet-Footer{color:#000;font-family:Verdana, Arial, Helvetica;font-size:90%;} | 413 | .Portal-Portlet-Footer{color:#000;font-family:Verdana, Arial, Helvetica;font-size:90%;} | |||
| 420 | 414 | |||||
| 421 | /* PORTAL_PORTLET_GROUP CLASS REFERENCES | 415 | /* PORTAL_PORTLET_GROUP CLASS REFERENCES | |||
| 422 | ----------------------------------------------- */ | 416 | ----------------------------------------------- */ | |||
| 423 | .Portal-Portlet-Group-Title{background:#CC9;border-bottom:2px solid #000;color:#000;font-family:Verdana, Arial, Helvetica;font-size:150%;font-weight:700;padding:4px;} | 417 | .Portal-Portlet-Group-Title{background:#CC9;border-bottom:2px solid #000;color:#000;font-family:Verdana, Arial, Helvetica;font-size:150%;font-weight:700;padding:4px;} | |||
| 424 | .Portal-Portlet-Group-Content{color:#000;font-family:Verdana, Arial, Helvetica;font-size:110%;margin-top:1em;text-decoration:none;} | 418 | .Portal-Portlet-Group-Content{color:#000;font-family:Verdana, Arial, Helvetica;font-size:110%;margin-top:1em;text-decoration:none;} | |||
| 425 | .Portal-Portlet-Group-Footer{margin-top:2em;text-align:center;} | 419 | .Portal-Portlet-Group-Footer{margin-top:2em;text-align:center;} | |||
| 426 | 420 | |||||
| 427 | /* PORTAL-PORTLET-GROUP-SUBGROUP CLASS REFERENCES | 421 | /* PORTAL-PORTLET-GROUP-SUBGROUP CLASS REFERENCES | |||
| 428 | ----------------------------------------------- */ | 422 | ----------------------------------------------- */ | |||
| 429 | .Portal-Portlet-Group-SubGroup{background:#87ACD6;color:#000;font-family:Verdana, Arial, Helvetica;font-size:100%;font-weight:700;margin:0 1em;padding:4px;} | 423 | .Portal-Portlet-Group-SubGroup{background:#87ACD6;color:#000;font-family:Verdana, Arial, Helvetica;font-size:100%;font-weight:700;margin:0 1em;padding:4px;} | |||
| 430 | 424 | |||||
| 431 | /* PORTAL-PORTLET-GROUP-CONTENT CLASS REFERENCES | 425 | /* PORTAL-PORTLET-GROUP-CONTENT CLASS REFERENCES | |||
| 432 | ----------------------------------------------- */ | 426 | ----------------------------------------------- */ | |||
| 433 | /* Used in products like JMV for displaying a list of areas */ | 427 | /* Used in products like JMV for displaying a list of areas */ | |||
| 434 | .Portal-Portlet-Group-Content-ListItem{color:#000;font-family:Verdana, Arial, Helvetica;font-size:100%;font-weight:700;margin-top:3px;padding:4px;text-align:left;} | 428 | .Portal-Portlet-Group-Content-ListItem{color:#000;font-family:Verdana, Arial, Helvetica;font-size:100%;font-weight:700;margin-top:3px;padding:4px;text-align:left;} | |||
| 435 | .Portal-Portlet-Group-Content-ListItem a:link{color:#035AB4;text-decoration:underline;} | 429 | .Portal-Portlet-Group-Content-ListItem a:link{color:#035AB4;text-decoration:underline;} | |||
| 436 | .Portal-Portlet-Group-Content-ListItem a:visited{color:#8403AF;text-decoration:underline;} | 430 | .Portal-Portlet-Group-Content-ListItem a:visited{color:#8403AF;text-decoration:underline;} | |||
| 437 | .Portal-Portlet-Group-Content-ListItem a:hover{color:#D9011A;text-decoration:underline;} | 431 | .Portal-Portlet-Group-Content-ListItem a:hover{color:#D9011A;text-decoration:underline;} | |||
| 438 | .graph{border:1px solid #7ca648;color:#333;padding:1px;position:relative;width:200px;} | 432 | .graph{border:1px solid #7ca648;color:#333;padding:1px;position:relative;width:200px;} | |||
| 439 | .graph .bar{background:#7ca648;color:#fff;display:block;height:1.5em;line-height:1.5em;position:relative;text-align:center;} | 433 | .graph .bar{background:#7ca648;color:#fff;display:block;height:1.5em;line-height:1.5em;position:relative;text-align:center;} | |||
| 440 | .graph .bar span{left:1em;position:absolute;} | 434 | .graph .bar span{left:1em;position:absolute;} | |||
| 441 | 435 | |||||
| 442 | /* PORTAL-PORTLET-GROUP-MATRIX | 436 | /* PORTAL-PORTLET-GROUP-MATRIX | |||
| 443 | This Class reference group handles formatting | 437 | This Class reference group handles formatting | |||
| 444 | objects-products-etc within a matrix. | 438 | objects-products-etc within a matrix. | |||
| 445 | ----------------------------------------------- */ | 439 | ----------------------------------------------- */ | |||
| 446 | .Portal-Portlet-Group-Content-Matrix{border:solid #6495ED;border-width:2px;margin-left:auto;margin-right:auto;text-align:center;width:90%;} | 440 | .Portal-Portlet-Group-Content-Matrix{border:solid #6495ED;border-width:2px;margin-left:auto;margin-right:auto;text-align:center;width:90%;} | |||
| 447 | .Portal-Portlet-Group-Content-Matrix-Image{background:#C8C8C8;border:solid #6495ED;border-width:2px;} | 441 | .Portal-Portlet-Group-Content-Matrix-Image{background:#C8C8C8;border:solid #6495ED;border-width:2px;} | |||
| 448 | .Portal-Portlet-Group-Content-Matrix-Loop{border:solid #6495ED;border-width:2px;} | 442 | .Portal-Portlet-Group-Content-Matrix-Loop{border:solid #6495ED;border-width:2px;} | |||
| 449 | .Portal-Portlet-Group-Content-Matrix-Loopcontrol{background:#C8C8C8;color:#FFF;} | 443 | .Portal-Portlet-Group-Content-Matrix-Loopcontrol{background:#C8C8C8;color:#FFF;} | |||
| 450 | .inputError{color:red;} | 444 | .inputError{color:red;} | |||
| 451 | 445 | |||||
| 452 | /* COMPARE HIGHLIGHTING STYLE | 446 | /* COMPARE HIGHLIGHTING STYLE | |||
| 453 | ----------------------------------------------- */ | 447 | ----------------------------------------------- */ | |||
| 454 | span.compareAddedDifference,div#navigation span.compareAddedDifference,div#topmenu span.compareAddedDifference{background:aqua !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;} | 448 | span.compareAddedDifference,div#navigation span.compareAddedDifference,div#topmenu span.compareAddedDifference{background:aqua !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;} | |||
| 455 | span.compareChangedDifference,div#navigation span.compareChangedDifference,div#topmenu span.compareChangedDifference{background:lime !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;} | 449 | span.compareChangedDifference,div#navigation span.compareChangedDifference,div#topmenu span.compareChangedDifference{background:lime !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;} | |||
| 456 | span.compareDeletedDifference,div#navigation a span.compareDeletedDifference,div#topmenu span.compareDeletedDifference{background:red !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;text-decoration:line-through !important;} | 450 | span.compareDeletedDifference,div#navigation a span.compareDeletedDifference,div#topmenu span.compareDeletedDifference{background:red !important;border-bottom:none !important;color:#000 !important;display:inline !important;margin:0 !important;padding:0 !important;text-decoration:line-through !important;} | |||
| 457 | 451 | |||||
| 458 | 452 | |||||
| 459 | /* Form Generator Display Tag | 453 | /* Form Generator Display Tag | |||
| 460 | ----------------------------------------------- */ | 454 | ----------------------------------------------- */ | |||
| 461 | .formResultListing a,table.files a{color:#402808;display:block;padding-bottom:2px;} | 455 | .formResultListing a,table.files a{color:#402808;display:block;padding-bottom:2px;} | |||
| 462 | table.formResultListing{font-size:11px;margin:10px 0 !important;padding:0;width:670px;display:block;} | 456 | table.formResultListing{font-size:11px;margin:10px 0 !important;padding:0;width:670px;display:block;} | |||
| 463 | table.formResultListing th, table.formResultListing td{padding:2px 10px 2px 4px !important;text-align:left;vertical-align:top;} | 457 | table.formResultListing th, table.formResultListing td{padding:2px 10px 2px 4px !important;text-align:left;vertical-align:top;} | |||
| 464 | table.formResultListing thead tr{background:#faf1c3;} | 458 | table.formResultListing thead tr{background:#faf1c3;} | |||
| 465 | table.formResultListing th.sorted{background:#f6e896;font-weight:700;} | 459 | table.formResultListing th.sorted{background:#f6e896;font-weight:700;} | |||
| 466 | table.formResultListing th a,table.formResultListing th a:visited{color:#000;} | 460 | table.formResultListing th a,table.formResultListing th a:visited{color:#000;} | |||
| 467 | table.formResultListing th a:hover{color:#000;text-decoration:underline;} | 461 | table.formResultListing th a:hover{color:#000;text-decoration:underline;} | |||
| 468 | table.formResultListing th.sorted a,table.formResultListing th.sortable a{background:right top;display:block;width:100%;} | 462 | table.formResultListing th.sorted a,table.formResultListing th.sortable a{background:right top;display:block;width:100%;} | |||
| 469 | table.formResultListing th.sortable a{padding-left: 12px; background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_off.png) no-repeat;padding-right:5px;} | 463 | table.formResultListing th.sortable a{padding-left: 12px; background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_off.png) no-repeat;padding-right:5px;} | |||
| 470 | table.formResultListing th.order1 a{background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_down.png) no-repeat;padding-right:5px;} | 464 | table.formResultListing th.order1 a{background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_down.png) no-repeat;padding-right:5px;} | |||
| 471 | table.formResultListing th.order2 a{background:url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_up.png) no-repeat;padding-right:5px;} | 465 | table.formResultListing th.order2 a{background:url(<%=c tx%>/jsp/jahia/engines/images/arrow_up.png) no-repeat;padding-right:5px;} | |||
| 472 | table.formResultListing tr.odd{background:#ecf7ce;} | 466 | table.formResultListing tr.odd{background:#ecf7ce;} | |||
| 473 | table.formResultListing tr.even{background:#fff;} | 467 | table.formResultListing tr.even{background:#fff;} | |||
| 474 | div.formResultListing span.pagelinks a {display: inline;} | 468 | div.formResultListing span.pagelinks a {display: inline;} | |||
| 475 | div.formResultListing span.pagebanner {width:670px; display:block;} | 469 | div.formResultListing span.pagebanner {width:670px; display:block;} | |||
| 476 | 470 | |||||
| 477 | /* Versioning revision Display Tag | 471 | /* Versioning revision Display Tag | |||
| 478 | ----------------------------------------------- */ | 472 | ----------------------------------------------- */ | |||
| 479 | table.revisionsListing {border: 1px solid #666;width: 80%;margin: 10px 0 0 0 !important;} | 473 | table.revisionsListing {border: 1px solid #666;width: 80%;margin: 10px 0 0 0 !important;} | |||
| 480 | table.revisionsListing th, table.revisionsListing td {padding: 2px 10px 2px 4px !important;text-align: left;vertical-align: top;} | 474 | table.revisionsListing th, table.revisionsListing td {padding: 2px 10px 2px 4px !important;text-align: left;vertical-align: top;} | |||
| 481 | table.revisionsListing thead tr {background-color: #fc0;} | 475 | table.revisionsListing thead tr {background-color: #fc0;} | |||
| 482 | table.revisionsListing th.sorted {background-color: orange;} | 476 | table.revisionsListing th.sorted {background-color: orange;} | |||
| 483 | table.revisionsListing th a,table.revisionsListing th a:visited {color: black;} | 477 | table.revisionsListing th a,table.revisionsListing th a:visited {color: black;} | |||
| 484 | table.revisionsListing th a:hover {text-decoration: underline;color: black;} | 478 | table.revisionsListing th a:hover {text-decoration: underline;color: black;} | |||
| 485 | table.revisionsListing th.sorted a,table.revisionsListing th.sortable a {background-position: right top;display: block;width: 100%;} | 479 | table.revisionsListing th.sorted a,table.revisionsListing th.sortable a {background-position: right top;display: block;width: 100%;} | |||
| 486 | table.revisionsListing th.sortable a {padding-right: 5px;background-image: url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_off.png);background-repeat:no-repeat;} | 480 | table.revisionsListing th.sortable a {padding-right: 5px;background-image: url(<%=c tx%>/jsp/jahia/engines/images/arrow_off.png);background-repeat:no-repeat;} | |||
| 487 | table.revisionsListing th.order1 a {padding-right: 5px;background-image: url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_down.png);background-repeat:no-repeat;} | 481 | table.revisionsListing th.order1 a {padding-right: 5px;background-image: url(<%=c tx%>/jsp/jahia/engines/images/arrow_down.png);background-repeat:no-repeat;} | |||
| 488 | table.revisionsListing th.order2 a {padding-right: 5px;background-image: url(< content:serverHttpPath/>/jsp/jahia/engines/images/arrow_up.png);background-repeat:no-repeat;} | 482 | table.revisionsListing th.order2 a {padding-right: 5px;background-image: url(<%=c tx%>/jsp/jahia/engines/images/arrow_up.png);background-repeat:no-repeat;} | |||
| 489 | table.revisionsListing tr.odd {background-color: #fff} | 483 | table.revisionsListing tr.odd {background-color: #fff} | |||
| 490 | table.revisionsListing tr.tableRowEven,tr.even {background-color: #fea} | 484 | table.revisionsListing tr.tableRowEven,tr.even {background-color: #fea} | |||
| 491 | table.revisionsListing {padding:0px;width: 100%;margin-left: -2px;margin-right: -2px;} | 485 | table.revisionsListing {padding:0px;width: 100%;margin-left: -2px;margin-right: -2px;} | |||
| 492 | table.revisionsListing thead tr {background-color: #69c;} | 486 | table.revisionsListing thead tr {background-color: #69c;} | |||
| 493 | table.revisionsListing tr.even {background-color: #def;} | 487 | table.revisionsListing tr.even {background-color: #def;} | |||
| 494 | div.revisionsListing span.pagelinks a {display: inline;} | 488 | div.revisionsListing span.pagelinks a {display: inline;} | |||
| 495 | th.revisionsListingHeader {font-weight: bold !important;} | 489 | th.revisionsListingHeader {font-weight: bold !important;} | |||
| 496 | .compareAddedDifference {background-color:aqua !important;color:black !important;} | 490 | .compareAddedDifference {background-color:aqua !important;color:black !important;} | |||
| 497 | .compareChangedDifference {background-color:lime !important;color:black !important;} | 491 | .compareChangedDifference {background-color:lime !important;color:black !important;} | |||
| 498 | .compareDeletedDifference {background-color:red !important;text-decoration:line-through !important;color:black !important;} | 492 | .compareDeletedDifference {background-color:red !important;text-decoration:line-through !important;color:black !important;} | |||
| 499 | 493 | |||||
| 500 | 494 | |||||
| 501 | /* ZIMBRA STRUCT CLASS | 495 | /* ZIMBRA STRUCT CLASS | |||
| 502 | ------------------------------------------------ */ | 496 | ------------------------------------------------ */ | |||
| 503 | 497 | |||||
| 504 | .complexTreeWrapper { | 498 | .complexTreeWrapper { | |||
| 505 | padding: 0; | 499 | padding: 0; | |||
| 506 | margin: 0; | 500 | margin: 0; | |||
| 507 | } | 501 | } | |||
| 508 | 502 | |||||
| 509 | .complexTreeWrapper .treeHeader { | 503 | .complexTreeWrapper .treeHeader { | |||
| 510 | *height: 17px; | 504 | *height: 17px; | |||
| 511 | } | 505 | } | |||
| 512 | 506 | |||||
| 513 | .complexTreeWrapper .DwtListView .DwtListView-Rows .Row-selected, | 507 | .complexTreeWrapper .DwtListView .DwtListView-Rows .Row-selected, | |||
| 514 | .complexTreeWrapper .DwtListView .DwtListView-Rows .Row { | 508 | .complexTreeWrapper .DwtListView .DwtListView-Rows .Row { | |||
| 515 | *height: 28px; | 509 | *height: 28px; | |||
| 516 | } | 510 | } | |||
Araxis Merge (but not this generated report) is Copyright © 1993-2003 Araxis Ltd (www.araxis.com). All rights reserved.