Changes for page Skin
Last modified by laurent Lunati on 31/07/2009 14:33
To version
4.1
edited by laurent Lunati
on 31/07/2009 14:33
on 31/07/2009 14:33
Change comment:
There is no comment for this version
Summary
Details
- Page properties
-
- Content
-
... ... @@ -1,2 +1,5 @@ 1 1 2 2 3 += Skin dédiée au test des modifications de VM= 4 + 5 +Appliquée uniquement sur cet espace pour l'instant
- XWiki.XWikiSkins[0]
-
- attachmentsinline.vm
-
... ... @@ -1,0 +1,97 @@ 1 +$xwiki.jsfx.use('js/xwiki/viewers/attachments.js', {'forceSkinAction': true, 'language': ${context.language}}) 2 +$xwiki.ssfx.use('js/xwiki/viewers/attachments.css', true) 3 +#macro(dynamicsize $sz) 4 +#if($sz < 1024) 5 +$sz bytes## 6 +#else 7 +#set($ksz = $mathtool.div($sz, 1024)) 8 +#set($ksz = $mathtool.roundTo(1, $ksz)) 9 +#if($ksz < 1024) 10 +${ksz}kb## 11 +#else 12 +#set($Msz = $mathtool.div($sz, 1048576)) 13 +#set($Msz = $mathtool.roundTo(1, $Msz)) 14 +${Msz}Mb## 15 +#end## 16 +#end## 17 +#end 18 +### 19 +### List document attachments 20 +### 21 +### TODO: web service? 22 +### 23 +#if($request.xredirect) 24 +#set( $redirect = $request.xredirect) 25 +#else 26 +#set( $redirect = "${doc.getURL()}#Attachments") 27 +#end 28 +#set($showactions = 0) 29 +#set($attachments = $doc.attachmentList) 30 + <div id="attachmentscontent" class="xwikiintracontent"> 31 + <div id="attw"> 32 + <div id="_attachments"> 33 +#if($attachments.size()>0) 34 +#foreach ($attach in $attachments) 35 + <div class="attachment #if($velocityCount % 2 == 0) even #else odd #end"> 36 + <span class="mime">#mimetypeimg($attach.getMimeType().toLowerCase() $attach.getFilename().toLowerCase())</span> 37 + <div class="information"> 38 + <span class="name"><a href="$doc.getAttachmentURL(${attach.filename}, 'download')" title="$msg.get('core.viewers.attachments.download')">#packName($attach.filename)</a></span> 39 +#if($hasEdit || $hasAdmin) 40 + <span class="xwikibuttonlinks"> 41 + ## Delete attachment link 42 + <a class="deletelink" href="$doc.getAttachmentURL(${attach.filename}, 'delattachment', "xredirect=${redirect}")" title="$msg.get('core.viewers.attachments.deleteTitle', [$xwiki.getXMLEncoded($attach.filename)])">$msg.get('core.viewers.attachments.delete')</a> 43 + ## Dav Edit attachment link. We display the link hidden by default, and let the WebDAV JSX extension display it if 44 + ## the browser supports Dav Edit 45 + #set($documentUrl=$doc.getExternalURL("download")) 46 + #set($attachmentUrl="$documentUrl/$attach.filename") 47 + #set($attachmentSignature="${request.contextPath}${request.servletPath}/download/") 48 + #set($webdavSignature="${request.contextPath}/webdav/spaces/") 49 + #set($fragments=$attachmentUrl.split($attachmentSignature)) 50 + #if($listtool.size($fragments) == 2) 51 + #set($prefix=$listtool.get($fragments, 0)) 52 + #set($suffix=$listtool.get($fragments, 1)) 53 + #set($davUrl="$prefix$webdavSignature$suffix") 54 + <a title="$msg.get('core.viewers.attachments.webdavEdit.title')" class="editlink hidden" href="$davUrl" onclick="if(XWiki && XWiki.WebDAV){XWiki.WebDAV.davEdit('$davUrl')}; return false;">$msg.get('core.viewers.attachments.webdavEdit')</a> 55 + #end 56 + </span> 57 +#end ## hasEdit 58 + <span class="version"><a href="$doc.getAttachmentURL(${attach.filename}, 'viewattachrev')" title="$msg.get('core.viewers.attachments.showHistory')">$attach.version</a></span> 59 + <div class="meta"> 60 + <span class="publisher">$msg.get('core.viewers.attachments.author', [$xwiki.getUserName($attach.author)])</span> 61 + <span class="date">$msg.get('core.viewers.attachments.date', [$!xwiki.formatDate($attach.date)])</span> 62 + <span class="size">(#dynamicsize($attach.filesize))</span> 63 + </div> 64 + </div> 65 + </div> ## row 66 +#end ## foreach 67 +<script type="text/javascript"> 68 +// <![CDATA[ 69 +// Let XWiki.WebDAV JS display links only if the browser support WebDAV. 70 +if (XWiki && XWiki.WebDAV) { XWiki.WebDAV.displayDavLinks($('_attachments')); } 71 +// ]]> 72 +</script> 73 +#else ## No attachments 74 +<p class="noitems">$msg.get('core.viewers.attachments.noAttachments')</p> 75 +#end 76 +#if($hasEdit || $hasAdmin) 77 + <form action="$doc.getURL("upload")" enctype="multipart/form-data" method="post" id="AddAttachment"> 78 +<div> 79 +<input type="hidden" name="xredirect" value="${xwiki.getFormEncoded($redirect)}" /> 80 +<fieldset id="attachform"> 81 + <legend>$msg.get('core.viewers.attachments.upload.title')</legend> 82 + ## Temporarily disabled, until we fix attachment name handling 83 + ## <div><label id="xwikiuploadnamelabel" for="xwikiuploadname">$msg.get('core.viewers.attachments.upload.filename')</label></div> 84 + <div><input id="xwikiuploadname" type="hidden" name="filename" value="" size="40"/></div> 85 + <div><input id="xwikiuploadfile" type="file" name="filepath" value="" size="40" class="uploadFileInput"/></div> 86 + <div class="buttons"> 87 + <span class="buttonwrapper"><input type="submit" value="$msg.get('core.viewers.attachments.upload.submit')" class="button"/></span> 88 + <span class="buttonwrapper"><input type="reset" value="$msg.get('core.viewers.attachments.upload.cancel')" class="button"/></span> 89 + </div> 90 + </fieldset> 91 +</div> 92 + </form> 93 +#end 94 + </div> ## attachments 95 + </div> ## attw 96 + </div> ## attachmentscontent 97 + - comments.css
-
... ... @@ -1,0 +1,118 @@ 1 +.commentthread { 2 + margin: 0 0 20px 32px; 3 +} 4 +.commentthread fieldset { 5 + margin: 0!important; 6 + padding: 0 0 8px 0; 7 + border: none; 8 +} 9 +ul.commentreplies,li.reply { 10 + margin: 0; 11 + padding: 0; 12 + text-indent: 0; 13 +} 14 +li.reply { 15 + list-style-type: none; 16 + margin-top: 4px; 17 +} 18 +* html .reply { 19 + border-top: 1px solid #FFF; 20 +} 21 +.xwikicomment { 22 + padding: 10px 15px; 23 + border: none; 24 + background-color: #f1f1f9; 25 + position: relative; 26 + padding-bottom: 25px; 27 +} 28 +.commentheader { 29 + border-bottom: 1px solid #DDD; 30 + margin: 0 0 0.5em; 31 + padding: 2px 0; 32 +} 33 +.commentheader:hover { 34 + background-color: #FFD; 35 +} 36 +.commentauthor { 37 + font-size: 120%; 38 +} 39 +.commentdate { 40 + font-size: 80%; 41 + float: right; 42 +} 43 +.commentcontent { 44 + border: none; 45 + padding: 0 ; 46 + margin: 0; 47 + font-size: 100%; 48 + font-style: italic; 49 + text-align: justify; 50 +} 51 +.commenttools { 52 + position: absolute; 53 + right: 0px; 54 + bottom: 5px; 55 +} 56 +.commenttool a {} 57 +.commentdelete a { 58 + background-image: url(); 59 +} 60 +.commentreply a { 61 + background-image: url(); 62 +} 63 +#AddComment { 64 + background-color: #e7eff5; 65 + padding: 10px; 66 + border: 1px solid #adc6d8; 67 +} 68 +#commentform div.buttons { 69 +text-align: center; 70 +} 71 +fieldset#commentform.expanded { 72 +border: none; 73 +background-color: transparent; 74 +position: relative; 75 +} 76 +.commentthread #AddComment legend { 77 + display: none; 78 +} 79 +.commentthread #AddComment { 80 + border-top: none; 81 +} 82 +#xwikidata #AddComment { 83 + width: auto; 84 +} 85 +#AddComment .commentcontainer { 86 + padding: 4px 0px; 87 +} 88 +#AddComment .commentcontainer label { 89 + display: none; 90 +} 91 +#AddComment .commentcontainer textarea { 92 + border: 1px solid #DDD; 93 + width: 100%; 94 +} 95 +* html #AddComment .commentcontainer textarea { 96 + width: 98%; 97 +} 98 +#AddComment label { 99 + font-weight: normal; 100 + position: absolute; 101 + top: 0px; 102 + right: 10px; 103 + color: #069; 104 +} 105 +#AddComment label a{ 106 +color: #069; 107 +} 108 +div.notification { 109 + background-color: #FFD; 110 + padding: 2px 32px; 111 + border: 1px solid #DDD; 112 + font-size: 80%; 113 + font-style: italic; 114 + margin: 4px 0; 115 +} 116 +#xwikidata #commentscontent { 117 + background: transparent; 118 +} - Style
-
... ... @@ -1,0 +1,416 @@ 1 +@import "microformats.css"; 2 +@import "toucannew.css"; 3 +/*@import "actionbarfixed.css";*/ 4 +@import "actionbarscroll.css"; 5 +/*@import "mce.css"; old wysiwyg*/ 6 + 7 + 8 + 9 +/* color */ 10 +body#body 11 +{ 12 + font-size: 87.5%; /*10px */ 13 + font-family: sans-serif; 14 + color: #222; 15 + background: #d6e1e7 none repeat-x scroll left top; 16 +} 17 +#companylogo { 18 + background-color: #fff;/* you can replace with your logo BG color value */ 19 + } 20 +#companylogo a, 21 +#companylogo a img { 22 + height: 80px; /* change with your logo Height */ 23 + width: 220px; /* change with your logo width */ 24 +} 25 +#headerspace{ 26 +background-color: #eef5f9; 27 +} 28 +#xwikieditorinner , 29 +#contentcontainer, 30 +#contentcontainerinner, 31 +#contentcolumn 32 + { 33 + background-color: #fff; /* content BG color */ 34 +} 35 +#xwikidatacontents{ 36 + background: #d6e1e7 none repeat-x scroll left top; 37 +} 38 + 39 +/* content border */ 40 +#contentcontainer{ 41 + border: 0px solid #FFF; 42 + border-top: none; 43 +} 44 +#headerspace { 45 + border: 0px solid #fff; 46 + border-bottom: none; 47 +} 48 +/* breadcrumb color */ 49 +#breadcrumbs a, #breadcrumbs { 50 + color: #727272; 51 +} 52 +/* color */ 53 +/* links color */ 54 +a, a:link, a:active, a:visited { 55 + color: #39397f; 56 + text-decoration: none; 57 +} 58 +a:hover { 59 + color: #00007e; 60 + text-decoration: underline; 61 +} 62 +/* log-in register menu link color*/ 63 + #globalmenu a.glink, 64 + #globalmenu a.glink:link, 65 +#globalmenu a.glink:active, 66 +#globalmenu a.glink:visited 67 + { 68 + background-color: transparent; 69 + color: #333; 70 + font-weight: bold; 71 +} 72 +/* panels border and BG color */ 73 +.panel, .fakepanel { 74 + background-color: rgba(255, 255, 255, 0.4) !important; 75 + background-color: #fff; /* for old browser */ 76 + border: 1px solid rgba(255, 255, 255, 0.5) !important; 77 + border-color: #999; /* for old browser */ 78 +} 79 +div.panel.expanded.Search{ 80 + background: rgba(255, 255, 255, 0.4) !important; 81 + background-color: #fff; /* for old browser */ 82 + border: 1px solid rgba(255, 255, 255, 0.8); 83 +} 84 +/* panels title BG color */ 85 +h5.xwikipaneltitle{ 86 + background-color: #fff; /* for old browser */ 87 + background-color: rgba(255, 255, 255, 0.5); 88 +} 89 +/* footer */ 90 +#body #footerglobal { 91 + color: #fff; 92 +} 93 +#body #footerglobal a { 94 + color: #fff; 95 + text-decoration: unederlina; 96 +} 97 + 98 +/* corrections */ 99 + 100 +/* ----------------------------------------- */ 101 +/* --------------comments.css---------------- */ 102 +/* ----------------------------------------- */ 103 + 104 + 105 +#body .commentthread { 106 + margin: 0 0 20px 32px; 107 +} 108 +#body .commentthread fieldset { 109 + margin: 0!important; 110 + padding: 0 0 8px 0; 111 + border: none; 112 +} 113 +#body ul.commentreplies,li.reply { 114 + margin: 0; 115 + padding: 0; 116 + text-indent: 0; 117 +} 118 +#body li.reply { 119 + list-style-type: none; 120 + margin-top: 4px; 121 +} 122 + 123 +#body .xwikicomment { 124 + padding: 10px 15px; 125 + border: none; 126 + background-color: #f1f1f9; 127 + position: relative; 128 + padding-bottom: 25px; 129 +} 130 +#body .commentheader { 131 + border-bottom: 1px solid #DDD; 132 + margin: 0 0 0.5em; 133 + padding: 2px 0; 134 +} 135 +#body .commentheader:hover { 136 + background-color: #FFD; 137 +} 138 +#body .commentauthor { 139 + font-size: 120%; 140 +} 141 +#body .commentdate { 142 + font-size: 80%; 143 + float: right; 144 +} 145 +#body .commentcontent { 146 + border: none; 147 + padding: 0 ; 148 + margin: 0; 149 + font-size: 100%; 150 + font-style: italic; 151 + text-align: justify; 152 +} 153 +#body .commenttools { 154 + position: absolute; 155 + right: 0px; 156 + bottom: 5px; 157 +} 158 +#body .commenttool a {} 159 +#body .commentdelete a { 160 + background-image: url(); 161 +} 162 +#body .commentreply a { 163 + background-image: url(); 164 +} 165 +#body #AddComment { 166 + background-color: #e7eff5; 167 + padding: 10px; 168 + border: 1px solid #adc6d8; 169 +} 170 +#body #commentform div.buttons { 171 +text-align: center; 172 +padding-top: 1em; 173 +} 174 +#body fieldset#commentform.expanded { 175 +border: none; 176 +background-color: transparent; 177 +} 178 +#body .commentthread #AddComment legend { 179 + display: none; 180 +} 181 +#body .commentthread #AddComment { 182 + border-top: none; 183 +} 184 +#body #xwikidata #AddComment { 185 + width: auto; 186 + position: relative; 187 +} 188 +#body #AddComment .commentcontainer { 189 + padding: 4px 0px; 190 +} 191 +#body #AddComment .commentcontainer label { 192 + display: none; 193 +} 194 +#body #AddComment .commentcontainer textarea { 195 + border: 1px solid #DDD; 196 + width: 100%; 197 +} 198 + 199 +#body #AddComment label { 200 + font-weight: normal; 201 + position: absolute; 202 + top: 15px; 203 + right: 20px; 204 + color: #069; 205 +} 206 +#body #AddComment label a{ 207 +color: #069; 208 +} 209 +#body div.notification { 210 + background-color: #FFD; 211 + padding: 2px 32px; 212 + border: 1px solid #DDD; 213 + font-size: 80%; 214 + font-style: italic; 215 + margin: 4px 0; 216 +} 217 +#body #xwikidata #commentscontent { 218 + background: transparent; 219 +} 220 + 221 +/* -------------------------------------------- */ 222 +/* ---------------attachments.css---------------- */ 223 +/* ------------------------------------------- */ 224 + 225 +#body .attachmentActionButton { 226 + background-color: transparent; 227 + border: none; 228 + padding: 2px 4px; 229 + font-size: 80%; 230 + margin-bottom: 4px; 231 + background: transparent 2px center no-repeat; 232 + padding-left: 20px; 233 +} 234 +#body .add-file-input { 235 + margin-left: 10px; 236 + background-image: url(/xwiki/resources/icons/silk/add.gif); 237 + background-position:2px 2px; 238 + font-weight:bold; 239 + line-height:24px; 240 +} 241 +#body .add-file-input:hover { 242 + color: #070; 243 +} 244 +#body .remove-file-input { 245 + background-image: url(/xwiki/resources/icons/silk/cross.gif); 246 + width: 16px; 247 + text-indent: 30px; 248 +} 249 +#body .remove-file-input:hover { 250 + color: #D00; 251 +} 252 +#body .uploadFileInput { 253 + margin: 5px 10px!important; 254 + border: 1px solid #ddd!important; 255 +} 256 +#body .attachment .xwikibuttonlinks a { 257 + width: 16px; 258 + height: 16px; 259 + text-indent: 30px; 260 + line-height: 30px; 261 + overflow: hidden; 262 + background: transparent left top no-repeat; 263 + display: block; 264 + float: right; 265 + margin: 0 0 0 4px; 266 +} 267 +#body .attachment .xwikibuttonlinks a.deletelink { 268 + background-image: url(/xwiki/resources/icons/silk/cross.gif); 269 +} 270 +#body .attachment .xwikibuttonlinks a.editlink { 271 + background-image: url(/xwiki/resources/icons/silk/pencil.gif); 272 +} 273 +#body #AddAttachment { 274 + background-color: #e7eff5; 275 + padding: 10px; 276 + border: 1px solid #adc6d8; 277 + 278 +} 279 +#body #AddAttachment div.buttons { 280 +text-align: center; 281 +padding-top: 1em; 282 +} 283 + 284 + 285 + 286 + 287 + 288 +/* ------------------------------------------------------- */ 289 + 290 + 291 + 292 + 293 +.headerpopup{ 294 +display: none; 295 +} 296 +#menuview{ 297 +display: none; 298 +} 299 +div#xwikimaincontainerinner { 300 +padding-top: 0; 301 +} 302 +body#body #headerglobal{ 303 +float: none; 304 +} 305 +#globaldoctitle{ 306 +display: block; 307 +visibility: hidden; 308 +} 309 +body#body div#xwikimaincontainer #companylogo{ 310 +background-color: transparent; 311 +margin: 0; 312 +height: 30px; 313 +} 314 +#headerspace{ 315 +display: none; 316 +} 317 + 318 +#leftPanels { 319 + margin: -0px 0 0 -220px; 320 +} 321 +.documentheader{ 322 + position: relative; 323 + padding: 20px 20px 0 20px; 324 +} 325 +.documentheader #breadcrumbs { 326 +margin-right: 100px; 327 +} 328 +.documentheader #breadcrumbs a{ 329 +line-height: 1em; 330 +} 331 +.documentheader h1{ 332 +margin: 0.25em 100px 0.25em 0; 333 +} 334 +#menuviewbis{ 335 +margin: 0 -20px; 336 +} 337 +#actionmenu{ 338 +background-color: #d6e1e7; 339 +padding: 5px 0; 340 +} 341 +#body .documentheader #headerspace{ 342 +display: block; 343 +margin: 0; 344 +padding: 0; 345 +background-color: transparent; 346 +} 347 + 348 +a.historybutton{ 349 +position: absolute; 350 +right: 20px; 351 +bottom: 35px; 352 +} 353 +.informationbutton{ 354 +position: absolute; 355 +right: 100px; 356 +bottom: 35px; 357 +} 358 +.tagbutton{ 359 +position: absolute; 360 +right: 200px; 361 +bottom: 35px; 362 +} 363 +#informationpopup, 364 +#tagpopup, 365 +#historypopup{ 366 +position: absolute; 367 +right: 20px; 368 +top: 100%; 369 +margin-top: -60px; 370 +background-color: #fefefe; 371 +box-shadow: 10px 10px 5px #888; 372 +-webkit-box-shadow: 1px 1px 10px #888; 373 +border: 10px solid #333; 374 +width: auto; 375 +height: auto; 376 +z-index: 1000000000; 377 +} 378 +#informationpopup .inner, 379 +#tagpopup .inner, 380 +#historypopup .inner{ 381 +padding: 10px; 382 +} 383 +a.informationbutton, 384 +a.tagbutton, 385 +a.historybutton{ 386 + font-size: 0.9em; 387 + padding: 1px 10px; 388 + background-color: #ddd; 389 + -webkit-border-radius: 8px; 390 + -moz-border-radius: 8px; 391 + color: #fff; 392 + } 393 + a.informationbutton:hover, 394 +a.tagbutton:hover, 395 +a.historybutton:hover{ 396 + background-color: #999; 397 + color: #fff; 398 + } 399 +#actionmenu{ 400 +background-color: #444; 401 +padding:3px 0; 402 +border-top:8px solid #fff; 403 +} 404 + 405 + 406 + 407 + 408 + 409 + 410 + 411 + 412 + 413 + 414 + 415 + 416 + - Header
-
... ... @@ -1,0 +1,34 @@ 1 +### 2 +### Document headers 3 +### 4 +### Contains the global and space zones 5 +### 6 +#template("global.vm") 7 +## 8 +## Contains content from space.vm 9 +## 10 +#set($parents = $util.arrayList) 11 +#set($discard = $parents.add($doc.fullName)) 12 +#macro(breadcrumb $doc $string $level) 13 +#set($parent = $doc.parent) 14 +#if(($parent != "") && ($level < 6) && (!$parents.contains($parent))) 15 +#set($discard = $parents.add($parent)) 16 +#set($pdoc = $xwiki.getDocument($parent).getTranslatedDocument()) 17 +#set($pdocurl = $pdoc.getURL("view")) 18 +#set($nstring = "<a href='$pdocurl'>$xwiki.getXMLEncoded(${pdoc.displayTitle})</a> > $string") 19 +#set($level = $level + 1) 20 +#breadcrumb($pdoc $nstring $level) 21 +#else 22 +$string 23 +#end 24 +#end 25 +#if($context.getMode()==0) ## Visible only in a page 26 +<div id="headerspace" class="layoutsection"> 27 +<div class="minwidth"></div> 28 +<hr/> 29 + <div id="breadcrumbs"> 30 + <span class="breadcrumbspace"><a href="$spaceViewUrl">$xwiki.getXMLEncoded(${doc.space})</a></span><span class="doctitle">$xwiki.getXMLEncoded($tdoc.displayTitle)</span> 31 + ##breadcrumb($doc "<a href='${doc.getURL('view')}'>$xwiki.getXMLEncoded($tdoc.displayTitle)</a>" 0) 32 + </div> 33 +</div> 34 +#end - View
-
... ... @@ -1,0 +1,99 @@ 1 +### 2 +### Main "view" template 3 +### 4 +### General wrapper for view actions 5 +### 6 +#if ($request.getParameter("raw").equals("1")) 7 +#template("code.vm") 8 +#else 9 +#template("startpage.vm") 10 +#if((!$viewer) || ($viewer == "")) 11 +#set($viewer = $request.getParameter("viewer")) 12 +#end 13 +#if((!$viewer) || ($viewer == "")) 14 +#set($viewer = "view") 15 +#end 16 +#if($viewer == "view") 17 +<div class="minwidthb"></div> 18 +## 19 +## my header de test 20 +## 21 +<div class="documentheader"> 22 +#template("space.vm") 23 +<h1>$xwiki.getXMLEncoded($tdoc.displayTitle)</h1> 24 +<div class="about"> 25 +<span id="aboutauthor">$msg.get("lastmodifiedby") $xwiki.getLocalUserName($tdoc.author)</span> 26 +<span id="aboutdate">$msg.get("lastmodifiedon") $!xwiki.formatDate($tdoc.date)</span> 27 +</div> 28 + #if($showhistory != false && $showhistory != "no" && $showhistory != "0" && $showhistory != "false") 29 +<a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('historypopup').style.display = 'block' " class="historybutton">$msg.get("docextra.history")</a> 30 +<div id="historypopup" style="display:none;"><div class="inner"> 31 +<div style='text-align: right;'><a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('historypopup').style.display = 'none' " ><span>Close</span></a></div> 32 +#template("historyinline.vm") 33 +</div></div> 34 + #end 35 + #if($showinformation != false && $showinformation != "no" && $showinformation != "0" && $showinformation != "false") 36 +<a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('informationpopup').style.display = 'block' " class="informationbutton">$msg.get("docextra.information")</a> 37 +<div id="informationpopup" class="headerpopup"> 38 +<div class="inner"> 39 +<div style='text-align: right;'><a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('informationpopup').style.display = 'none' " ><span>Close</span></a></div> 40 +<dl> 41 + <dt>$msg.get('core.viewers.information.creation')</dt> 42 + <dd>$msg.get('core.viewers.information.creationData', [$xwiki.getUserName($doc.creator), $xwiki.formatDate($doc.creationDate)])</dd> 43 + #if($tdoc.realLanguage != $doc.realLanguage) 44 + <dt>$msg.get('core.viewers.information.translationCreation', [$tdoc.realLanguage])</dt> 45 + <dd>$msg.get('core.viewers.information.translationCreationData', [$xwiki.getUserName($tdoc.creator), $xwiki.formatDate($tdoc.creationDate)])</dd> 46 + #end 47 + #if($isAdvancedUser) 48 + #set($pages = $tdoc.includedPages) 49 + #if($pages.size() > 0) 50 + <dt>$msg.get('core.viewers.information.includedPages')</dt> 51 + <dd> 52 + #displayDocumentList($pages true $blacklistedSpaces) 53 + </dd> 54 + #end 55 + #end 56 + #set($blinks = $doc.getBacklinks()) 57 + #if($blinks.size()>0) 58 + <dt>$msg.get('core.viewers.information.backlinks')</dt> 59 + <dd> 60 + #displayDocumentList($blinks true $blacklistedSpaces) 61 + <dd> 62 + #end 63 + </dl> 64 +</div></div> 65 +<a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('tagpopup').style.display = 'block' " class="tagbutton">$msg.get("xe.dashboard.wiki.tagcloud")</a> 66 +<div id="tagpopup" class="headerpopup"> 67 +<div class="inner"> 68 +<div style='text-align: right;'><a onmouseover='this.style.cursor="pointer" ' onfocus='this.blur();' onclick="document.getElementById('tagpopup').style.display = 'none' " ><span>Close</span></a></div> 69 +#if ($xwiki.hasAccessLevel('edit')) 70 + #template("tagedit.vm") 71 +#end 72 +</div></div> 73 + #end 74 + 75 + 76 +<div id="menuviewbis"> 77 + #template("menuview.vm") 78 +</div> 79 +</div> 80 +##### 81 + 82 + 83 + 84 + 85 + 86 +<div class="main layoutsubsection"> 87 +#template("contentview.vm") 88 +#template("docextra.vm") 89 +<div class="clearfloats"></div> 90 +#else 91 +<div class="main layoutsubsection"> 92 +#template("${viewer}.vm") 93 +<div class="clearfloats"> 94 +</div> 95 +#end 96 +</div>## main 97 +#template("endpage.vm") 98 +#end 99 + - actionbarfixed.css
-
... ... @@ -1,0 +1,125 @@ 1 +/* @group ActionMenu */ 2 +/* 3 +--------------------------------------- 4 +Menu 5 +--------------------------------------- 6 +*/ 7 +#actionmenu { 8 + position: absolute; 9 + width: expression( body . scrollLeft + document . body . clientWidth + "px" ); 10 + height: 20px !important; 11 + top: 0; 12 + left: 0; 13 + right: 0; 14 + z-index: 1000; 15 + overflow: visible; 16 + border-top: 0 solid #ccc; 17 + background-color: #ccc; 18 + border-bottom: 1px solid #444; 19 + text-align: center; 20 + color: #fff; 21 + background-image: url( images/actionbar-bg-1.png ); 22 +} 23 +html > body #actionmenu { 24 + position: fixed; 25 + top: 0; 26 + left: 0; 27 + width: 100%; 28 +} 29 +#actionmenu a { 30 + text-decoration: none; 31 + color: #444; 32 + text-decoration: none; 33 + display: block; 34 + width: 70px; 35 + height: 20px; 36 + float: left; 37 + border: 1px solid #444; 38 + border-width: 0 1px; 39 + margin-right: -1px; 40 + text-align: center; 41 + line-height: 20px; 42 + font-size: 0.9em; 43 + font-weight: bold; 44 +} 45 +#actionmenu .editinfo a { 46 + text-decoration: none; 47 + color: #444; 48 + display: inline; 49 + height: 20px; 50 + float: none; 51 + border: 1px solid #444; 52 + border-width: 0; 53 + text-align: center; 54 + line-height: 20px; 55 + font-size: 0.9em; 56 + font-weight: bold; 57 +} 58 +#actionmenu div.leftmenu div:hover a, 59 + #actionmenu a:hover { 60 + color: #fff; 61 + background-image: url( images/actionbar-bg-2.png ); 62 +} 63 +#actionmenu div.leftmenu div:hover .submenu a { 64 + background-image: none; 65 +} 66 +#actionmenu .editinfo a:hover { 67 + color: #fff; 68 +} 69 +.rightmenu { 70 + position: absolute; 71 + right: 0; 72 + margin-right: 25px; 73 +} 74 +#actionmenu .rightmenu a { 75 + width: 100px; 76 +} 77 +#actionmenu .leftmenu #tmDoc { 78 + width: 20px; 79 +} 80 +.leftmenu { 81 + position: absolute; 82 + left: 25px; 83 +} 84 +.topmenuentry { 85 + display: block; 86 + float: left; 87 +} 88 +.rightmenu .topmenuentry { 89 + float: right; 90 +} 91 +#tmWatched a.tme { 92 + color: #4cad1b; 93 +} 94 +.submenu { 95 + display: block; 96 + width: 12em; 97 + position: absolute; 98 + margin-top: 0; 99 + margin-left: 0 !important; 100 + padding: 5px; 101 + border: 1px solid #222; 102 + background-color: #111; 103 +} 104 +.submenu.hidden, .submenu .submenuseparator { 105 + display: none; 106 +} 107 +#actionmenu .submenuitem a, #actionmenu .submenuitem a:link, #actionmenu .submenuitem a:visited, #actionmenu .submenuitem a:active { 108 + display: block; 109 + float: none; 110 + width: 100%; 111 + font-size: 0.8em; 112 + font-weight: bold; 113 + text-decoration: none; 114 + height: auto; 115 + padding: 2px 0 0 0; 116 + line-height: 1.2em; 117 + border: 0; 118 + text-align: left; 119 + color: #fff; 120 +} 121 +#actionmenu .submenuitem a:hover { 122 + text-decoration: underline; 123 + background-image: none; 124 +} 125 +/* @end */ - toucannew.css
-
... ... @@ -1,0 +1,2706 @@ 1 +/* @override http://laurent.myxwiki.org/xwiki/bin/skin/XWiki/DefaultSkin/toucannew.css */ 2 + 3 +/* @override http://laurent.myxwiki.org/xwiki/bin/skin/XWiki/DefaultSkin/toucannew.css */ 4 + 5 +* html { 6 + overflow-y: auto; 7 +} 8 +html, body { 9 + height: 100%; 10 +} 11 +body { 12 + line-height: 1em; 13 + color: black; 14 + background-color: white; 15 + margin: 0; 16 + padding: 0; 17 + border: 0; 18 + font-family: sans-serif; 19 +} 20 +/* @group listes */ 21 +ol { 22 + margin: 1em 0em 1em 1em; 23 + padding: 0 0 0 0; 24 +} 25 +ul { 26 + list-style: circle; 27 + margin: 1em 0em 1em 1em; 28 + padding: 0 0 0 0; 29 +} 30 +.main ol, .main ul { 31 + line-height: 1.4em; 32 + list-style-position: inside; 33 +} 34 +.main ul ol, .main ol ul, 35 +.main ol ol, .main ul ul { 36 + margin: 0em 0em 0em 1em; 37 + 38 +} 39 +.main dt { 40 + font-weight: bold; 41 +} 42 +.main dd { 43 + font-style: italic; 44 + padding-left: 1em; 45 + background: transparent url( images/bullet-3.png ) no-repeat 0 0.3em; 46 +} 47 +.main dd p { 48 + margin-top: 0; 49 +} 50 +.list-title { 51 + font-weight: bold; 52 +} 53 +.list ul { 54 + margin-top: 0; 55 + margin-bottom: 0; 56 + margin-left: 0; 57 + padding-left: 0; 58 + list-style-type: none; 59 +} 60 +/* wiki lists */ 61 +ul.minus { 62 + list-style-type: square; 63 +} 64 +ul.star { 65 + list-style-type: circle; 66 +} 67 +ol.roman { 68 + list-style-type: lower-roman; 69 +} 70 +ol.ROMAN { 71 + list-style-type: upper-roman; 72 +} 73 +ol.alpha { 74 + list-style-type: lower-alpha; 75 +} 76 +ol.ALPHA { 77 + list-style-type: upper-alpha; 78 +} 79 +ol.greek { 80 + list-style-type: lower-greek; 81 +} 82 +ol.GREEK { 83 + list-style-type: upper-greek; 84 +} 85 +/* @end */ 86 +/* @group tables */ 87 + .main caption { 88 + color: #4e6172; 89 + margin: 1em 0 0 0; 90 + padding: 0; 91 + caption-side: top; 92 +} 93 +.main table { 94 + border:1px solid #e5eff8; 95 + border-collapse: collapse; 96 + margin: 1em 0; 97 +} 98 + .main table th{ 99 +padding: 5px; 100 +background: #f4f9fe; 101 +text-align: center; 102 +font: bold 1.2em / 1.4em sans-serif; 103 +color: #66a3d3; 104 +} 105 + .main table td{ 106 +padding: 5px; 107 +} 108 + 109 + .main tr.odd td { 110 + background: #f7fbff 111 +} 112 +.main table.sortable span.sortarrow { 113 + padding-left: 5px; 114 +} 115 +table#memberstable td { 116 + border: none; 117 +} 118 + 119 +/* @end */ 120 +/* @group other */ 121 +.quote { 122 + font-style: italic; 123 + color: inherit; 124 + background-color: inherit; 125 + font-family: inherit; 126 + font-size: inherit; 127 +} 128 +#xwikimaincontainerinner .rssfeed { 129 + padding: 8px; 130 + background-color: transparent; 131 +} 132 +.main img { 133 + margin: 0 134 +} 135 +#xwikicontent .sortarrow img { 136 + margin: 0; 137 +} 138 +.wikimodel-emptyline { 139 + height: 1em; 140 +} 141 + 142 +.wikicreatelink { 143 + text-decoration: none; 144 +} 145 +.wikicreatelinktext { 146 + text-decoration: underline; 147 + color: black; 148 +} 149 +.wikicreatelinkqm { 150 + text-decoration: none; 151 + font-size: 90%; 152 + color: white; 153 + border: 0 solid black; 154 + background: #008; 155 + padding: 0 3px; 156 + margin: 0; 157 + margin-left: 3px; 158 +} 159 +/* Needed for the new rendering with XWiki Syntax 2.0 since we're now using CSS for 160 + displaying the question mark for unknown links */ 161 +span.wikicreatelink a { 162 + text-decoration: underline; 163 + color: black; 164 + background: transparent url("/xwiki/skins/albatross/qm%2Dblue.png") no-repeat scroll right center; 165 + padding-right: 13px; 166 +} 167 +a img { 168 + border: none; 169 +} 170 +:focus { 171 + outline: 0; 172 +} 173 +p { 174 + line-height: 1.4em; 175 + margin: 1em 0; 176 +} 177 +blockquote { 178 + padding: 0.3em 0 0 1em; 179 + quotes: none; 180 + background: #FAFAF6 none repeat scroll 0 0; 181 + border-left: 2px solid #DDDDCC; 182 + display: block; 183 +} 184 + 185 +.hidden { 186 + display: none !important; 187 +} 188 +.invisible { 189 + visibility: hidden !important; 190 +} 191 +.loading { 192 + background-image: url(icons/spinner.gif); 193 + background-position: center center; 194 + background-repeat: no-repeat; 195 +} 196 +/* Used to signify a rendering error in the rendered page. Valid only with new rendering */ 197 +.xwikirenderingerror { 198 + background-color: #eee; 199 + background-image: url(/xwiki/resources/icons/silk/exclamation.gif); 200 + background-position: 2px 50%; 201 + background-repeat: no-repeat; 202 + color: #e14726; 203 + padding: 2px 2px 2px 20px; 204 + border-radius: 5px; 205 + -moz-border-radius: 5px; 206 + -webkit-border-radius: 5px; 207 +} 208 +.xwikirenderingerrordescription { 209 + background-color: #eee; 210 + clear: both; 211 + display: block; 212 + font-family: georgia,verdana,arial; 213 + padding: 5px; 214 + font-size: 80%; 215 + border-radius: 15px; 216 + -moz-border-radius: 15px; 217 + -webkit-border-radius: 15px; 218 + overflow: auto; 219 +} 220 +.main pre p { 221 + margin: 0; 222 +} 223 +tt, tt * { 224 + font-family: monospace; 225 +} 226 +tt.wikimodel-verbatim { 227 + font-family: sans-serif; 228 +} 229 +em { 230 + font-style: italic; 231 +} 232 +strong, .strong { 233 + font-weight: bold; 234 +} 235 +.underline { 236 + text-decoration: underline; 237 +} 238 +/* @end */ 239 +/* @group Titles */ 240 +#doctitle { 241 + font-size: 2.8em; 242 + line-height: 1.1em; 243 + margin: 0 0 30px 0; 244 +} 245 +h1 span, h2 span, h3 span, h4 span, h5 span, h6 span { 246 + overflow: hidden; 247 + display: block; 248 + position: relative; 249 + color: #000; 250 + background-color: inherit; 251 + padding: 0; 252 + margin: 20px 0; 253 + border-bottom: 1px solid #ccc; 254 + font-weight: bold; 255 +} 256 +h1 span span, h2 span span, h3 span span, h4 span span, h5 span span, h6 span span { 257 + display: inline; 258 + color: #000; 259 + background-color: inherit; 260 + padding: 0; 261 + margin: 0; 262 + border-bottom: 0; 263 +} 264 +h1 { 265 + margin-top: 5px; 266 + font-size: 2.3em; 267 + font-weight: bold; 268 + letter-spacing: -1px; 269 + line-height: 1.1em; 270 +} 271 +h2 { 272 + font-weight: bold; 273 + font-style: normal; 274 + font-size: 2em; 275 + line-height: 1.1em; 276 +} 277 +h3 { 278 + font-weight: bold; 279 + font-size: 1.6em; 280 + line-height: 1.1em; 281 + margin: 20px 0; 282 +} 283 +h4 { 284 + font-weight: bold; 285 + color: #404040; 286 + font-size: 1.4em; 287 + line-height: 1.1em; 288 +} 289 +h5 { 290 + font-weight: bold; 291 + color: #404040; 292 + font-style: normal; 293 + font-size: 1.3em; 294 + line-height: 1.1em; 295 +} 296 +h6 { 297 + font-weight: bold; 298 + color: #404040; 299 + font-style: normal; 300 + font-size: 1.2em; 301 + line-height: 1.1em; 302 + margin: 0; 303 +} 304 +h1, h2, h3, h4, h5, h6 { 305 + display: block; 306 + position: relative; 307 +} 308 +span.edit_section { 309 + position: relative; 310 + display: block; 311 + background: #ccc; 312 + margin-top: -20px !important; 313 + visibility: hidden; 314 + overflow: hidden; 315 + height: 24px; 316 + line-height: 24px; 317 + margin-bottom: -1em; 318 + border: 1px solid red; 319 +} 320 +.edit_section a { 321 + position: absolute; 322 + top: 0; 323 + right: 0; 324 + margin: 0; 325 + margin-right: -52px; 326 + padding-left: 50px; 327 + line-height: 24px; 328 + visibility: visible; 329 + background: transparent url( "images/black-edit.png" ) left top no-repeat; 330 + overflow: hidden; 331 + border: 0 solid blue; 332 +} 333 +.main h1 img, .main h2 img, .main h3 img, .main h4 img, .main h5 img, .main h6 img { 334 + margin: 0; 335 + vertical-align: middle; 336 +} 337 +/* @end */ 338 +/* @group code */ 339 +#xwikimaincontainerinner .code { 340 + font-family: courier, courier new, monospace; 341 + white-space: pre; 342 + margin: 1em 0; 343 + padding: 0 1px; 344 + overflow: auto; 345 + background-color: #F1F7FF; 346 + border: 1px dotted #555555; 347 +} 348 +#xwikimaincontainerinner .code pre { 349 + font-family: courier, courier new, monospace; 350 +} 351 +#xwikimaincontainerinner .code .java-keyword { 352 + color: #0000aa; 353 + background-color: inherit; 354 +} 355 +#xwikimaincontainerinner .code .java-object { 356 + color: #000088; 357 + background-color: inherit; 358 +} 359 +#xwikimaincontainerinner .code .java-quote { 360 + color: #00aa00; 361 + background-color: inherit; 362 +} 363 +#xwikimaincontainerinner .code .xml-keyword { 364 + font-weight: bold; 365 +} 366 +#xwikimaincontainerinner .code .xml-tag { 367 + color: #0000aa; 368 + background-color: inherit; 369 +} 370 +#xwikimaincontainerinner .code .sql-keyword { 371 + color: #0000aa; 372 + background-color: inherit; 373 +} 374 +/* @end */ 375 +/* @group calendar */ 376 +.wiki-calendar-table * { 377 + text-align: center; 378 + border-collapse: collapse; 379 + border-spacing: 0; 380 +} 381 +.wiki-calendar-table div { 382 + font-size: 90%; 383 + margin: 2px 0; 384 +} 385 +* html .wiki-calendar-table div { 386 + font-size: 80%; 387 +} 388 +.wiki-calendar-table { 389 + border: 4px solid #C0D4E7; 390 + font-size: 100%; 391 + margin: auto; 392 +} 393 +.wiki-calendar-table td { 394 + vertical-align: top; 395 +} 396 +.wiki-calendar-table th { 397 + background-color: #FFF; 398 +} 399 +.wiki-calendar-table td, .wiki-calendar-table th { 400 + text-align: center; 401 + border: 1px #C0D4E7 solid; 402 + height: 60px; 403 + width: 90px; 404 + padding-top: 0 !important; 405 +} 406 +.wiki-calendar-daynotinmonth { 407 + color: #BBBBBB; 408 + background-color: #E5E5E5; 409 +} 410 +.wiki-calendar-today { 411 + background-color: #C0D4E7; 412 +} 413 +.wiki-calendar-today-notinmonth { 414 + background-color: #D9E0E7; 415 + color: #BBBBBB; 416 +} 417 +.wiki-calendar-daynamerow { 418 + background-color: #C0D4E7 !important; 419 +} 420 +.wiki-calendar-daynamerow th { 421 + background-color: #C0D4E7 !important; 422 + color: #fff; 423 + font-weight: 900; 424 + height: 1.8em; 425 +} 426 +.wiki-calendar-daytitle { 427 + background-color: #E8EEF7; 428 + font-size: 75% !important; 429 + padding: 0 5px; 430 + margin: 0 !important; 431 +} 432 +.wiki-calendar-daynotinmonth .wiki-calendar-daytitle { 433 + background-color: transparent !important; 434 +} 435 +.wiki-calendar-today-notinmonth .wiki-calendar-daytitle { 436 + background-color: transparent !important; 437 +} 438 +.wiki-calendar-today .wiki-calendar-daytitle { 439 + background-color: transparent !important; 440 +} 441 +.wiki-calendar-today-notinmonth a, .wiki-calendar-daynotinmonth a { 442 + color: #BBB !important; 443 +} 444 +.wiki-calendar-monthyearrow { 445 + font-size: 140%; 446 + font-weight: 100; 447 + font-variant: small-caps; 448 + color: #C0D4E7; 449 + border: none !important; 450 + width: auto !important; 451 +} 452 +.wiki-calendar-month-nav { 453 + border: none !important; 454 +} 455 +.wiki-calendar-month-nav * { 456 + font-size: 140%; 457 + font-weight: bold; 458 + color: #C0D4E7 !important; 459 + text-decoration: none; 460 +} 461 +.wiki-calendar-month-nav .disabled { 462 + color: #aaa !important; 463 +} 464 +.wiki-calendar-month-nav a:hover { 465 + text-decoration: none !important; 466 + color: #38c !important; 467 +} 468 +#body .prev-month { 469 + text-align: left; 470 + padding-left: 8px; 471 +} 472 +#body .next-month { 473 + text-align: right; 474 + padding-right: 8px; 475 +} 476 +/* @end */ 477 +/* @group Blog entry */ 478 +.workshop { 479 + background-color: #FED; 480 +} 481 +.event .username { 482 + font-size: 80%; 483 +} 484 +.hentry a h4 { 485 + color: #000; 486 + margin: 0 0 0.5em 0; 487 + font-size: 1.4em; 488 +} 489 +.article_title { 490 + font-size: 120%; 491 + border-bottom: 1px; 492 +} 493 +.article_content { 494 + padding: 10px 0; 495 +} 496 +.article_date { 497 + font-size: 120%; 498 + color: #666; 499 + border-bottom: 1px solid #333; 500 +} 501 +.article_footer { 502 + border-top: 1px dotted; 503 + font-size: 75%; 504 + font-weight: normal; 505 + color: gray; 506 + margin: 0 0 2em 0; 507 +} 508 +#webhomeNewsdisplay ul { 509 + margin-left: 0; 510 +} 511 +#webhomeNewsdisplay ul li { 512 + margin-bottom: 0.5em; 513 +} 514 +/* @end */ 515 +/* @group Footnotes */ 516 +.footnotes { 517 + font-size: 80%; 518 + margin: 10px 0; 519 + border-top: 1px solid #888; 520 + padding: 1em; 521 +} 522 +.footnotes li { 523 + padding: 0 4px; 524 + margin: 0; 525 + list-style-position: inside; 526 +} 527 +.footnoteRef a, .footnoteBackRef { 528 + text-decoration: none; 529 +} 530 +.footnoteRef:target, .footnotes *:target { 531 + border: 1px dotted #888; 532 + background: #FFD; 533 +} 534 +/* @end */ 535 +/* @group Pagination */ 536 +/* (deprecated) */ 537 +.pagedNavigation { 538 + text-align: center; 539 + padding: 8px 0; 540 + margin: auto; 541 +} 542 +.pagedNavigation span { 543 + padding: 0 8px; 544 +} 545 +.pagedNavigation .pagedLink { 546 + background-color: #E5F0FE; 547 +} 548 +.pagedNavigation .inactive { 549 + color: #CCC; 550 +} 551 +.pagedNavigation .pagedLink a { 552 + text-decoration: none; 553 + color: #2E5A87 !important; 554 +} 555 +.pagedNavigation .pagedLink a:hover { 556 + color: #D70 !important; 557 +} 558 +/* @end */ 559 +/* @group @wysiwyg */ 560 +body#body.main{background: #fff none no-repeat scroll 0% 0%;} /* wysiwyg BG*/ 561 +.vcomment { 562 + background-color: #F9F9F9; 563 + font-style: italic; 564 + margin-left: 5px; 565 + margin-right: 10px; 566 +} 567 +/* @end */ 568 +/* @group Layout */ 569 +body { 570 + width: 100%; 571 + padding: 0; 572 + margin: 0; 573 + min-width: 970px; 574 +} 575 +#xwikimaincontainer, 576 + body.hideright #xwikimaincontainer { 577 + line-height: 1.2em; 578 + padding: 0; 579 + text-align: center; 580 + border: none; 581 + overflow-y: hidden; 582 +} 583 +#xwikimaincontainerinner { 584 + height: 100%; 585 + margin: 0 0 0 0; 586 + padding-top: 20px; 587 + border: none; 588 + text-align: left; 589 + clear: both; 590 + margin: 0 30px; 591 +} 592 +body#body.editbody #globallinks, 593 +#globallinks { 594 + position: relative; 595 + float: right; 596 + font-size: 1em; 597 + line-height: 1.2em; 598 + width: 220px; 599 + margin-left: -220px; 600 + height: 80px; 601 +} 602 + 603 +body#body.exportbody #companylogo, 604 +body#body.importbody #companylogo, 605 +body#body.adminbody #companylogo { 606 + margin-right: 30px; 607 + padding-right: 220px; 608 + margin-left: 0; 609 +} 610 +body.hideright #globallinks, 611 + body.hidelefthideright #globallinks, 612 + body.exportbody #globallinks, 613 + body.importbody #globallinks, 614 + body.adminbody #globallinks { 615 + margin-left: -220px; 616 + background-image: none; 617 +} 618 +body.hideright #globallinks a, 619 + body.hidelefthideright #globallinks a, 620 + body.exportbody #globallinks a, 621 + body.importbody #globallinks a, 622 + body.adminbody #globallinks a { 623 + font-size: 0.9em; 624 + font-weight: normal; 625 + padding-right: 10px; 626 +} 627 + 628 +#footerglobal, 629 +#companylogo { 630 + margin: 0 220px; 631 +} 632 +body.hidelefthideright #companylogo { 633 + margin: 0; 634 +} 635 +body.hideleft #companylogo { 636 + margin: 0 220px 0 0; 637 +} 638 +#body.hideright #headerspace, 639 +#body.hideright #footerglobal, 640 +body.hideright #companylogo { 641 + margin: 0 0 0 220px; 642 +} 643 +#body.hideleft #footerglobal, 644 +body#body.editbody #footerglobal, 645 +body#body.editbody #headerspace { 646 + margin: 0 220px 0 0; 647 +} 648 +body.hideleft #headerspace { 649 + margin: 0 220px 0 0; 650 +} 651 +#body.editbody #companylogo , 652 +body#body.adminbody #companylogo, 653 +body#body.exportbody #headerspace, 654 +body#body.importbody #headerspace, 655 +body#body.adminbody #headerspace , 656 +#body.hidelefthideright #headerspace , 657 +#body.hidelefthideright #footerglobal { 658 + margin: 0 220px 0 0; 659 +} 660 +body#body.exportbody #footerglobal, 661 +body#body.importbody #footerglobal, 662 +body#body.adminbody #footerglobal { 663 + margin-right: 0; 664 +} 665 +.leftsidecolumns { 666 + position: relative; 667 + float: left; 668 + width: 100%; 669 +} 670 +#contentcolumn { 671 + position: relative; 672 + float: right; 673 + width: 100%; 674 +} 675 +.main { 676 + position: relative; 677 + margin: 0; 678 + padding: 0 25px 25px 25px; 679 + background-color: #fff; 680 +} 681 +div#panelwizardcontainer { 682 + padding: -30px -250px; 683 +} 684 +#xwikicontent { 685 + overflow-x: auto; 686 + overflow-y: hidden; 687 + padding: 0; 688 + position: relative; 689 +} 690 +.minwidth, .minwidthb, .minwidthc, .minwidthd { 691 + display: none; 692 + height: 0; 693 + font: normal 1px / 1px sans-serif; 694 +} 695 +.layoutsection { 696 + clear: both; 697 +} 698 +#contentcontainer { 699 + height: 1%; 700 + margin: 0 220px; 701 +} 702 +#xwikimaincontainerinner .contenthideleft, 703 +#xwikieditorinner { 704 + margin: 0 220px 0 0; 705 +} 706 +#xwikimaincontainerinner .contenthidelefthideright { 707 + margin: 0; 708 +} 709 +#xwikimaincontainerinner .contenthideright { 710 + margin: 0 0 0 220px; 711 +} 712 +#rightPanels { 713 + position: relative; 714 + float: right; 715 + display: inline;/* iedoublemargin bug */ 716 + width: 220px; 717 + margin: -25px -220px 0 0; 718 +} 719 +#leftPanels { 720 + position: relative; 721 + float: left; 722 + display: inline;/* ie doublemargin bug */ 723 + width: 220px; 724 + margin: -25px 0 0 -220px; 725 +} 726 +body.exportbody #editPanels.panels, 727 + body.importbody #editPanels.panels, 728 + body.adminbody #editPanels.panels { 729 + display: none; 730 +} 731 +#editPanels.panels { 732 + position: relative; 733 + float: left; 734 + width: 220px; 735 + margin-right: -220px; 736 + margin-top: -26px; 737 + height: auto !important; 738 + height: 600px; 739 + min-height: 600px; 740 +} 741 +#editPanels.panels a { 742 + color: #000; 743 +} 744 +#editPanels.panels .panel { 745 + margin: 0 0 10px 10px; 746 + width: 210px; 747 + padding: 0; 748 +} 749 +.editbody .leftsidecolumns { 750 + position: relative; 751 + float: left; 752 + width: 100%; 753 + padding-bottom: 20px; 754 +} 755 +#xwikieditcontent textarea#content { 756 + width: 100%; 757 + border: none;/* place border on external div*/ 758 +} 759 +.clearfloats { 760 + clear: both; 761 + height: 1px; 762 + background-color: #fff; 763 + margin: 0 220px; 764 +} 765 +body.hideleft .clearfloat { 766 + margin: 0 220px 0 30px; 767 +} 768 +body.hideright .clearfloat { 769 + margin: 0 30px 0 220px; 770 +} 771 +body.hidelefthideright .clearfloat { 772 + margin: 0 30px; 773 +} 774 +body#body.loginbody .clearfloats { 775 + display: none; 776 +} 777 +body.editbody .clearfloats { 778 + margin-right: 300px; 779 +} 780 +#xwikieditor { 781 + z-index: 1; 782 +} 783 +/* @end */ 784 +/* @group Header */ 785 +/* 786 +--------------------------------------- 787 +Global header 788 +--------------------------------------- 789 +*/ 790 +#headerglobal { 791 + position: relative; 792 + float: left; 793 + width: 100%; 794 + height: 80px; 795 + z-index: 1; 796 +} 797 +#globalmenu { 798 + padding: 0.5em 0; 799 + text-align: right; 800 + font-size: 1em; 801 + line-height: 1.1em; 802 +} 803 +body#body.editbody #globallinks #globalmenu .glink, 804 + #globalmenu .glink { 805 + font-size: 1em; 806 + line-height: 1.4em; 807 + font-weight: bold; 808 + padding: 0px 5px; 809 + text-decoration: none; 810 +} 811 +#globalmenu #headerlanguages a { 812 + text-transform: capitalize; 813 +} 814 +#globalmenu span { 815 + display: none; 816 +} 817 +#company { 818 + height: 80px; 819 + position: relative; 820 + float: left; 821 + width: 100%; 822 +} 823 +#companylogo { 824 + padding: 0; 825 + margin: 0; 826 + margin-right: 220px; 827 + height: 80px; 828 +} 829 +#companylogo a { 830 + display: block; 831 + height: 80px; 832 + width: 220px; 833 + text-decoration: none; 834 +} 835 +#globalmenu a:hover, 836 + #companylogo a:hover { 837 + border: none; 838 +} 839 +#companylogo a img { 840 + position: relative; 841 + float: left; 842 +} 843 +/*IE*/ 844 +#globaldoctitle { 845 + display: none; 846 +/* needed for IE*/ 847 +} 848 +/* @end */ 849 +/* @group footer */ 850 +/* 851 +--------------------------------------- 852 +Space header, footer 853 +--------------------------------------- 854 +*/ 855 +#headerspace hr, #footerglobal hr { 856 + display: none; 857 +} 858 +#footerglobal a, #headerspace a { 859 + color: #ccc; 860 + text-decoration: none; 861 +} 862 +#headerspace { 863 + height: auto; 864 + font-size: 0.9em; 865 + width: auto; 866 + padding-left: 30px; 867 + color: #ccc; 868 + margin: 0 220px; 869 +} 870 + 871 +#headerspace a { 872 + line-height: 25px; 873 +} 874 +#footerglobal { 875 + clear: both; 876 + text-align: center; 877 + background-color: transparent; 878 + padding: 25px 0; 879 + font-size: 0.7em; 880 + text-transform: uppercase; 881 + color: #222; 882 +} 883 +#footerglobal a { 884 + color: #555; 885 + text-decoration: none; 886 +} 887 +/* @end */ 888 +/* @group content */ 889 +/* 890 +--------------------------------------- 891 +Content 892 +--------------------------------------- 893 +*/ 894 +.layoutsubsection .about { 895 + border: medium none; 896 + color: #888888; 897 + position: absolute; 898 + bottom: 0px; 899 + width: 100%; 900 + overflow: hidden; 901 + font-size: 0.9em; 902 + text-align: center; 903 +} 904 +/ 905 +* @end */ 906 + 907 +/* @group Message Boxes */ 908 +#loginForm div.centered fieldset.xwikimessage table.xwikilogintable tbody tr th, 909 + #loginForm div.centered fieldset.xwikimessage table.xwikilogintable tbody tr td { 910 + border: none; 911 +} 912 +/* 913 +--------------------------------------------- 914 +"Message Boxes" 915 +--------------------------------------------- 916 +*/ 917 +div.centered { 918 + text-align: center; 919 +} 920 +body.editbody .leftsidecolumns .centered { 921 + margin-right: 220px; 922 +} 923 +fieldset.xwikimessage, div.xwikimessage { 924 + display: block; 925 + float: none; 926 + width: 400px; 927 + margin: 65px auto 0; 928 + border: none; 929 + border-top: 4em solid #efffd4; 930 + border-bottom: 65px solid #FFF; 931 + padding: 0 8px 16px; 932 + background-color: #efffd4; 933 + text-align: center; 934 +} 935 +fieldset.xwikimessage legend, 936 + div.xwikimessage h3 { 937 + display: block; 938 + width: 100%; 939 + text-align: center; 940 + font: bold 1.4em sans-serif; 941 + letter-spacing: 0.4em; 942 + color: #508000; 943 + padding: 0; 944 + margin: 0; 945 +} 946 +div.errormessage { 947 + color: red; 948 +} 949 +fieldset.xwikimessage .xwikimessage { 950 + text-align: center; 951 + font-weight: bold; 952 + font-size: 110%; 953 +} 954 +fieldset.xwikimessage .buttons { 955 + text-align: center; 956 +} 957 +fieldset.xwikimessage .buttons a { 958 + text-decoration: none; 959 + margin: 8px; 960 +} 961 +.button { 962 + font-family: Helvetica, sans-serif; 963 + font-weight: bold; 964 + text-align: center; 965 +} 966 +/* @end * 967 +/ 968 +/* @group Comments, attachments, History... */ 969 +/* 970 +--------------------------------------- 971 +Zone for Comments, attachments, History... 972 +--------------------------------------- 973 +*/ 974 +#xwikidata { 975 + padding: 0 0 20px 0; 976 + margin: 0 -25px; 977 + border: none; 978 + position: relative; 979 +} 980 +.xwikiintracontent { 981 + margin: 0; 982 +} 983 +#historyform .currentversion, #historyform .currentversion td { 984 + background: #FFD; 985 + font-weight: bold; 986 +} 987 +/* 988 +@end */ 989 +/* @group Comments */ 990 +/* 991 +---------------------------------------------- 992 +Comments 993 +---------------------------------------------- 994 +*/ 995 + 996 +#comments, #attachments { 997 + padding: 0pt 10px 20px; 998 +} 999 +#xwikidata .xwikititlewrapper { 1000 + cursor: pointer; 1001 +} 1002 +h3.xwikiintratitle { 1003 + font: normal 1.2em / 1.4em sans-serif; 1004 + text-transform: uppercase; 1005 + letter-spacing: 0.1em; 1006 + text-align: left; 1007 + margin: 0; 1008 + padding: 5px 10px; 1009 +} 1010 +.xwikiintratitle span.hidden { 1011 + display: inline; 1012 +} 1013 +#attachmentscontent table { 1014 + border: none; 1015 +} 1016 +.mime { 1017 + text-align: center; 1018 +} 1019 +.xwikicomment { 1020 + padding: 10px 0px; 1021 + position: relative; 1022 + overflow: hidden; 1023 +} 1024 +.commentspacer { 1025 + display: none; 1026 +} 1027 +.commentavatar { 1028 + position: absolute; 1029 + left: 0; 1030 + top: 0; 1031 + width: 54px; 1032 +} 1033 +.commentavatar img { 1034 + width: 3.5em; 1035 + display: block; 1036 + margin: auto; 1037 +} 1038 +.commentheader { 1039 + padding: 6px 0; 1040 +} 1041 +.commentauthor { 1042 + font-size: 130%; 1043 + font-weight: 900; 1044 +} 1045 +.commentauthor a { 1046 + text-decoration: none; 1047 + color: #000 !important; 1048 +} 1049 +.commentcontent { 1050 + border-left: 5px solid #CCCCCC; 1051 + padding: 3px 0px 0px 6px; 1052 +} 1053 +table.xwikidatatable { 1054 + margin: 8px auto; 1055 +} 1056 +table.xwikidatatable, table.xwikidatatable th { 1057 + border: 1px solid #DDD; 1058 +} 1059 +table.xwikidatatable td { 1060 + padding: 2px 8px; 1061 +} 1062 +.xwikiintracontent fieldset { 1063 + background-color: transparent; 1064 + border: none; 1065 + padding: 8px; 1066 +} 1067 +.xwikiintracontent legend { 1068 + font: bold 1.2em / 1.4em sans-serif; 1069 + cursor: pointer; 1070 + letter-spacing: 0.1em; 1071 + color: #069; 1072 +} 1073 +html > body .xwikiintracontent legend { 1074 + margin-bottom: 0; 1075 +} 1076 +#xwikiuploadfile { 1077 + margin: 10px; 1078 +} 1079 +.xwikiintracontent fieldset.collapsed { 1080 + border: none; 1081 + margin: 0; 1082 + padding: 0; 1083 + background-color: transparent; 1084 +} 1085 +.xwikiintracontent fieldset.collapsed legend { 1086 + margin-left: 2px; 1087 +} 1088 +.xwikiintracontent fieldset.collapsed div, 1089 +.xwikiintracontent fieldset.expanded .expands { 1090 + display: none; 1091 +} 1092 +/* @end */ 1093 + 1094 +#xwikiviewerstitles { 1095 + display: none; 1096 +} 1097 +/* @group tabs */ 1098 +/* 1099 +--------------------------------------- 1100 +Tabs 1101 +--------------------------------------- 1102 +*/ 1103 +#body.adminbody .alleditcontent { 1104 + border-color: #fff; 1105 +} 1106 +.alleditcontent .floatcontainer { 1107 + background-color: #fff; 1108 +} 1109 +ul.xwikitabbar { 1110 + padding: 0 0 0 10px; 1111 + margin: 0 0 0 0; 1112 + width: 100%; 1113 + height: 30px; 1114 + border-bottom: none; 1115 +} 1116 +#xwikieditor ul.xwikitabbar { 1117 + overflow: hidden; 1118 +} 1119 +#xwikicontent ul.xwikitabbar { 1120 + overflow: hidden; 1121 + margin: 0; 1122 + border-bottom: 0 solid #555; 1123 +} 1124 +.xwikitabbar li { 1125 + position: relative; 1126 + display: inline; 1127 + height: 30px; 1128 + line-height: 30px; 1129 + list-style-type: none; 1130 + margin-right: 4px; 1131 + text-align: center; 1132 + display: block; 1133 + float: left; 1134 + width: auto; 1135 + border: none; 1136 +} 1137 +.xwikitabbar li a { 1138 + background: #ccc none no-repeat scroll left top; 1139 + background-color: rgba(0,0,0, 0.20); 1140 + display: block; 1141 + font-size: 0.85em; 1142 + font-weight: normal; 1143 + height: 30px; 1144 + letter-spacing: -0.5px; 1145 + line-height: 34px !important; 1146 + margin-top: 0px; 1147 + padding: 0pt 14px; 1148 + text-decoration: none; 1149 + border-bottom: 0px; 1150 + color: #fff; 1151 + border-top-left-radius: 5px; 1152 + -webkit-border-top-left-radius: 5px; 1153 + -moz-border-top-left-radius: 5px; 1154 + border-top-right-radius: 5px; 1155 + -webkit-border-top-right-radius: 5px; 1156 + -moz-border-top-right-radius: 5px; 1157 +} 1158 +.xwikitabbar li a:hover { 1159 + text-decoration: none; 1160 + background-position: top center; 1161 +} 1162 +.xwikitabbar li.active a, 1163 + .xwikitabbar li.active a:hover { 1164 + cursor: default; 1165 + background-color: #fff; 1166 +} 1167 +.xwikitabbar li.active a { 1168 + color: #333; 1169 + font-weight: bold; 1170 + border: 1px solid #000; 1171 +} 1172 + 1173 +#xwikidatacontents .xwikitabbar li a, 1174 +#xwikidatacontents .xwikitabbar li.active a{ 1175 + border: none; 1176 +} 1177 + 1178 + 1179 +#xwikichangespace { 1180 + padding: 10px 5px; 1181 +} 1182 +/* @end */ 1183 +#xwikicontentedit { 1184 + border: 1px solid; 1185 +} 1186 +/* @group Panels */ 1187 +.Search #globalsearch { 1188 + position: relative; 1189 + height: 22px; 1190 + margin: 0; 1191 +} 1192 +div.panel.expanded.Search { 1193 + border-radius: 10px; 1194 + -webkit-border-radius: 12px; 1195 + -moz-border-radius: 12px; 1196 +} 1197 +.Search .xwikipanelcontents, 1198 +.Search .xwikipaneltitle { 1199 + background-image: none; 1200 + padding: 0; 1201 +} 1202 +#globalsearch { 1203 + margin: 0 0 0 10px; 1204 +} 1205 + 1206 +#body #globalsearch input { 1207 + font-size: 1em; 1208 + line-height: 14px; 1209 + float: left; 1210 + display: inline; 1211 + background: none; 1212 + border: none; 1213 + width: 135px; 1214 + padding: 2px 0 0 10px; 1215 + position: relative; 1216 + background-color: transparent; 1217 + border: medium none; 1218 +} 1219 +#body #globalsearch input.button { 1220 + position: absolute; 1221 + top: 1px; 1222 + right: 10px; 1223 + border: none; 1224 + width: 22px; 1225 + height: 14px; 1226 + padding: 0; 1227 + margin: 3px 0 0 3px; 1228 + cursor: pointer; 1229 +} 1230 +.panel, .fakepanel { 1231 + color: #000; 1232 + width: 210px; 1233 + display: block; 1234 + padding: 0; 1235 +} 1236 +#leftPanels .panel, #leftPanels .fakepanel { 1237 + margin: 0px 10px 10px 0px; 1238 +} 1239 +#rightPanels .panel, #rightPanels .fakepanel { 1240 + margin: 0px 0px 10px 10px; 1241 +} 1242 +.xwikipanelcontents form { 1243 + margin: 0; 1244 + padding: 0; 1245 +} 1246 +.fakepanel { 1247 + display: none; 1248 + height: 320px; 1249 +} 1250 +.xwikipanelcontents { 1251 + background-color: transparent; 1252 + font-size: 0.85em; 1253 + line-height: 1.6em; 1254 + font-weight: normal; 1255 + padding: 10px 15px 20px 15px; 1256 +} 1257 +div.xwikipanelcontents div.warningmessage, 1258 + div.xwikipanelcontents table { 1259 + margin-top: 0; 1260 +} 1261 +div.xwikipanelcontents ul.minus { 1262 + margin: 0; 1263 + padding: 0; 1264 +} 1265 +h5.xwikipaneltitle { 1266 + margin: 0; 1267 + font-size: 1.1em; 1268 + letter-spacing: -1px; 1269 + line-height: 30px; 1270 + padding: 0 20px 0 15px; 1271 + text-align: center; 1272 + color: #333; 1273 + height: 30px; 1274 + cursor: pointer; 1275 +} 1276 +#globalsearch h5.xwikipaneltitle.hidden { 1277 + display: none; 1278 +} 1279 +h5.xwikipaneltitle.hidden { 1280 + display: block; 1281 + height: 10px; 1282 + line-height: 200px; 1283 + overflow: hidden; 1284 +} 1285 +.collapsed h5.xwikipaneltitle { 1286 + height: 38px; 1287 +} 1288 +.xwikipanelcontents a { 1289 + color: #222; 1290 +} 1291 +.xwikipanelcontents a.wikicreatelink { 1292 + color: #333; 1293 +} 1294 +div.xwikipanelcontents a.wikicreatelink span.wikicreatelinkqm { 1295 + background-color: #db6e26; 1296 + color: #fff; 1297 + margin: 0 2px; 1298 + padding: 0 1px; 1299 +} 1300 +/* For new rendering, in order to display orange question marks for unknown links in panels */ 1301 +div.xwikipanelcontents span.wikicreatelink a { 1302 + background-image: url("/xwiki/skins/albatross/qm%2Dorange.png") 1303 +} 1304 +div.xwikipanelcontents ul.star { 1305 + list-style-type: none; 1306 + list-style-position: inside; 1307 + padding: 0; 1308 + margin: 0; 1309 +} 1310 +div.xwikipanelcontents ul.star li ul { 1311 + margin-left: 2em; 1312 +} 1313 +.xwikipanelcontents p { 1314 + margin-top: 0; 1315 +} 1316 +.collapsed .xwikipanelcontents { 1317 + display: none; 1318 +} 1319 +span.panelitem { 1320 + display: block; 1321 +} 1322 +/* edit panels */ 1323 +#editPanels .expanded h5.xwikipaneltitle { 1324 + color: #333; 1325 + height: auto; 1326 + font-size: 1em; 1327 + text-align: center; 1328 + line-height: 20px; 1329 + letter-spacing: -1px; 1330 + padding: 5px 25px 5px 10px; 1331 +} 1332 +#editPanels .collapsed h5.xwikipaneltitle { 1333 + color: #333; 1334 + height: 30px; 1335 + text-align: center; 1336 + line-height: 20px; 1337 + letter-spacing: -1px; 1338 + padding: 5px 25px 5px 10px; 1339 +} 1340 +#editPanels .xwikipanelcontents { 1341 + color: #333; 1342 + height: auto; 1343 + padding: 0 25px 35px 10px; 1344 + font-size: 0.8em; 1345 + font-weight: normal; 1346 +} 1347 +#editPanels .EditModes .xwikipanelcontents { 1348 + padding-bottom: 2em; 1349 +} 1350 +#editPanels .xwikipanelcontents p { 1351 + margin: 0 0 1em 0; 1352 +} 1353 +#editPanels form { 1354 + font-size: 0.9em; 1355 +} 1356 +#editPanels form input, 1357 +#editPanels form select { 1358 + width: 100%; 1359 + margin-bottom: 0.5em; 1360 + font-size: 1em; 1361 +} 1362 +.collapsed h5.xwikipaneltitle { 1363 + background-position: top right; 1364 +} 1365 +/* @group edit panels */ 1366 +#editPanels .editmodes h5 { 1367 + color: #333; 1368 + height: auto; 1369 + font-size: 1em; 1370 + text-align: center; 1371 + line-height: 20px; 1372 + letter-spacing: -1px; 1373 + padding: 5px 25px 5px 10px; 1374 +} 1375 +#editPanels .EditModes .xwikipanelcontents ul { 1376 + padding-top: 1em; 1377 + margin-left: -15px; 1378 +} 1379 +#editPanels .EditModes .xwikipanelcontents ul li { 1380 + display: block; 1381 + height: 20px; 1382 + font-size: 1.1em; 1383 + line-height: 20px; 1384 + letter-spacing: 1px; 1385 + font-weight: normal; 1386 + padding: 0 15px; 1387 + text-align: left; 1388 +} 1389 +#editPanels .EditModes .xwikipanelcontents ul li a { 1390 + color: #555; 1391 +} 1392 +#editPanels .EditModes .xwikipanelcontents ul li a:hover { 1393 + color: #000; 1394 +} 1395 +#editPanels .EditModes .xwikipanelcontents ul li.active { 1396 + line-height: 30px; 1397 + font-size: 1.2em; 1398 + font-weight: bold; 1399 + text-transform: uppercase; 1400 + height: 30px; 1401 + text-align: left; 1402 +} 1403 +#editPanels .EditModes .xwikipanelcontents ul li.active a { 1404 + color: #000; 1405 +} 1406 +#editPanels .SyntaxHelp h5.xwikipaneltitle { 1407 + display: none; 1408 +} 1409 +#editPanels .SyntaxHelp div.xwikipanelcontents { 1410 + color: #333; 1411 + height: 40px; 1412 + text-align: center; 1413 + line-height: 20px; 1414 + letter-spacing: -1px; 1415 + padding: 5px 25px 5px 10px; 1416 +} 1417 +#xwikihelpsyntax div.panel.expanded h5.xwikipaneltitle.hidden { 1418 + display: none; 1419 +} 1420 +#xwikihelpsyntax div.panel.expanded div.xwikipanelcontents { 1421 + background-image: none; 1422 + margin: 0; 1423 + padding: 0; 1424 +} 1425 +/* @end */ 1426 +.placeholder { 1427 + width: 170px; 1428 + margin-left: 10px; 1429 + background-color: #fff; 1430 + opacity: .1; 1431 +} 1432 +html > body #dragbox { 1433 + width: 198px !important; 1434 +} 1435 +#xwikinavcontainer { 1436 + margin: 0 0 0; 1437 + border: 1px solid #999; 1438 + border-width: 0 0 1px 0; 1439 +} 1440 +span.pitemseparator { 1441 + display: none; 1442 +} 1443 +.panelcontainer { 1444 + height: 200px; 1445 + overflow: hidden; 1446 + border: 1px solid #fff; 1447 + padding: 3px; 1448 +} 1449 +.panelitemc { 1450 + height: 256px; 1451 + margin: 0 4px; 1452 + width: 210px; 1453 + position: relative; 1454 + float: left; 1455 +} 1456 +.panelitemc .label { 1457 + text-align: center; 1458 + background-color: transparent; 1459 + padding: 2px 0; 1460 + font-weight: bold; 1461 +} 1462 +.accordionTabContentBox .panelitemc .label { 1463 + color: #fff; 1464 +} 1465 +.panelitemc .xwikibuttonlink { 1466 + text-align: center; 1467 + background-color: transparent; 1468 + border: 1px solid #fff; 1469 + border-top: 0; 1470 + color: #eee; 1471 +} 1472 +.panelitemc .xwikibuttonlink a { 1473 + color: #eee; 1474 + padding: 0 5px; 1475 +} 1476 +.xwikipanelcontents dl dd { 1477 + margin: 0 0 2em 0; 1478 +} 1479 +.xwikipanelcontents dl dt { 1480 + font-size: 1.3em; 1481 + font-weight: bold; 1482 +} 1483 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td { 1484 + border-top: 1px dotted #EEE; 1485 +} 1486 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td a { 1487 + display: block; 1488 + width: 140px; 1489 + position: relative; 1490 + overflow: hidden; 1491 +} 1492 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td a:hover { 1493 + overflow: visible; 1494 +} 1495 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td a span { 1496 + display: inline; 1497 +} 1498 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td a:hover span { 1499 + display: block; 1500 + position: absolute; 1501 + min-width: 155px; 1502 + right: 0; 1503 + padding: 0 5px; 1504 + top: -1em; 1505 + background-color: #FEFEE4; 1506 + border: 1px solid #AAA; 1507 +} 1508 +.xwikipanelcontents dl dd table#xwikiincludeddocuments td.xwikibuttonlink a { 1509 + color: blue; 1510 + width: 20px; 1511 +} 1512 +/* @end */ 1513 +/* @group Rico Acordeon */ 1514 +/* 1515 +----------------- 1516 +----------------- 1517 +Rico Acordeon 1518 +---------------------------------- 1519 +*/ 1520 +#xwikisyntaxhelp { 1521 + margin-top: 0; 1522 + border: none; 1523 + font-size: 0.9em; 1524 +} 1525 +.accordionTabTitleBar h6 { 1526 + margin: 0; 1527 + padding: 4px; 1528 + font: bold 1em / 1.1em sans-serif; 1529 + color: #FFF; 1530 + background-color: #8799b3; 1531 +} 1532 +#panellistaccordion #xwikinav .accordionTabTitleBar h6, 1533 + #xwikinav .accordionTabTitleBar h6 { 1534 + background-color: #fff; 1535 + color: #333; 1536 + border: 1px solid #999; 1537 + margin-top: 0; 1538 + border-width: 1px 0 0 0; 1539 +} 1540 +#xwikinav .accordionTabContentBox { 1541 + background-color: #fff; 1542 + border-top: 1px solid #999; 1543 +} 1544 +#xwikinavcontainer #xwikinav .tbexpanded h6 { 1545 + border-width: 1px 0; 1546 +} 1547 +#xwikieditcontent .accordionTabTitleBar h6 { 1548 + margin: 0; 1549 + padding: 4px 21px; 1550 + height: 20px; 1551 + font-weight: normal; 1552 + letter-spacing: -1px; 1553 + border-top: 1px solid #fff; 1554 + border-bottom: 1px solid #ccc; 1555 + color: #333; 1556 + background-color: #f0f0ee; 1557 + background-image: url( images/accordion.png ); 1558 + background-repeat: no-repeat; 1559 + background-position: 0% 50%; 1560 +} 1561 +#panellistaccordion #xwikinav .accordionTabTitleBar h6 { 1562 + background-image: none; 1563 + height: auto; 1564 + padding: 2px 3px; 1565 + font-weight: bold; 1566 +} 1567 +#editPanels .accordionTabContentBox { 1568 + border: none; 1569 + overflow: auto !important; 1570 +} 1571 +#editPanels .accordionTabContentBox table { 1572 + border: none; 1573 + background-color: transparent; 1574 +} 1575 +.accordionTabContentBox table th { 1576 + text-align: center; 1577 +} 1578 +#xwikihelptitlesContent h1, #xwikihelptitlesContent h2, #xwikihelptitlesContent h3, #xwikihelptitlesContent h4, #xwikihelptitlesContent h5, #xwikihelptitlesContent h6 { 1579 + margin: 0; 1580 + text-align: right; 1581 +} 1582 +.accordionTabTitleBar { 1583 + margin: 0; 1584 + cursor: default; 1585 +} 1586 +.accordionTabContentBox { 1587 + position: relative; 1588 + padding: 5px; 1589 + overflow: hidden; 1590 +} 1591 +#allviewpanels .accordionTabContentBox { 1592 + padding: 5px; 1593 + overflow: auto !important; 1594 +} 1595 +#panellistaccordion #xwikinav .accordionTabContentBox { 1596 + background-image: none; 1597 + overflow: auto !important; 1598 +} 1599 +#xwikinav .accordionTabContentBox { 1600 + overflow: auto !important; 1601 +} 1602 +#xwikinav ul.minus { 1603 + margin: 0; 1604 + padding: 0 5px; 1605 + list-style-type: none; 1606 +} 1607 +#xwikisyntaxhelp table tbody tr { 1608 + display: block; 1609 + width: 175px; 1610 + border-top: 1px dashed red; 1611 +} 1612 +#xwikisyntaxhelp table tbody tr td { 1613 + display: block; 1614 + width: 175px; 1615 + padding: 2px 1px; 1616 +} 1617 +#xwikisyntaxhelp table tbody tr td tt { 1618 + background-color: #ccc; 1619 +} 1620 +#xwikisyntaxhelp table tbody tr td { 1621 + display: block; 1622 + width: 175px; 1623 + border: 0 solid red; 1624 +} 1625 +#xwikisyntaxhelp .accordionTabContentBox { 1626 + padding: 0; 1627 + margin: 0; 1628 +} 1629 +#xwikisyntaxhelp table tbody tr th { 1630 + display: block; 1631 + width: 100%; 1632 +} 1633 +/* 1634 +----------------------------- 1635 +Misc 1636 +----------------------------- 1637 +*/ 1638 +/* @end */ 1639 +#xwikihelplistsContent ul, #xwikihelplistsContent ol { 1640 + margin: 0; 1641 +} 1642 +.accordionTabTitleBar tt { 1643 + font-style: normal; 1644 + font-size: 100%; 1645 + padding: 0 4px; 1646 +} 1647 +td.label { 1648 + text-align: right; 1649 + padding-right: 4px; 1650 +} 1651 +#xwikiclassproperties, #xwikiobjects { 1652 + border: 1px solid #DDD !important; 1653 +} 1654 +.center { 1655 + text-align: center; 1656 +} 1657 +.padded { 1658 + padding: 8px; 1659 +} 1660 +.editactions { 1661 + border: none !important; 1662 + margin-top: 10px; 1663 + padding: 0; 1664 +} 1665 +#historycontent td { 1666 + padding: 2px; 1667 +} 1668 +#xwikiuserprofile th { 1669 + background-color: transparent; 1670 + text-align: right; 1671 +} 1672 +#xwikiuserprofile td, #xwikiuserprofile th { 1673 + padding: 4px; 1674 +} 1675 +#xwikiobjects td { 1676 + vertical-align: top; 1677 +} 1678 +html > body .xwikidatatable { 1679 + width: 100%; 1680 +} 1681 +/* @group Page Layout */ 1682 +/* 1683 +------------------------ 1684 +Page Layout Selection 1685 +------------------------ 1686 +*/ 1687 +td div.pagelayoutoption { 1688 + margin: 0 auto; 1689 + width: 106px; 1690 +} 1691 +div.layoutmaquette { 1692 + width: 100px; 1693 + height: 100px; 1694 + border: 1px solid #ddd; 1695 + background-color: #fff; 1696 + padding: 2px; 1697 +} 1698 +div.lmleftcolumn, div.lmrightcolumn { 1699 + width: 20px; 1700 + height: 60px; 1701 + border: 1px solid #aaa; 1702 + background-color: #ddd; 1703 + position: relative; 1704 + float: left; 1705 +} 1706 +div.lmrightcolumn { 1707 + position: relative; 1708 + float: right; 1709 +} 1710 +div.lmcontentcolumn { 1711 + border: 1px solid #aaa; 1712 + background-color: #eee; 1713 + height: 90px; 1714 +} 1715 +#leftcolumn div.lmcontentcolumn { 1716 + margin-left: 24px; 1717 +} 1718 +#rightcolumn div.lmcontentcolumn { 1719 + margin-right: 24px; 1720 +} 1721 +#bothcolumns div.lmcontentcolumn { 1722 + margin-left: 24px; 1723 + margin-right: 24px; 1724 +} 1725 +div.pagelayoutoption:hover .layoutmaquette { 1726 + background-color: #ffd; 1727 +} 1728 +div.pagelayoutoption:hover .lmcontentcolumn { 1729 + background-color: #ddd; 1730 +} 1731 +div.pagelayoutoption:hover .lmleftcolumn, 1732 +div.pagelayoutoption:hover .lmrightcolumn { 1733 + background-color: #acf; 1734 +} 1735 +div.pagelayoutoptions > table { 1736 + width: 100%; 1737 + text-align: center; 1738 +} 1739 +div.pagelayoutoptions td { 1740 + padding: 2px; 1741 + vertical-align: bottom; 1742 +} 1743 +#selectedoption .lmcontentcolumn { 1744 + background-color: #acf; 1745 +} 1746 +#selectedoption .lmleftcolumn, 1747 +#selectedoption .lmrightcolumn { 1748 + background-color: #369; 1749 +} 1750 +.pagelayoutoption label { 1751 + color: #aaa; 1752 +} 1753 +#selectedoption label, .pagelayoutoption:hover label { 1754 + color: #000; 1755 +} 1756 +.hastooltip { 1757 + border-bottom: 1px dotted #000; 1758 + cursor: help; 1759 +} 1760 +#dhtmltooltip { 1761 + border: 1px solid #aaa; 1762 + padding: 2px 4px; 1763 + background-color: #ffd; 1764 + text-align: justify; 1765 + position: absolute; 1766 +} 1767 +#panelwizardbuttons { 1768 + padding: 8px 0px; 1769 + margin: 1em 0px; 1770 + text-align: center; 1771 +} 1772 +.alleditcontent { 1773 + margin: 10px 20px 20px 20px; 1774 + border: 1px solid #ddd; 1775 + background-color: #f0f0ee; 1776 +} 1777 +.alladmincontent { 1778 + border: 1px solid #ddd; 1779 +} 1780 +body.importbody .alleditcontent, 1781 +body.exportbody .alleditcontent, 1782 +body.adminbody .alleditcontent { 1783 + margin: 30px 50px 20px 20px; 1784 + border: none; 1785 +} 1786 +.alleditcontent label { 1787 + position: relative; 1788 + display: block; 1789 + text-align: center; 1790 + padding: 5px; 1791 + font-weight: bold; 1792 + font-size: 1em; 1793 + color: #555; 1794 + margin: 0px 0px 1em; 1795 +} 1796 +#xwikidoctitleinput { 1797 + margin-top: 1em; 1798 + width: 70%; 1799 +} 1800 +#xwikicontent .floatcontainer { 1801 + overflow: hidden; 1802 + width: auto; 1803 + border-bottom: 2px solid #333; 1804 +} 1805 +#xwikieditcontent { 1806 + background-color: #fff; 1807 +} 1808 +html>body #xwikieditcontent { 1809 + padding: 20px 5px 5px 5px; 1810 + padding: 0; 1811 +} 1812 +.editinfo { 1813 + height: 22px; 1814 + color: #333; 1815 + letter-spacing: 2px; 1816 + font-size: 1em; 1817 + line-height: 22px; 1818 +} 1819 +#edit { 1820 + padding: 0px; 1821 + margin: 0px; 1822 + border: none; 1823 + height: 1%; 1824 +} 1825 +#xwikitext { 1826 + clear: both; 1827 +} 1828 +#panelsBackground { 1829 + height: 20px; 1830 + background-color: #384554; 1831 +} 1832 +* html form { 1833 + margin-top: 0px; 1834 +} 1835 +.xwiki-form-listclass input[type="checkbox"] { 1836 + float: none; 1837 + display: inline; 1838 + margin-right: 2px; 1839 +} 1840 +.xwiki-form-listclass { 1841 + margin-right: 10px; 1842 +} 1843 +/** 1844 +Attachments 1845 +*/ 1846 +div.attachment { 1847 + overflow: hidden; 1848 + clear: both; 1849 + padding: 10px 0px; 1850 + font-size: 85%; 1851 + border-bottom: solid 2px white; 1852 +} 1853 +.attachment .mime { 1854 + display: block; 1855 + position: relative; 1856 + float: left; 1857 + padding-right: 8px; 1858 + padding-bottom: 4px; 1859 +} 1860 +.attachment .information { 1861 + position: relative; 1862 + overflow: hidden; 1863 +} 1864 +.attachment .name { 1865 + display: block; 1866 + position: relative; 1867 + float: left; 1868 + font-size: 1.35em; 1869 + padding: 0px 6px 4px 0px; 1870 +} 1871 +.attachment .version { 1872 + display: block; 1873 +} 1874 +.attachment .meta { 1875 + clear: left; 1876 +} 1877 +.attachment .xwikibuttonlinks { 1878 + position: relative; 1879 + float: right; 1880 + font-size: 130%; 1881 + padding: 4px 10px; 1882 +} 1883 +/* @end */ 1884 +/* @group EDITION */ 1885 +.editbody #globallinks { 1886 + width: 200px; 1887 +} 1888 +#editcolumn div.alleditcontent label { 1889 + display: block; 1890 + text-transform: uppercase; 1891 + padding: 0; 1892 + text-align: center; 1893 + margin-bottom: 20px; 1894 +} 1895 +#editcolumn div.alleditcontent #pagetitle label { 1896 + margin-bottom: 0; 1897 + padding: 10px; 1898 + background-color: #f0f0ee; 1899 + border-bottom: 1px solid #ccc; 1900 +} 1901 +#editcolumn div.alleditcontent #pagetitle label input { 1902 + width: 100%; 1903 +} 1904 +div#xwikiclassproperties.accordion dt label, 1905 +div#xwikiobjects.accordion label { 1906 + display: block; 1907 + font: normal 0.8em sans-serif; 1908 + text-transform: uppercase; 1909 + width: 100%; 1910 + padding: 10px 0 0 0; 1911 + text-align: left; 1912 + margin: 0 0 2px 0; 1913 +} 1914 +#field_name_content div dl dd { 1915 + padding-bottom: 0.5em; 1916 + border-bottom: 1px dashed #ccc; 1917 +} 1918 +#editcolumn div.alleditcontent div#xwikiclassproperties.accordion dd label { 1919 + text-align: left; 1920 + margin: 0; 1921 + font-size: 0.8em; 1922 + font-weight: normal; 1923 +} 1924 +div#xwikiclassproperties.accordion textarea, 1925 +div#xwikiobjects.accordion textarea, 1926 +div#xwikiclassproperties.accordion input[type=text], 1927 +div#xwikiobjects.accordion input[type=text] { 1928 + width: 98%; 1929 +} 1930 +div#xwikiclassproperties.accordion #xwikidoctitleinput { 1931 + width: 40%; 1932 + font-size: 1em; 1933 +} 1934 +.topbuttons, .bottombuttons { 1935 + text-align: center; 1936 + font-size: 1em; 1937 + font-weight: bold; 1938 + background-color: #f0f0ee; 1939 + padding: 10px; 1940 +} 1941 +#admin-page .bottombuttons { 1942 + background-color: transparent; 1943 + padding: 0; 1944 +} 1945 +.topbuttons { 1946 + margin-bottom: 1em; 1947 +} 1948 +.bottombuttons input[type=text] { 1949 + width: 100%; 1950 + margin-bottom: 1em; 1951 +} 1952 +.leftmenu2 { 1953 + text-align: left; 1954 + font-size: 1.4em; 1955 + font-weight: bold; 1956 + background-color: #f0f0ee; 1957 + padding: 2px; 1958 + border-top: 1px solid #fff; 1959 +} 1960 +#body #fullscreen-dlg .leftmenu2 { 1961 + padding: 0px; 1962 +} 1963 +#xwikieditcontent div div.leftmenu2 a img { 1964 + margin: 2px; 1965 +} 1966 +.bottombuttons input.button { 1967 + margin-top: 1.5em; 1968 +} 1969 +#editcolumn { 1970 + width: 100%; 1971 +} 1972 +#_history .centered { 1973 + margin: 0; 1974 +} 1975 +#_history table { 1976 + margin: 0 0 1em 0; 1977 + border-top: none; 1978 + border-collapse: collapse; 1979 + width: 100%; 1980 +} 1981 +#_history table th { 1982 + padding: 5px; 1983 + background-color: #f0f0ee; 1984 + text-align: center; 1985 + font-weight: bold; 1986 +} 1987 +#_history table tr.row.even { 1988 + background-color: #f0f4fa; 1989 +} 1990 +#_history table td { 1991 + padding: 5px; 1992 + border: 1px solid #ccc; 1993 + text-align: center; 1994 +} 1995 +/* panels */ 1996 +#panellistaccordion input[type=text], #panellistaccordion textarea, 1997 +#body .panel input[type=text], #body .panel textarea { 1998 + background-color: #f9fcff; 1999 + width: 100%; 2000 +} 2001 +.viewbody form .centered input[type=text] { 2002 + width: auto; 2003 +} 2004 +#leftPanels.xwikipanelcontents ol, 2005 +#leftPanels .xwikipanelcontents ul.minus, 2006 +#rightPanels.xwikipanelcontents ol, 2007 +#rightPanels .xwikipanelcontents ul.minus { 2008 + margin-left: 1em; 2009 +} 2010 +#leftPanels .xwikipanelcontents ul.star, 2011 +#rightPanels .xwikipanelcontents ul.star { 2012 + margin-left: 0em; 2013 + margin-bottom: 1em; 2014 +} 2015 +#leftPanels .xwikipanelcontents ul.star ul, 2016 +#rightPanels .xwikipanelcontents ul.star ul { 2017 + margin-left: 2em; 2018 +} 2019 +#leftPanels .xwikipanelcontents ul ul, 2020 +#rightPanels .xwikipanelcontents ul ul { 2021 + list-style-type: none; 2022 + margin-left: 2em; 2023 +} 2024 +.panel input, .panel select, #editPanels dl dd input { 2025 + width: 100%; 2026 +} 2027 +.panel .buttonwrapper, #editPanels .buttonwrapper { 2028 + margin-left: 0; 2029 +} 2030 +.buttonwrapper { 2031 + background: transparent; 2032 + display: inline-block; 2033 + display: inline; 2034 + margin: 10px 0px 10px 10px; 2035 + padding-top: 10px; 2036 +} 2037 +#body .buttonwrapper * { 2038 + display: inline-block; 2039 + display: inline; 2040 + line-height: 1.35em !important; 2041 + margin: 0px !important; 2042 + min-height: 24px !important; 2043 + background: transparent url( images/buttons3.png ) repeat-x scroll right top; 2044 + border: 1px solid #8f908e; 2045 + color: #FFF; 2046 + white-space: nowrap; 2047 +} 2048 +#body .buttonwrapper a { 2049 + padding: 3px 5px; 2050 + line-height: 26px; 2051 + font-weight: bold; 2052 +} 2053 +#body .buttonwrapper a:hover, 2054 +#body .buttonwrapper button:hover, 2055 +#body .buttonwrapper input.button:hover { 2056 + background: transparent url( images/buttons3.png ) repeat-x scroll right 25%; 2057 + border-color: #94ad12; 2058 + color: #333; 2059 +} 2060 +body.importbody .alleditcontent .padded h3, 2061 +body.exportbody .alleditcontent .padded h3 { 2062 + font-size: 1.4em; 2063 + margin: 1em 0; 2064 + border-bottom: 1px solid #ccc; 2065 +} 2066 +body.importbody #editcolumn .alleditcontent .padded fieldset, 2067 +body.exportbody #editcolumn .alleditcontent .padded fieldser { 2068 + background-color: #eaeaf3; 2069 + border: 5px solid #eaeaf3; 2070 + border-width: 25px 5px 5px; 2071 +} 2072 +body.importbody #editcolumn .alleditcontent .padded label, 2073 +body.exportbody #editcolumn .alleditcontent .padded label { 2074 + text-align: left; 2075 + margin: 0; 2076 +} 2077 +/* @end */ 2078 +/* @group tablesearch */ 2079 +table#s 2080 +earchTableUnique { 2081 + width: 99.8%; 2082 +} 2083 +table#searchTableUnique td.actions a { 2084 + position: relative; 2085 + float: left; 2086 + width: 16px; 2087 + height: 16px; 2088 + margin: 8px 6px 0 0; 2089 + overflow: hidden; 2090 + background-color: transparent; 2091 + border: 1px solid #FFF; 2092 +} 2093 +table#searchTableUnique tr.sortHeader { 2094 + background-color: #eaf2fa; 2095 + border-collapse: collapse; 2096 +} 2097 +table#searchTableUnique th a { 2098 + color: #74abd7; 2099 +} 2100 +table#searchTableUnique td.actions a:hover { 2101 + border-color: #ccc; 2102 +} 2103 +table#searchTableUnique td.actions a.copyaction { 2104 + background-image: url( images/editcopy.png ); 2105 +} 2106 +table#searchTableUnique td.actions a.deleteaction { 2107 + background-image: url( images/edittrash.png ); 2108 +} 2109 +table#searchTableUnique td.actions a.renameaction { 2110 + background-image: url( images/filesaveas.png ); 2111 +} 2112 +table#searchTableUnique td.actions a.rightaction { 2113 + background-image: url( images/lock.png ); 2114 +} 2115 +table#searchTableUnique td.actions a span { 2116 + position: relative; 2117 + float: left; 2118 + padding: 16px 0 0 0; 2119 +} 2120 +table#referenceTable, 2121 +table#referenceTable input, 2122 +table#referenceTableselect { 2123 + width: 98%; 2124 +} 2125 +table#referenceTable input#flt3_referenceTable { 2126 + width: 59%; 2127 + margin-right: 1%; 2128 +} 2129 +table#referenceTable input#btn3_referenceTable { 2130 + width: 39%; 2131 +} 2132 +/* @end */ 2133 +/* Messages 2134 +--------------------------------------- */ 2135 +.error { 2136 + color: #F00; 2137 +} 2138 +.fatalerror { 2139 + background-color: #F00; 2140 + color: #FFF; 2141 + font-weight: bold; 2142 + font-size: 120%; 2143 +} 2144 +.warning { 2145 + color: #c82; 2146 +} 2147 +span.messagetype { 2148 + display: none; 2149 +} 2150 +html>body div.floatinginfobox, html>body fieldset.floatinginfobox { 2151 + width: auto; 2152 +} 2153 +div.floatinginfobox, fieldset.floatinginfobox { 2154 + width: 0; 2155 + float: right; 2156 + border-left: 20px solid #FFF; 2157 + border-bottom: 40px solid #FFF; 2158 + border: 1px solid #E4E4E5; 2159 + background-color: #FAFAFD; 2160 + padding: 10px; 2161 + margin: 1em 0 1em 1em; 2162 +} 2163 +div.floatinginfobox .strong, fieldset.floatinginfobox .strong { 2164 + display: block; 2165 + text-align: center; 2166 + font-weight: normal; 2167 + font-size: 1.2em; 2168 + letter-spacing: -1px; 2169 + margin-bottom: 0.5em; 2170 +} 2171 +li.tocEntry, 2172 +div.floatinginfobox li, 2173 +fieldset.floatinginfobox li, 2174 +div.floatinginfobox ul, 2175 +fieldset.floatinginfobox ul { 2176 + padding: 0 0 0 1em; 2177 + margin: 0; 2178 + line-height: 1.4em; 2179 + list-style-type: none; 2180 + background-image: url( images/bullet-1.png ); 2181 + background-repeat: no-repeat; 2182 + background-position: left 0.25em; 2183 + list-style-position: outside; 2184 +} 2185 +div.floatinginfobox ul, 2186 +fieldset.floatinginfobox ul { 2187 + background-image: none; 2188 +} 2189 +/* Images 2190 + --------------------------------------- */ 2191 +.imgfloatleft { 2192 + float: left; 2193 + margin-right: 1em; 2194 +} 2195 +.imgfloatright { 2196 + float: right; 2197 + margin-left: 1em; 2198 +} 2199 +.imgleft { 2200 + text-align: left; 2201 +} 2202 +.imgcenter { 2203 + text-align: center; 2204 +} 2205 +.imgright { 2206 + text-align: right; 2207 +} 2208 +/* @group 2-COL */ 2209 +.my-col-right, .my-col-left { 2210 + float: left; 2211 + width: 50%; 2212 + padding: 0px; 2213 +} 2214 +.my-col-right div, .my-col-left div { 2215 + padding: 20px 20px 20px 50px; 2216 + clear: none; 2217 +} 2218 +.my-col-right img, .my-col-left img { 2219 + float: left; 2220 + padding-top: 20px; 2221 +} 2222 +/* @end */ 2223 + 2224 +form#inline textarea { 2225 + width: 100%; 2226 +} 2227 +body.hideright #xwikimaincontainer { 2228 + overflow-y: auto; 2229 +} 2230 +#treeview table { 2231 + margin: 0px; 2232 +} 2233 +#treeview table td { 2234 + text-align: left; 2235 + padding: 0px; 2236 + border: 0px; 2237 +} 2238 +.roundedbox { 2239 + margin: 0em; 2240 + border-radius :5px; 2241 + -moz-border-radius :5px; 2242 + -webkit-border-radius :5px 2243 +} 2244 +#changescontent table { 2245 + width: 100%; 2246 + margin: 0; 2247 +} 2248 +#changescontent table tr.changes-table-title th { 2249 + text-align: center; 2250 + font-size: 1.1em; 2251 + padding: 3px 5px; 2252 + border-bottom: 1px solid #fff; 2253 + background-color: #6b747f; 2254 + color: #fff; 2255 +} 2256 +#changescontent table tr.changes-table-title + tr.changes-table-title th { 2257 + font-size: 0.75em; 2258 + text-align: left; 2259 + padding: 1px 5px; 2260 + border-bottom: 4px solid #e4e4e4; 2261 +} 2262 +#changescontent table td { 2263 + background-color: #f8f8f8; 2264 + border-bottom: 1px solid #CCC; 2265 +} 2266 +div.diff { 2267 + padding: 0 0 5px 0; 2268 + margin-bottom: -5px; 2269 + white-space: normal; 2270 + overflow: auto; 2271 +} 2272 +span.diffremoveword { 2273 + color: #ca9a9b; 2274 + text-decoration: line-through; 2275 +} 2276 +div.diffmodifiedline { 2277 + margin: 0.8em 0; 2278 +} 2279 +span.diffaddword { 2280 + color: #287f00; 2281 +} 2282 +div#changes-info { 2283 + background-color: #919dac; 2284 + background-image: url( images/DIFF-header.png ); 2285 + background-position: 50% -35px; 2286 + background-repeat: no-repeat; 2287 +} 2288 +#changes-title { 2289 + margin-top: 2em; 2290 + background-color: #6b747f; 2291 + background-image: url( images/rounded.png ) !important; 2292 + background-image: url( images/rounded.gif ); 2293 +} 2294 +#changes-title h1 { 2295 + padding: 10px 15px; 2296 + font-size: 1.4em; 2297 + letter-spacing: 1px; 2298 + text-align: center; 2299 + background-image: url( images/rounded.png ) !important; 2300 + background-image: url( images/rounded.gif ); 2301 + background-position: top right; 2302 + color: #fff; 2303 + border-bottom: 4px solid #fff; 2304 + border-color: #808c99; 2305 +} 2306 +div#changes-info-boxes { 2307 + margin-top: 0em; 2308 + line-height: 1.4em; 2309 + border: 0px solid #f4f9fe; 2310 + background-color: transparent; 2311 +} 2312 +#changescontent .clearfloats { 2313 + clear: both; 2314 + height: 1px; 2315 + background-color: transparent; 2316 + margin-right: 0; 2317 +} 2318 +div#changes-info-box-from { 2319 + float: left; 2320 + padding-top: 1em; 2321 + width: 49%; 2322 + text-align: center; 2323 + color: #fff; 2324 +} 2325 +#changes-info-box-to { 2326 + padding-top: 1em; 2327 + margin-left: 51%; 2328 + text-align: center; 2329 + color: #fff; 2330 +} 2331 +div.changes-info-title { 2332 + font-weight: bold; 2333 + font-size: 1.4em; 2334 +} 2335 +#changes-info-comment { 2336 + text-align: center; 2337 + padding: 1em 0; 2338 + color: #FFF; 2339 +} 2340 +/* profil */ 2341 +.specialmenu { 2342 + background-color: #f2fdcb; 2343 + border: 1px solid #FAFAFD; 2344 + text-align: center; 2345 + margin-top: -1.3em; 2346 + border: 1px solid #ddd; 2347 + border-top: 0px solid #fff; 2348 + padding: 3px; 2349 +} 2350 +.specialmenu img { 2351 + vertical-align: middle; 2352 +} 2353 +.specialmenu ul { 2354 + margin: 0; 2355 + padding: 5px 0; 2356 + display: inline; 2357 +} 2358 +.specialmenu ul li { 2359 + list-style-type: none; 2360 + list-style-image: none; 2361 + display: inline; 2362 +} 2363 +.xwikiuserblog { 2364 + float: right; 2365 + width: 250px; 2366 + background-color: #FAFAFD; 2367 + padding: 1px; 2368 +} 2369 +#lb-content .xwikiuserblog, 2370 +.xwikiuserblog { 2371 + clear: both; 2372 + position: relative; 2373 + float: right; 2374 + width: 250px; 2375 + background-color: white; 2376 +} 2377 +#lb-content .xwikiuserblog, .xwikiuserblog { 2378 + padding: 5px; 2379 + text-align: center; 2380 + font-weight: bold; 2381 + border-bottom: 1px solid #ddd; 2382 +} 2383 +#lb-content .xwikiuserblog, .xwikiuserblog { 2384 + padding: 5px; 2385 +} 2386 +#lb-content h3, 2387 +div.vcard h3 { 2388 + clear: both; 2389 + padding-top: 1em; 2390 +} 2391 +form#inline div.clear h3 { 2392 + clear: both; 2393 +} 2394 +#lb-content #XWiki.XWikiUsers_0_blog { 2395 + width: 200px; 2396 +} 2397 +img#xwikiuseravatar.photo { 2398 + float: none; 2399 + margin: 0 1em 1em 0; 2400 +} 2401 +#lb-content img#xwikiuseravatar.photo { 2402 + width: 200px; 2403 + float: right; 2404 + margin: 0 1em 1em 0; 2405 +} 2406 +#xwikiuserprofile dl { 2407 + font-size: 0.9em; 2408 +} 2409 +#xwikiuserprofile dd.given-name, #xwikiuserprofile dd.family-name { 2410 + font-size: 1.6em; 2411 + letter-spacing: 2px; 2412 +} 2413 +form#inline #xwikiuserprofile, 2414 +#lb-content #xwikiuserprofile { 2415 + padding-bottom: 2em; 2416 +} 2417 +form#inline #xwikiuserprofile input, 2418 +#lb-content #xwikiuserprofile input { 2419 + width: 350px; 2420 +} 2421 +form#inline #xwikiuserprofile label, 2422 +#lb-content #xwikiuserprofile label { 2423 + font-size: 1.4em; 2424 + line-height: 1.2em; 2425 +} 2426 +/* @group contentPanels */ 2427 +div.panellayoutcontainer-1col .panellayoutcol { 2428 + width: 100%; 2429 +} 2430 +div.panellayoutcontainer-2col .panellayoutcol { 2431 + width: 50%; 2432 +} 2433 +div.panellayoutcontainer-3col .panellayoutcol { 2434 + width: 33%; 2435 +} 2436 +div.panellayoutcontainer-4col .panellayoutcol { 2437 + width: 25%; 2438 +} 2439 +div.panellayoutcontainer-5col .panellayoutcol { 2440 + width: 20%; 2441 +} 2442 +div.panellayoutcontainer-1col, div.panellayoutcontainer-2col, div.panellayoutcontainer-3col, div.panellayoutcontainer-4col, div.panellayoutcontainer-5col { 2443 + overflow: auto; 2444 + clear: left; 2445 +} 2446 +.panellayoutcol { 2447 + overflow: auto; 2448 + float: left; 2449 + height: 1%; 2450 +} 2451 +.panellayoutcol .panel { 2452 + width: 90%; 2453 + margin: 0 0 20px 5%; 2454 + border: 1px solid #ddd; 2455 +} 2456 +#xwikicontent .panel ul { 2457 + margin: 0 5px; 2458 + padding: 0; 2459 + list-style-position: inside; 2460 +} 2461 +#xwikicontent .panellayoutcol .panel .xwikipanelcontents { 2462 + background-color: transparent; 2463 + background-image: none; 2464 + padding: 10px; 2465 +} 2466 +#xwikicontent .panellayoutcol .panel .xwikipanelcontents a { 2467 + color: #000; 2468 +} 2469 +#xwikicontent .panellayoutcol .panel .xwikipanelcontents a:hover { 2470 + color: #06F; 2471 +} 2472 +#xwikicontent .panellayoutcol .expanded .xwikipaneltitle { 2473 + color: #fff; 2474 + background: #aaa url( "icons/black-less-cont.png" ) no-repeat 100% 50%; 2475 +} 2476 +#xwikicontent .panellayoutcol .collapsed .xwikipaneltitle { 2477 + height: 30px; 2478 + color: #fff; 2479 + background: #dcdce1 url( "icons/black-more-cont.png" ) no-repeat 100% 50%; 2480 +} 2481 +#xwikicontent .panellayoutcol .expanded h5.xwikipaneltitle:hover, #xwikicontent .panellayoutcol .collapsed h5.xwikipaneltitle:hover { 2482 + color: #fff; 2483 +} 2484 +/* @end */ 2485 +/* ** Doc extra 2486 +*/ 2487 +#xwikidatacontents{ 2488 +padding-top: 30px; 2489 +} 2490 +#docExtraTabs { 2491 + border: 0px !important; 2492 + background-color: white; 2493 +} 2494 +#docExtrasTabsUl { 2495 + float: left; 2496 +} 2497 +#docExtraTabs ul.xwikitabbar { 2498 + width: auto; 2499 +} 2500 +#docextrapanes { 2501 + border: none; 2502 + padding: 10px; 2503 + background-color: #fff; 2504 + clear: both; 2505 +} 2506 +#docextraanchors { 2507 + height: 2em; 2508 +} 2509 +#_information dd, #_information dt { 2510 + padding-top: 4px; 2511 + padding-bottom: 4px; 2512 + background: none; 2513 +} 2514 +input#tags { 2515 + width: 80%; 2516 +} 2517 +#tageditsavesuccess { 2518 + color: green; 2519 + margin-left: 6px; 2520 +} 2521 +#tageditsaveerror { 2522 + color: red; 2523 + margin-left: 6px; 2524 +} 2525 +.xspacer { 2526 + clear: both !important; 2527 + height: 0 !important; 2528 + width: 0 !important; 2529 + line-height: 0 !important; 2530 + padding: 0 !important; 2531 + margin: 0 !important; 2532 +} 2533 +/* ** Wiki items lists (spaces, pages, comments, attachments) 2534 +*/ 2535 +ul.xlist { 2536 + margin: 0 0 0 0.5em !important; 2537 + padding: 0 !important; 2538 +} 2539 +ul.xlist li.xunderline { 2540 + border-bottom: solid 1px #efefef !important; 2541 +} 2542 +ul.xlist li.xhighlight:hover { 2543 + background-color: lemonChiffon; 2544 +} 2545 +ul.xlist li { 2546 + width: 100% !important; 2547 + padding-top: 0.2em; 2548 + list-style-type: none; 2549 +} 2550 +ul.xlist li.space, ul.xlist li.page, ul.xlist li.comment, ul.xlist li.attachment { 2551 + background-repeat: no-repeat; 2552 + background-position: 2px 3px; 2553 +} 2554 +ul.xlist li.space { 2555 + background-image: url( ../../resources/icons/silk/folder.gif ); 2556 +} 2557 +ul.xlist li.page { 2558 + background-image: url( ../../resources/icons/silk/page_white_text.gif ); 2559 +} 2560 +ul.xlist li.comment { 2561 + background-image: url( ../../resources/icons/silk/comment.gif ); 2562 +} 2563 +ul.xlist li.attachment { 2564 + background-image: url( ../../resources/icons/silk/attach.gif ); 2565 +} 2566 +ul.xlist li.xitem div.xitemcontainer { 2567 + text-indent: 1.5em; 2568 +} 2569 +ul.xlist li.xitem div.xitemcontainer ul.xlist { 2570 + text-indent: 0em; 2571 +} 2572 +.rssfeed .rssitem .rsschanneltitle, 2573 +.rssitemdescription .rssitemtitle .rsschanneltitle { 2574 + background-color: white; 2575 +} 2576 +.box { 2577 + margin: 1em 0; 2578 + padding: 0 1px; 2579 + overflow: auto; 2580 + background-color: #F1F7FF; 2581 + border: 1px dotted #555555; 2582 +} 2583 +.rssfeed { 2584 + clear: both; 2585 + position: relative; 2586 + border: 1px dotted #003366; 2587 + background-color: white; 2588 +} 2589 +.rssfeed div.rsschanneltitle, 2590 +.rssfeed div.rsschanneltitle { 2591 + padding: 5px; 2592 + text-align: center; 2593 + font-weight: bold; 2594 + border-bottom: 1px solid #ddd; 2595 +} 2596 +.rssfeed .rssitem { 2597 + padding: 5px; 2598 +} 2599 +.rsschanneltitle { 2600 + background-color: #F4F9FE; 2601 + font-size: 14px; 2602 + font-weight: bold; 2603 + margin-bottom: 10px; 2604 + padding: 5px; 2605 + text-align: center; 2606 +} 2607 +.errormessage, .warningmessage, .infomessage, .plainmessage { 2608 + margin: 4px 0px 4px; 2609 + border: 1px solid #DDD; 2610 + padding: 8px 8px 8px 28px; 2611 + background: #F5F5F5 url( icons/msg.png ) 8px 8px no-repeat; 2612 + text-align: left; 2613 +} 2614 +.infomessage { 2615 + background: #f5ffff url( icons/msginfo.png ) no-repeat 8px 8px; 2616 + color: #369; 2617 +} 2618 +.plainmessage { 2619 + background-image: none; 2620 + color: #369; 2621 +} 2622 +.warningmessage { 2623 + background-image: url( icons/msgwarning.png ); 2624 + color: #c82; 2625 +} 2626 +.errormessage { 2627 + background-image: url( icons/msgerror.png ); 2628 + color: #F00; 2629 +} 2630 +/* IE */ 2631 +* html div, 2632 + * html .buttonwrapper * { 2633 + display: inline-block; 2634 +} 2635 +* html a { 2636 + position: relative; 2637 + z-index: 1; 2638 +} 2639 +* html #rightPanels, #editPanels { 2640 + height: 400px; 2641 +} 2642 +* html #globalsearch { 2643 + margin-bottom: 1em 2644 +} 2645 +* html #xwikicontent { 2646 + overflow-y: hidden; 2647 + width: 100%; 2648 +} 2649 +* html .minwidthd { 2650 + display: none; 2651 +} 2652 +* html #contentcolumn .minwidthb, 2653 +* html #contentcolumn .minwidthd { 2654 + display: block; 2655 + width: 450px; 2656 +} 2657 +* html #headerspace .minwidth { 2658 + display: block; 2659 + width: 450px; 2660 +} 2661 +/* 740 - 30 padding */ 2662 +* html body #show-dialog-btn { 2663 + right: 1px; 2664 + top: 1px; 2665 +} 2666 +* html ul.xwikitabbar { 2667 + margin: 0; 2668 +} 2669 +* html ul.xwikitabbar li a { 2670 + line-height: 1em; 2671 +} 2672 +* html .roundedbox, 2673 +* html .roundedheader, 2674 +* html .roundedheader h3, 2675 +* html .roundedbody { 2676 + background-image: url( images/rounded.gif ); 2677 +} 2678 +* html #lb #lb-content img#xwikiuseravatar.photo { 2679 + float: left; 2680 + width: 50px; 2681 +} 2682 +* html pre { 2683 + word-wrap: break-word 2684 +} 2685 +* html div.floatinginfobox, 2686 +* html fieldset.floatinginfobox, 2687 +* html fieldset.floatinginfobox *, 2688 +* html div.floatingboxinner, 2689 +* html fieldset.floatingboxinner, 2690 +* html div.floatingboxinner *, 2691 +* html fieldset.floatingboxinner * { 2692 + zoom: normal; 2693 +} 2694 +#lb-close { 2695 + height: 15px; 2696 +} 2697 +* html #lb-content { 2698 + margin-top: -1px; 2699 +} 2700 +* html #webhomeblogdisplay, * html #webhomeNewsdisplay { 2701 + width: 48% !important; 2702 +} 2703 +.main p { 2704 + position: static; 2705 + border-collapse: collapse; 2706 +} - commentsinline.vm
-
... ... @@ -1,0 +1,128 @@ 1 +### 2 +### List document comments 3 +## 4 +$xwiki.jsfx.use('uicomponents/viewers/comments.js', {'forceSkinAction': true, 'language': ${context.language}}) 5 +$xwiki.ssfx.use('uicomponents/viewers/comments.css', true) 6 +## 7 +#set($xCommentClass = 'XWiki.XWikiComments') 8 +## 9 +## 10 +## 11 +#macro(addCommentToThreads $comment $commentThreads $rootKey) 12 + #set($thread = $commentThreads.get("$!{comment.replyto}")) 13 + #if("$!{thread}" == '') 14 + #set($thread = $commentThreads.get($rootKey)) 15 + #end 16 + #set($discard = $thread.add($comment.number)) 17 + #set($thread = '') 18 +#end 19 +## 20 +## 21 +## 22 +#macro(displayThread $key $commentThreads) 23 + #if("$!{request.replyto}" == "$!{key}") 24 + #displayCommentForm() 25 + #set($replied = true) 26 + #end 27 + #set($thread = $commentThreads.get("$!key")) 28 + #if($thread.size() > 0) 29 + <ul class="commentreplies"> 30 + #foreach($commentID in $thread) 31 + <li class="reply"> 32 + #displayComment($doc.getObject($xCommentClass, $commentID)) 33 + <div class="commentthread"> 34 + #displayThread($commentID, $commentThreads) 35 + </div> 36 + </li> 37 + #end 38 + </ul> 39 + #end 40 +#end 41 +## 42 +## 43 +## 44 +#macro(displayComment $comment) 45 + <div id="xwikicomment_${comment.number}" class="xwikicomment#if($comment.getProperty('author').value == $doc.creator) commentByCreator#end"> 46 + ##<div class="commentavatar">#useravatar($comment.author)</div> 47 + <div class="commentheader"> 48 + <div> 49 + <span class="commentauthor">$!xwiki.getUserName($doc.display('author', 'view', $comment))</span>## 50 + #set($date = $comment.getProperty('date').value) 51 +## Don't indent, otherwise the comma will be misplaced 52 +#if($date), <span class="commentdate">$!xwiki.formatDate($date)</span>#end 53 + </div> 54 + <span class="commenttools"> 55 + #if($xwiki.hasAccessLevel('comment')) 56 + <span class="commenttool commentreply"><a class="commentreply" href="${request.getRequestURL()}?${request.getQueryString().replaceAll('&?replyto=\d++', '')}&replyto=${comment.number}#xwikicomment_${comment.number}" title="$msg.get('core.viewers.comments.reply')"#if("$!{request.replyto}" == "${comment.number}") style="display: none;"#end>$msg.get('core.viewers.comments.reply')</a></span> 57 + #end 58 + #if($hasEdit) 59 + <span class="commenttool commentdelete"><a class="delete" href="$doc.getURL('objectremove', "classname=${xCommentClass}&classid=${comment.number}&xredirect=${request.getRequestURL()}")" title="$msg.get('core.viewers.comments.delete')">$msg.get('core.viewers.comments.delete')</a></span> 60 + #end 61 + </span>## commenttools 62 + </div>## commentheader 63 + <div class="commentcontent">$doc.display('comment', 'view', $comment)</div> 64 + </div>## xwikicomment 65 +#end 66 +## 67 +## 68 +## 69 +#macro(displayCommentForm) 70 + #if($xwiki.hasAccessLevel('comment')) 71 + <form action="$doc.getURL('commentadd')" method="post" id="AddComment"> 72 + <fieldset class="expanded" id="commentform"> 73 + <legend>$msg.get('core.viewers.comments.add.title')</legend> 74 + <input type="hidden" name="xredirect" value="${doc.getURL('view')}#Comments" /> 75 + #if($context.user != 'XWiki.XWikiGuest') 76 + <label>$msg.get('core.viewers.comments.add.guestName.prompt') $xwiki.getUserName($context.user)</label> 77 + <input type="hidden" name="${xCommentClass}_author" value="$context.user"/> 78 + #else 79 + <label>$msg.get('core.viewers.comments.add.guestName.prompt') <input type="text" name="${xCommentClass}_author" value="$msg.get('core.viewers.comments.add.guestName.default')"/></label> 80 + #end 81 + <input type="hidden" name="${xCommentClass}_date" value=""/> 82 + <input type="hidden" name="${xCommentClass}_replyto" value="$!{request.replyto}"/> 83 + <div class="commentcontainer"> 84 + <label>$msg.get('core.viewers.comments.add.comment.label')</label> 85 + <textarea id='${xCommentClass}_comment' rows='5' cols="80" name='${xCommentClass}_comment'></textarea> 86 + </div> 87 + <div class="buttons"> 88 + <span class="buttonwrapper"><input type="submit" value="$msg.get('core.viewers.comments.add.submit')" class="button"/></span> 89 + <span class="buttonwrapper"><input #if("$!{request.replyto}" == '') type="reset" #else type="submit" #end value="$msg.get('core.viewers.comments.add.cancel')" class="button" name="action_cancel"/></span> 90 + </div> 91 + </fieldset> 92 + </form> 93 + #end 94 +#end 95 +## 96 +## 97 +## 98 +#if($xwiki.getWebPreferenceAsInt('commentsorder', 1) == 1) 99 + #set($comments = $doc.getComments()) 100 +#else 101 + #set($comments = $doc.getComments(false)) 102 +#end 103 +## 104 +## 105 +<div id="commentscontent" class="xwikiintracontent"> 106 + <div id="_comments"> 107 +#if($comments.size() > 0) 108 + #set($rootKey = "-1") 109 + #set($commentThreads = $util.hashMap) 110 + #set($discard = $commentThreads.put($rootKey, $util.arrayList)) 111 + #foreach($comment in $comments) 112 + #set($discard = $commentThreads.put("${comment.number}", $util.arrayList)) 113 + #end 114 + #foreach($comment in $comments) 115 + #addCommentToThreads($comment, $commentThreads, $rootKey) 116 + #end 117 + #displayThread($rootKey, $commentThreads) 118 +#else 119 + <p class="noitems">$msg.get('core.viewers.comments.noComments')</p> 120 +#end 121 +## 122 +## 123 +#if(!$replied) 124 + #displayCommentForm() 125 +#end 126 + </div> ## comments 127 +</div> ## commentscontent 128 + - actionbarscroll.css
-
... ... @@ -1,0 +1,162 @@ 1 +/* @group ActionMenu */ 2 +/* 3 +--------------------------------------- 4 +Menu 5 +--------------------------------------- 6 +*/ 7 +#menuview{ 8 + position: relative; 9 + margin: 0 220px; 10 + padding: 10px 30px; 11 + background-color: #fff; 12 + overflow: visible; 13 + } 14 +body.hidelefthideright #menuview { 15 + margin: 0; 16 +} 17 +body.hideleft #menuview { 18 + margin: 0 220px 0 0; 19 +} 20 +#body.hideright #menuview { 21 + margin: 0 0 0 220px; 22 +} 23 +body#body.exportbody #menuview, 24 +body#body.importbody #menuview, 25 +body#body.adminbody #menuview , 26 +body#body.editbody #menuview { 27 + margin: 0 220px 0 0; 28 +} 29 +#actionmenu { 30 + position: statique; 31 + height: 20px !important; 32 + z-index: 1000; 33 + overflow: visible; 34 + text-align: center; 35 + color: #fff; 36 + background-color: #fff; 37 +} 38 +body.editbody #actionmenu{ 39 +margin:0 220px 0 0; 40 +} 41 +.editinfo{ 42 +padding: 2px 15px; 43 +display: inline; 44 +background-color: #f4ffb3; 45 +-webkit-border-radius: 8px; 46 +-moz-border-radius: 8px; 47 +border-radius: 8px; 48 +} 49 +#actionmenu a { 50 + text-decoration: none; 51 + color: #fff; 52 + text-decoration: none; 53 + display: block; 54 + width: 70px; 55 + height: 20px; 56 + float: left; 57 + border: 1px solid #999; 58 + border-width: 0 1px; 59 + margin-right: -1px; 60 + text-align: center; 61 + line-height: 20px; 62 + font-size: 0.9em; 63 + font-weight: bold; 64 +} 65 +#actionmenu .editinfo a { 66 + text-decoration: none; 67 + color: #444; 68 + display: inline; 69 + height: 20px; 70 + float: none; 71 + border: 1px solid #444; 72 + border-width: 0; 73 + text-align: center; 74 + line-height: 20px; 75 + font-size: 0.9em; 76 + font-weight: bold; 77 +} 78 +#actionmenu div.leftmenu div:hover a, 79 + #actionmenu a:hover { 80 + color: #fff; 81 + background-color: #000; 82 +} 83 +#actionmenu div.leftmenu div:hover .submenu a { 84 + background-image: none; 85 +} 86 +#actionmenu .editinfo a:hover { 87 + color: #fff; 88 +} 89 +.rightmenu { 90 + position: absolute; 91 + right: 0; 92 + margin-right: 25px; 93 +} 94 +#actionmenu .rightmenu a { 95 + width: 100px; 96 + background-color: #ff6f00; 97 + padding: 0 15px; 98 + -webkit-border-radius: 10px; 99 + -moz-border-radius: 10px; 100 + border-radius: 10px; 101 +} 102 +#actionmenu .leftmenu #tmDoc { 103 + width: 20px; 104 +} 105 +.leftmenu { 106 + position: absolute; 107 + left: 25px; 108 + background-color: #666; 109 + padding: 0 15px; 110 + -webkit-border-radius: 10px; 111 + -moz-border-radius: 10px; 112 + border-radius: 10px; 113 + 114 +} 115 +.topmenuentry { 116 + display: block; 117 + float: left; 118 +} 119 +.rightmenu .topmenuentry { 120 + float: right; 121 +} 122 +#tmWatched a.tme { 123 + color: #4cad1b; 124 +} 125 +.submenu { 126 + display: block; 127 + width: 10em; 128 + position: absolute; 129 + margin-top: 0; 130 + margin-left: 10px !important; 131 + padding: 5px; 132 + border: 1px solid #222; 133 + background-color: #111; 134 + z-index: 1000000;; 135 +} 136 +.rightmenu .submenu { 137 +background-color: #ff6f00; 138 +border: 1px solid #ff6f00; 139 +width: 12em; 140 +} 141 +.submenu.hidden, .submenu .submenuseparator { 142 + display: none; 143 +} 144 +#actionmenu .submenuitem a, #actionmenu .submenuitem a:link, #actionmenu .submenuitem a:visited, #actionmenu .submenuitem a:active { 145 + display: block; 146 + float: none; 147 + width: 100%; 148 + font-size: 0.8em; 149 + font-weight: bold; 150 + text-decoration: none; 151 + height: auto; 152 + padding: 2px 0 0 0; 153 + line-height: 1.2em; 154 + border: 0; 155 + text-align: left; 156 + color: #fff; 157 +} 158 +#actionmenu .submenuitem a:hover { 159 + text-decoration: underline; 160 + background-image: none; 161 +} 162 +/* @end */ - mce.css
-
... ... @@ -1,0 +1,76 @@ 1 +.mceContentBody table{ 2 + font-size: 1em; 3 + border-color: #e5eff8; 4 + margin: 1em 0; 5 +} 6 +.mceContentBody caption{ 7 + color: #4e6172; 8 + font-size: .94em; 9 + letter-spacing: .1em; 10 + margin: 1em 0 0 0; 11 + padding: 0; 12 + caption-side: top; 13 +} 14 +.mceContentBody table tr td{ 15 + vertical-align: middle; 16 +} 17 +.mceContentBody table tr td em{ 18 + font-size: 0.9em; 19 + font-style: italic; 20 +} 21 +.mceContentBody tr.odd td{ 22 + background: #f7fbff 23 +} 24 +.mceContentBody td{ 25 + color: #4e6172; 26 + border-color: #e5eff8; 27 + padding: 3px 4px; 28 + border-width: 1px; 29 + border-style: solid; 30 +} 31 +.mceContentBody tr.table-head td{ 32 + border-color: #e5eff8; 33 + padding: .3em 0.5em; 34 + background: #f4f9fe; 35 + text-align: center; 36 + font: bold 1.2em / 1.4em Arial, Helvetica, sans-serif; 37 + color: #66a3d3; 38 + border-width: 1px; 39 + border-style: solid; 40 +} 41 +body#mceSpanFonts h1 span, body#mceSpanFonts h2 span, 42 + body#mceSpanFonts h3 span, body#mceSpanFonts h4 span, body#mceSpanFonts h5 span, body#mceSpanFonts h6 span { 43 + display: block; 44 + color: #000; 45 + background-color: inherit; 46 + padding: 0; 47 + margin: 20px 0; 48 + border-bottom: 1px solid #ccc; 49 +} 50 +body.mceContentBody { 51 + background-image: none; 52 + font-size: 90%; 53 + line-height: 1.4em; 54 +} 55 +table.mceEditor { 56 + width: 100%; 57 +} 58 +table.mceEditor textarea { 59 + width: 100%; 60 + height: 100%; 61 +} 62 +.mceEditorContainer { 63 + display: block; 64 + height: 100% !important; 65 + position: relative; 66 + width: 100%; 67 +} 68 +.mceToolbar { 69 + z-index: 30002; 70 +} 71 +.mceEditor td { 72 + padding: 0px; 73 +} 74 +body.mceContentBody { 75 + min-width: 100px; 76 +} - attachments.css
-
... ... @@ -1,0 +1,55 @@ 1 +.attachmentActionButton { 2 + background-color: transparent; 3 + border: none; 4 + padding: 2px 4px; 5 + font-size: 80%; 6 + margin-bottom: 4px; 7 + background: transparent 2px center no-repeat; 8 + padding-left: 20px; 9 +} 10 +.add-file-input { 11 + margin-left: 10px; 12 + background-position: 2px top; 13 + background-image: url(/xwiki/resources/icons/silk/textfield_add.gif); 14 +} 15 +.add-file-input:hover { 16 + color: #070; 17 +} 18 +.remove-file-input { 19 + background-image: url(/xwiki/resources/icons/silk/cross.gif); 20 + width: 16px; 21 + text-indent: 30px; 22 +} 23 +.remove-file-input:hover { 24 + color: #D00; 25 +} 26 +.uploadFileInput { 27 + margin: 5px 10px!important; 28 + border: 1px solid #ddd!important; 29 +} 30 +.attachment .xwikibuttonlinks a { 31 + width: 16px; 32 + height: 16px; 33 + text-indent: 30px; 34 + line-height: 30px; 35 + overflow: hidden; 36 + background: transparent left top no-repeat; 37 + display: block; 38 + float: right; 39 + margin: 0 0 0 4px; 40 +} 41 +.attachment .xwikibuttonlinks a.deletelink { 42 + background-image: url(/xwiki/resources/icons/silk/cross.gif); 43 +} 44 +.attachment .xwikibuttonlinks a.editlink { 45 + background-image: url(/xwiki/resources/icons/silk/pencil.gif); 46 +} 47 +#AddAttachment { 48 + background-color: #e7eff5; 49 + padding: 10px; 50 + border: 1px solid #adc6d8; 51 + 52 +} 53 +#AddAttachment div.buttons { 54 +text-align: center; 55 +} - Logo
-
... ... @@ -1,0 +1,1 @@ 1 +logo.png - Base Skin
-
... ... @@ -1,0 +1,1 @@ 1 +toucan