| @@ -1,115 +1,213 @@ | |||
| @import url(code.css); | |||
| #content.ticket { width: 700px; max-width: 100%; margin: auto; } | |||
| #content.ticket { | |||
| width:700px; | |||
| max-width:100%; | |||
| margin:auto; | |||
| } | |||
| #newticket #field-description { | |||
| width:100%; | |||
| } | |||
| #newticket #field-description { width: 100% } | |||
| #newticket #properties { width: 100% } | |||
| #newticket #properties { | |||
| width:100%; | |||
| } | |||
| #ticket { | |||
| background: #ffd; | |||
| border: 1px outset #996; | |||
| margin-top: 1em; | |||
| padding: .5em 1em; | |||
| position: relative; | |||
| background:#ffd; | |||
| border:1px outset #996; | |||
| margin-top:1em; | |||
| padding:.5em 1em; | |||
| position:relative; | |||
| } | |||
| div#ticket.ticketdraft { | |||
| background: #f4f4f4 url(../draft.png); | |||
| background:#f4f4f4 url(../draft.png); | |||
| } | |||
| div#ticketchange.ticketdraft { | |||
| padding: 0 1em; | |||
| margin: 1em 0; | |||
| padding:0 1em; | |||
| margin:1em 0; | |||
| } | |||
| div#ticketchange.ticketdraft h3 { | |||
| margin-top: .5em; | |||
| margin-top:.5em; | |||
| } | |||
| .preview-notice { | |||
| font-weight:bold; | |||
| } | |||
| .preview-notice { font-weight: bold; } | |||
| .ticketdraft { | |||
| background: #f4f4f4 url(../draft.png); | |||
| border: 1px outset #996; | |||
| padding: 0 .2em; | |||
| background:#f4f4f4 url(../draft.png); | |||
| border:1px outset #996; | |||
| padding:0 .2em; | |||
| } | |||
| h1 .status { | |||
| color:#444; | |||
| } | |||
| #ticket h2.summary { | |||
| margin:0 0 .8em; | |||
| } | |||
| #ticket .date { | |||
| color:#996; | |||
| float:right; | |||
| font-size:85%; | |||
| position:relative; | |||
| } | |||
| h1 .status { color: #444; } | |||
| #ticket h2.summary { margin: 0 0 .8em 0 } | |||
| #ticket .date { color: #996; float: right; font-size: 85%; position: relative } | |||
| #ticket .date p { margin: .3em } | |||
| #ticket .date p { | |||
| margin:.3em; | |||
| } | |||
| #ticket table.properties { | |||
| clear: both; | |||
| border-top: 1px solid #dd9; | |||
| border-collapse: collapse; | |||
| table-layout: fixed; | |||
| width: 100%; | |||
| } | |||
| #ticket table.properties tr { border-bottom: 1px dotted #eed } | |||
| #ticket table.properties td, #ticket table.properties th { | |||
| font-size: 80%; | |||
| padding: .5em 1em; | |||
| vertical-align: top; | |||
| clear:both; | |||
| border-top:1px solid #dd9; | |||
| border-collapse:collapse; | |||
| table-layout:fixed; | |||
| width:100%; | |||
| } | |||
| #ticket table.properties tr { | |||
| border-bottom:1px dotted #eed; | |||
| } | |||
| #ticket table.properties td,#ticket table.properties th { | |||
| font-size:80%; | |||
| padding:.5em 1em; | |||
| vertical-align:top; | |||
| } | |||
| #ticket table.properties th { | |||
| color: #663; | |||
| font-weight: normal; | |||
| text-align: left; | |||
| width: 20%; | |||
| color:#663; | |||
| font-weight:normal; | |||
| text-align:left; | |||
| width:20%; | |||
| } | |||
| #ticket table.properties td { | |||
| width:30%; | |||
| } | |||
| #ticket table.properties .description { | |||
| border-top:1px solid #dd9; | |||
| } | |||
| #ticket table.properties td { width: 30% } | |||
| #ticket table.properties .description { border-top: 1px solid #dd9 } | |||
| #ticket .description h3 { | |||
| border-bottom: 1px solid #dd9; | |||
| color: #663; | |||
| font-size: 100%; | |||
| font-weight: normal; | |||
| border-bottom:1px solid #dd9; | |||
| color:#663; | |||
| font-size:100%; | |||
| font-weight:normal; | |||
| } | |||
| #ticket .description h3 .lastmod { | |||
| font-size: 90%; | |||
| font-size:90%; | |||
| } | |||
| #ticket .inlinebuttons { | |||
| float: right; | |||
| position: relative; | |||
| bottom: 0.3em; | |||
| #ticket .inlinebuttons { | |||
| float:right; | |||
| position:relative; | |||
| bottom:.3em; | |||
| } | |||
| #changelog { border: 1px outset #996; padding: 1em } | |||
| #preview { border: 1px solid #d7d7d7; padding: 1em } | |||
| #preview h3, #changelog h3 { | |||
| border-bottom: 1px solid #d7d7d7; | |||
| color: #999; | |||
| font-size: 100%; | |||
| font-weight: normal; | |||
| #changelog { | |||
| border:1px outset #996; | |||
| padding:1em; | |||
| } | |||
| .threading, #changelog .inlinebuttons { float: right; } | |||
| .threading { font-size: 90%; } | |||
| #preview .changes, #changelog .changes { list-style: square; margin-left: 2em; padding: 0 } | |||
| #preview .comment, #changelog .comment { margin-left: 2em } | |||
| #preview { | |||
| border:1px solid #d7d7d7; | |||
| padding:1em; | |||
| } | |||
| form .field { margin-top: .75em; width: 100% } | |||
| form #comment { width: 100% } | |||
| #preview h3,#changelog h3 { | |||
| border-bottom:1px solid #d7d7d7; | |||
| color:#999; | |||
| font-size:100%; | |||
| font-weight:normal; | |||
| } | |||
| .threading,#changelog .inlinebuttons { | |||
| float:right; | |||
| } | |||
| .threading { | |||
| font-size:90%; | |||
| } | |||
| #preview .changes,#changelog .changes { | |||
| list-style:square; | |||
| margin-left:2em; | |||
| padding:0; | |||
| } | |||
| #preview .comment,#changelog .comment { | |||
| margin-left:2em; | |||
| } | |||
| form .field { | |||
| margin-top:.75em; | |||
| width:100%; | |||
| } | |||
| form #comment { | |||
| width:100%; | |||
| } | |||
| #properties { | |||
| white-space:nowrap; | |||
| line-height:160%; | |||
| padding:.5em; | |||
| } | |||
| #properties table { | |||
| border-spacing:0; | |||
| width:100%; | |||
| } | |||
| #properties { white-space: nowrap; line-height: 160%; padding: .5em } | |||
| #properties table { border-spacing: 0; width: 100%; } | |||
| #properties table th { | |||
| padding: .4em; | |||
| text-align: right; | |||
| width: 20%; | |||
| vertical-align: top; | |||
| padding:.4em; | |||
| text-align:right; | |||
| width:20%; | |||
| vertical-align:top; | |||
| } | |||
| #properties table th.col2 { | |||
| border-left:1px dotted #d7d7d7; | |||
| } | |||
| #properties table th.col2 { border-left: 1px dotted #d7d7d7 } | |||
| #properties table td { vertical-align: middle; width: 30% } | |||
| #properties table td.fullrow { vertical-align: middle; width: 80% } | |||
| #action { line-height: 2em } | |||
| #properties table td { | |||
| vertical-align:middle; | |||
| width:30%; | |||
| } | |||
| #properties table td.fullrow { | |||
| vertical-align:middle; | |||
| width:80%; | |||
| } | |||
| #action { | |||
| line-height:2em; | |||
| } | |||
| fieldset.radio { | |||
| border:none; | |||
| margin:0; | |||
| padding:0; | |||
| } | |||
| fieldset.radio { border: none; margin: 0; padding: 0 } | |||
| fieldset.radio legend { | |||
| color: #000; | |||
| float: left; | |||
| font-size: 100%; | |||
| font-weight: normal; | |||
| padding: 0 1em 0 0; | |||
| color:#000; | |||
| float:left; | |||
| font-size:100%; | |||
| font-weight:normal; | |||
| padding:0 1em 0 0; | |||
| } | |||
| fieldset.radio label { | |||
| padding-right:1em; | |||
| } | |||
| fieldset.radio label { padding-right: 1em } | |||
| @@ -1,75 +1,158 @@ | |||
| /* Timeline */ | |||
| * html #prefs { | |||
| width:34em; | |||
| } | |||
| /* Set width only for IE */ | |||
| #prefs fieldset label { | |||
| display:block; | |||
| } | |||
| * html #prefs { width: 34em } /* Set width only for IE */ | |||
| #prefs fieldset label { display: block } | |||
| #prefs .buttons { margin-top: -1.6em } | |||
| #prefs .buttons { | |||
| margin-top:-1.6em; | |||
| } | |||
| h2 { | |||
| background: #f7f7f7; | |||
| border-bottom: 1px solid #d7d7d7; | |||
| margin: 2em 0 .5em; | |||
| } | |||
| dl { line-height: 1.3em; margin-left: 1em } | |||
| dt { background: 3px 4px no-repeat; padding: 0 } | |||
| dt :link, dt :visited { | |||
| background: 3px 3px no-repeat; | |||
| border: none; | |||
| color: #000; | |||
| padding: 0 4px 2px 22px; | |||
| } | |||
| dt>:link, dt>:visited { | |||
| /* Hide from IE/Win */ | |||
| background-position: 3px 4px; | |||
| } | |||
| dt :link:hover, dt :visited:hover { background-color: #eed; color: #000 } | |||
| background:#f7f7f7; | |||
| border-bottom:1px solid #d7d7d7; | |||
| margin:2em 0 .5em; | |||
| } | |||
| dl { | |||
| line-height:1.3em; | |||
| margin-left:1em; | |||
| } | |||
| dt { | |||
| background:3px 4px no-repeat; | |||
| padding:0; | |||
| } | |||
| dt :link,dt :visited { | |||
| background:3px 3px no-repeat; | |||
| border:none; | |||
| color:#000; | |||
| padding:0 4px 2px 22px; | |||
| } | |||
| dt>:link,dt>:visited { | |||
| /* Hide from IE/Win */ | |||
| background-position:3px 4px; | |||
| } | |||
| dt :link:hover,dt :visited:hover { | |||
| background-color:#eed; | |||
| color:#000; | |||
| } | |||
| dt em { | |||
| border-bottom: 1px dotted #bbb; | |||
| color: #b00; | |||
| font-style: normal; | |||
| text-decoration: none; | |||
| border-bottom:1px dotted #bbb; | |||
| color:#b00; | |||
| font-style:normal; | |||
| text-decoration:none; | |||
| } | |||
| dt .time { | |||
| color:#999; | |||
| } | |||
| dt .author { | |||
| color:#666; | |||
| } | |||
| dt.highlight { | |||
| background-color:#ffa; | |||
| } | |||
| dt .time { color: #999; } | |||
| dt .author { color: #666; } | |||
| dt.highlight { background-color: #ffa; } | |||
| dd { | |||
| margin: 0 0 .75em 5.5em; | |||
| padding: 0; | |||
| color: #776; | |||
| dd { | |||
| margin:0 0 .75em 5.5em; | |||
| padding:0; | |||
| color:#776; | |||
| } | |||
| /* Apply icon background-image twice to avoid hover-flicker in IE/Win */ | |||
| dt.changeset, dt.changeset a { background-image: url(../changeset.png) !important } | |||
| dt.newticket, dt.newticket a { background-image: url(../newticket.png) !important } | |||
| dt.reopenedticket, dt.reopenedticket a { background-image: url(../newticket.png) !important } | |||
| dt.editedticket, dt.editedticket a { background-image: url(../editedticket.png) !important } | |||
| dt.closedticket, dt.closedticket a { background-image: url(../closedticket.png) !important } | |||
| dt.wiki, dt.wiki a { background-image: url(../wiki.png) !important } | |||
| dt.milestone, dt.milestone a { background-image: url(../milestone.png) !important } | |||
| dt.attachment, dt.attachment a { background-image: url(../attachment.png) !important } | |||
| dt.changeset,dt.changeset a { | |||
| background-image:url(../changeset.png)!important; | |||
| } | |||
| dt.newticket,dt.newticket a { | |||
| background-image:url(../newticket.png)!important; | |||
| } | |||
| dt.reopenedticket,dt.reopenedticket a { | |||
| background-image:url(../newticket.png)!important; | |||
| } | |||
| dt.editedticket,dt.editedticket a { | |||
| background-image:url(../editedticket.png)!important; | |||
| } | |||
| dt.closedticket,dt.closedticket a { | |||
| background-image:url(../closedticket.png)!important; | |||
| } | |||
| dt.wiki,dt.wiki a { | |||
| background-image:url(../wiki.png)!important; | |||
| } | |||
| dt.milestone,dt.milestone a { | |||
| background-image:url(../milestone.png)!important; | |||
| } | |||
| dt.attachment,dt.attachment a { | |||
| background-image:url(../attachment.png)!important; | |||
| } | |||
| /* styles for the 'changeset_long_messages' option */ | |||
| dd.changeset p { margin: 0; padding: 0 } | |||
| dd.changeset ul { padding-left: 15px; } | |||
| dd.changeset p { | |||
| margin:0; | |||
| padding:0; | |||
| } | |||
| dd.changeset ul { | |||
| padding-left:15px; | |||
| } | |||
| /* Styles for the 'changeset_show_files' option */ | |||
| dd.changeset .changes { color: #aaa; } | |||
| dd.changeset ul.changes { | |||
| padding-left: 0; | |||
| list-style-type: none; | |||
| dd.changeset .changes { | |||
| color:#aaa; | |||
| } | |||
| dd.changeset ul.changes { | |||
| padding-left:0; | |||
| list-style-type:none; | |||
| } | |||
| dd.changeset .changes li div { | |||
| border: 1px solid #999; | |||
| float: left; | |||
| margin: .5em .5em 0 0; | |||
| overflow: hidden; | |||
| width: .8em; height: .8em; | |||
| } | |||
| dd.changeset .changes li span { | |||
| float: left; | |||
| margin-right: .8em; | |||
| } | |||
| dd.changeset .changes .add { background: #bfb } | |||
| dd.changeset .changes .delete { background: #f88 } | |||
| dd.changeset .changes .edit { background: #fd8 } | |||
| dd.changeset .changes .copy { background: #88f } | |||
| dd.changeset .changes .move { background: #ccc } | |||
| border:1px solid #999; | |||
| float:left; | |||
| margin:.5em .5em 0 0; | |||
| overflow:hidden; | |||
| width:.8em; | |||
| height:.8em; | |||
| } | |||
| dd.changeset .changes li span { | |||
| float:left; | |||
| margin-right:.8em; | |||
| } | |||
| dd.changeset .changes .add { | |||
| background:#bfb; | |||
| } | |||
| dd.changeset .changes .delete { | |||
| background:#f88; | |||
| } | |||
| dd.changeset .changes .edit { | |||
| background:#fd8; | |||
| } | |||
| dd.changeset .changes .copy { | |||
| background:#88f; | |||
| } | |||
| dd.changeset .changes .move { | |||
| background:#ccc; | |||
| } | |||
| @@ -1,44 +1,110 @@ | |||
| @import url(code.css); | |||
| /* Styles for the page editing form */ | |||
| #edit #rows { float: right;} | |||
| #edit #rows select { } | |||
| #edit #text { clear: both; width: 100% } | |||
| #edit .wikitoolbar { float: left; } | |||
| #changeinfo { padding: .5em } | |||
| #changeinfo .field { float: left; margin: 0 1em .5em 0 } | |||
| #changeinfo br { clear: left } | |||
| #changeinfo .options { padding: 0 0 1em 1em } | |||
| #changeinfo .options, #changeinfo .buttons { clear: left } | |||
| #delete, #save { margin-left: 6em } | |||
| #edit #rows { | |||
| float:right; | |||
| } | |||
| #edit #rows select { | |||
| } | |||
| #edit #text { | |||
| clear:both; | |||
| width:100%; | |||
| } | |||
| #edit .wikitoolbar { | |||
| float:left; | |||
| } | |||
| #changeinfo { | |||
| padding:.5em; | |||
| } | |||
| #changeinfo .field { | |||
| float:left; | |||
| margin:0 1em .5em 0; | |||
| } | |||
| #changeinfo br { | |||
| clear:left; | |||
| } | |||
| #changeinfo .options { | |||
| padding:0 0 1em 1em; | |||
| } | |||
| #changeinfo .options,#changeinfo .buttons { | |||
| clear:left; | |||
| } | |||
| #delete,#save { | |||
| margin-left:6em; | |||
| } | |||
| #preview { | |||
| background: #f4f4f4 url(../draft.png); | |||
| margin: 1em 0 2em; | |||
| overflow: auto; | |||
| background:#f4f4f4 url(../draft.png); | |||
| margin:1em 0 2em; | |||
| overflow:auto; | |||
| } | |||
| #template { | |||
| vertical-align:middle; | |||
| padding-top:1em; | |||
| } | |||
| #template { vertical-align: middle; padding-top: 1em; } | |||
| /* Diff view */ | |||
| #overview .multi { color: #999 } | |||
| #overview .ipnr { color: #999; font-size: 80% } | |||
| #overview .comment { padding: 1em 0 0 } | |||
| #overview .multi { | |||
| color:#999; | |||
| } | |||
| #overview .ipnr { | |||
| color:#999; | |||
| font-size:80%; | |||
| } | |||
| @media print { | |||
| th.diff, td.diff { display: none } | |||
| #overview .comment { | |||
| padding:1em 0 0; | |||
| } | |||
| @media print { | |||
| th.diff,td.diff { | |||
| display:none; | |||
| } | |||
| } | |||
| /* Styles for the TracGuideToc wikimacro */ | |||
| .wiki-toc { | |||
| padding: .5em 1em; | |||
| margin: 0 0 2em 1em; | |||
| float: right; | |||
| border: 1px outset #ddc; | |||
| background: #ffd; | |||
| font-size: 85%; | |||
| position: relative; | |||
| } | |||
| .wiki-toc h4 { font-size: 12px; margin: 0 } | |||
| .wiki-toc ul, .wiki-toc ol { list-style: none; padding: 0; margin: 0 } | |||
| .wiki-toc ul ul, .wiki-toc ol ol { padding-left: 1.2em } | |||
| .wiki-toc li { margin: 0; padding: 0 } | |||
| .wiki-toc .active { background: #ff9; position: relative; } | |||
| padding:.5em 1em; | |||
| margin:0 0 2em 1em; | |||
| float:right; | |||
| border:1px outset #ddc; | |||
| background:#ffd; | |||
| font-size:85%; | |||
| position:relative; | |||
| } | |||
| .wiki-toc h4 { | |||
| font-size:12px; | |||
| margin:0; | |||
| } | |||
| .wiki-toc ul,.wiki-toc ol { | |||
| list-style:none; | |||
| padding:0; | |||
| margin:0; | |||
| } | |||
| .wiki-toc ul ul,.wiki-toc ol ol { | |||
| padding-left:1.2em; | |||
| } | |||
| .wiki-toc li { | |||
| margin:0; | |||
| padding:0; | |||
| } | |||
| .wiki-toc .active { | |||
| background:#ff9; | |||
| position:relative; | |||
| } | |||
| @@ -146,5 +146,5 @@ th { | |||
| th a { | |||
| color: #224422; | |||
| } | |||
| #metanav ul { text-align: right;} | |||
| #metanav ul { text-align: right; } | |||
| #ctxtnav ul { text-align: right; } | |||