Changeset 3047 for web/branches
- Timestamp:
- Oct 19, 2008, 11:02:57 PM (14 years ago)
- Location:
- web/branches/test/trac/htdocs
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
web/branches/test/trac/htdocs/common/css/ticket.css
r3037 r3047 1 1 @import url(code.css); 2 2 3 #content.ticket { width: 700px; max-width: 100%; margin: auto; } 4 5 #newticket #field-description { width: 100% } 6 #newticket #properties { width: 100% } 3 #content.ticket { 4 width:700px; 5 max-width:100%; 6 margin:auto; 7 } 8 9 #newticket #field-description { 10 width:100%; 11 } 12 13 #newticket #properties { 14 width:100%; 15 } 7 16 8 17 #ticket { 9 background:#ffd;10 border:1px outset #996;11 margin-top:1em;12 padding:.5em 1em;13 position:relative;18 background:#ffd; 19 border:1px outset #996; 20 margin-top:1em; 21 padding:.5em 1em; 22 position:relative; 14 23 } 15 24 16 25 div#ticket.ticketdraft { 17 background: #f4f4f4 url(../draft.png); 18 } 26 background:#f4f4f4 url(../draft.png); 27 } 28 19 29 div#ticketchange.ticketdraft { 20 padding: 0 1em; 21 margin: 1em 0; 22 } 30 padding:0 1em; 31 margin:1em 0; 32 } 33 23 34 div#ticketchange.ticketdraft h3 { 24 margin-top: .5em; 25 } 26 .preview-notice { font-weight: bold; } 35 margin-top:.5em; 36 } 37 38 .preview-notice { 39 font-weight:bold; 40 } 27 41 28 42 .ticketdraft { 29 background: #f4f4f4 url(../draft.png); 30 border: 1px outset #996; 31 padding: 0 .2em; 32 } 33 34 h1 .status { color: #444; } 35 #ticket h2.summary { margin: 0 0 .8em 0 } 36 #ticket .date { color: #996; float: right; font-size: 85%; position: relative } 37 #ticket .date p { margin: .3em } 43 background:#f4f4f4 url(../draft.png); 44 border:1px outset #996; 45 padding:0 .2em; 46 } 47 48 h1 .status { 49 color:#444; 50 } 51 52 #ticket h2.summary { 53 margin:0 0 .8em; 54 } 55 56 #ticket .date { 57 color:#996; 58 float:right; 59 font-size:85%; 60 position:relative; 61 } 62 63 #ticket .date p { 64 margin:.3em; 65 } 38 66 39 67 #ticket table.properties { 40 clear: both; 41 border-top: 1px solid #dd9; 42 border-collapse: collapse; 43 table-layout: fixed; 44 width: 100%; 45 } 46 #ticket table.properties tr { border-bottom: 1px dotted #eed } 47 #ticket table.properties td, #ticket table.properties th { 48 font-size: 80%; 49 padding: .5em 1em; 50 vertical-align: top; 51 } 68 clear:both; 69 border-top:1px solid #dd9; 70 border-collapse:collapse; 71 table-layout:fixed; 72 width:100%; 73 } 74 75 #ticket table.properties tr { 76 border-bottom:1px dotted #eed; 77 } 78 79 #ticket table.properties td,#ticket table.properties th { 80 font-size:80%; 81 padding:.5em 1em; 82 vertical-align:top; 83 } 84 52 85 #ticket table.properties th { 53 color: #663; 54 font-weight: normal; 55 text-align: left; 56 width: 20%; 57 } 58 #ticket table.properties td { width: 30% } 59 #ticket table.properties .description { border-top: 1px solid #dd9 } 86 color:#663; 87 font-weight:normal; 88 text-align:left; 89 width:20%; 90 } 91 92 #ticket table.properties td { 93 width:30%; 94 } 95 96 #ticket table.properties .description { 97 border-top:1px solid #dd9; 98 } 60 99 61 100 #ticket .description h3 { 62 border-bottom: 1px solid #dd9; 63 color: #663; 64 font-size: 100%; 65 font-weight: normal; 66 } 101 border-bottom:1px solid #dd9; 102 color:#663; 103 font-size:100%; 104 font-weight:normal; 105 } 106 67 107 #ticket .description h3 .lastmod { 68 font-size: 90%; 69 } 70 #ticket .inlinebuttons { 71 float: right; 72 position: relative; 73 bottom: 0.3em; 74 } 75 76 #changelog { border: 1px outset #996; padding: 1em } 77 #preview { border: 1px solid #d7d7d7; padding: 1em } 78 #preview h3, #changelog h3 { 79 border-bottom: 1px solid #d7d7d7; 80 color: #999; 81 font-size: 100%; 82 font-weight: normal; 83 } 84 .threading, #changelog .inlinebuttons { float: right; } 85 .threading { font-size: 90%; } 86 87 #preview .changes, #changelog .changes { list-style: square; margin-left: 2em; padding: 0 } 88 #preview .comment, #changelog .comment { margin-left: 2em } 89 90 form .field { margin-top: .75em; width: 100% } 91 form #comment { width: 100% } 92 93 #properties { white-space: nowrap; line-height: 160%; padding: .5em } 94 #properties table { border-spacing: 0; width: 100%; } 108 font-size:90%; 109 } 110 111 #ticket .inlinebuttons { 112 float:right; 113 position:relative; 114 bottom:.3em; 115 } 116 117 #changelog { 118 border:1px outset #996; 119 padding:1em; 120 } 121 122 #preview { 123 border:1px solid #d7d7d7; 124 padding:1em; 125 } 126 127 #preview h3,#changelog h3 { 128 border-bottom:1px solid #d7d7d7; 129 color:#999; 130 font-size:100%; 131 font-weight:normal; 132 } 133 134 .threading,#changelog .inlinebuttons { 135 float:right; 136 } 137 138 .threading { 139 font-size:90%; 140 } 141 142 #preview .changes,#changelog .changes { 143 list-style:square; 144 margin-left:2em; 145 padding:0; 146 } 147 148 #preview .comment,#changelog .comment { 149 margin-left:2em; 150 } 151 152 form .field { 153 margin-top:.75em; 154 width:100%; 155 } 156 157 form #comment { 158 width:100%; 159 } 160 161 #properties { 162 white-space:nowrap; 163 line-height:160%; 164 padding:.5em; 165 } 166 167 #properties table { 168 border-spacing:0; 169 width:100%; 170 } 171 95 172 #properties table th { 96 padding: .4em; 97 text-align: right; 98 width: 20%; 99 vertical-align: top; 100 } 101 #properties table th.col2 { border-left: 1px dotted #d7d7d7 } 102 #properties table td { vertical-align: middle; width: 30% } 103 #properties table td.fullrow { vertical-align: middle; width: 80% } 104 105 #action { line-height: 2em } 106 107 fieldset.radio { border: none; margin: 0; padding: 0 } 173 padding:.4em; 174 text-align:right; 175 width:20%; 176 vertical-align:top; 177 } 178 179 #properties table th.col2 { 180 border-left:1px dotted #d7d7d7; 181 } 182 183 #properties table td { 184 vertical-align:middle; 185 width:30%; 186 } 187 188 #properties table td.fullrow { 189 vertical-align:middle; 190 width:80%; 191 } 192 193 #action { 194 line-height:2em; 195 } 196 197 fieldset.radio { 198 border:none; 199 margin:0; 200 padding:0; 201 } 202 108 203 fieldset.radio legend { 109 color: #000; 110 float: left; 111 font-size: 100%; 112 font-weight: normal; 113 padding: 0 1em 0 0; 114 } 115 fieldset.radio label { padding-right: 1em } 204 color:#000; 205 float:left; 206 font-size:100%; 207 font-weight:normal; 208 padding:0 1em 0 0; 209 } 210 211 fieldset.radio label { 212 padding-right:1em; 213 } -
web/branches/test/trac/htdocs/common/css/timeline.css
r3036 r3047 1 1 /* Timeline */ 2 * html #prefs { 3 width:34em; 4 } 2 5 3 * html #prefs { width: 34em } /* Set width only for IE */ 4 #prefs fieldset label { display: block } 5 #prefs .buttons { margin-top: -1.6em } 6 /* Set width only for IE */ 7 #prefs fieldset label { 8 display:block; 9 } 10 11 #prefs .buttons { 12 margin-top:-1.6em; 13 } 6 14 7 15 h2 { 8 background:#f7f7f7;9 border-bottom:1px solid #d7d7d7;10 margin:2em 0 .5em;16 background:#f7f7f7; 17 border-bottom:1px solid #d7d7d7; 18 margin:2em 0 .5em; 11 19 } 12 dl { line-height: 1.3em; margin-left: 1em } 13 dt { background: 3px 4px no-repeat; padding: 0 } 14 dt :link, dt :visited { 15 background: 3px 3px no-repeat; 16 border: none; 17 color: #000; 18 padding: 0 4px 2px 22px; 20 21 dl { 22 line-height:1.3em; 23 margin-left:1em; 19 24 } 20 dt>:link, dt>:visited { 21 /* Hide from IE/Win */ 22 background-position: 3px 4px; 25 26 dt { 27 background:3px 4px no-repeat; 28 padding:0; 23 29 } 24 dt :link:hover, dt :visited:hover { background-color: #eed; color: #000 } 30 31 dt :link,dt :visited { 32 background:3px 3px no-repeat; 33 border:none; 34 color:#000; 35 padding:0 4px 2px 22px; 36 } 37 38 dt>:link,dt>:visited { 39 /* Hide from IE/Win */ 40 background-position:3px 4px; 41 } 42 43 dt :link:hover,dt :visited:hover { 44 background-color:#eed; 45 color:#000; 46 } 47 25 48 dt em { 26 border-bottom:1px dotted #bbb;27 color:#b00;28 font-style:normal;29 text-decoration:none;49 border-bottom:1px dotted #bbb; 50 color:#b00; 51 font-style:normal; 52 text-decoration:none; 30 53 } 31 dt .time { color: #999; } 32 dt .author { color: #666; } 33 dt.highlight { background-color: #ffa; } 34 dd { 35 margin: 0 0 .75em 5.5em; 36 padding: 0; 37 color: #776; 54 55 dt .time { 56 color:#999; 57 } 58 59 dt .author { 60 color:#666; 61 } 62 63 dt.highlight { 64 background-color:#ffa; 65 } 66 67 dd { 68 margin:0 0 .75em 5.5em; 69 padding:0; 70 color:#776; 38 71 } 39 72 40 73 /* Apply icon background-image twice to avoid hover-flicker in IE/Win */ 41 dt.changeset, dt.changeset a { background-image: url(../changeset.png) !important } 42 dt.newticket, dt.newticket a { background-image: url(../newticket.png) !important } 43 dt.reopenedticket, dt.reopenedticket a { background-image: url(../newticket.png) !important } 44 dt.editedticket, dt.editedticket a { background-image: url(../editedticket.png) !important } 45 dt.closedticket, dt.closedticket a { background-image: url(../closedticket.png) !important } 46 dt.wiki, dt.wiki a { background-image: url(../wiki.png) !important } 47 dt.milestone, dt.milestone a { background-image: url(../milestone.png) !important } 48 dt.attachment, dt.attachment a { background-image: url(../attachment.png) !important } 74 dt.changeset,dt.changeset a { 75 background-image:url(../changeset.png)!important; 76 } 77 78 dt.newticket,dt.newticket a { 79 background-image:url(../newticket.png)!important; 80 } 81 82 dt.reopenedticket,dt.reopenedticket a { 83 background-image:url(../newticket.png)!important; 84 } 85 86 dt.editedticket,dt.editedticket a { 87 background-image:url(../editedticket.png)!important; 88 } 89 90 dt.closedticket,dt.closedticket a { 91 background-image:url(../closedticket.png)!important; 92 } 93 94 dt.wiki,dt.wiki a { 95 background-image:url(../wiki.png)!important; 96 } 97 98 dt.milestone,dt.milestone a { 99 background-image:url(../milestone.png)!important; 100 } 101 102 dt.attachment,dt.attachment a { 103 background-image:url(../attachment.png)!important; 104 } 49 105 50 106 /* styles for the 'changeset_long_messages' option */ 51 dd.changeset p { margin: 0; padding: 0 } 52 dd.changeset ul { padding-left: 15px; } 107 dd.changeset p { 108 margin:0; 109 padding:0; 110 } 111 112 dd.changeset ul { 113 padding-left:15px; 114 } 53 115 54 116 /* Styles for the 'changeset_show_files' option */ 55 dd.changeset .changes { color: #aaa; } 56 dd.changeset ul.changes { 57 padding-left: 0; 58 list-style-type: none; 117 dd.changeset .changes { 118 color:#aaa; 59 119 } 120 121 dd.changeset ul.changes { 122 padding-left:0; 123 list-style-type:none; 124 } 125 60 126 dd.changeset .changes li div { 61 border: 1px solid #999; 62 float: left; 63 margin: .5em .5em 0 0; 64 overflow: hidden; 65 width: .8em; height: .8em; 127 border:1px solid #999; 128 float:left; 129 margin:.5em .5em 0 0; 130 overflow:hidden; 131 width:.8em; 132 height:.8em; 66 133 } 67 dd.changeset .changes li span { 68 float: left; 69 margin-right: .8em; 134 135 dd.changeset .changes li span { 136 float:left; 137 margin-right:.8em; 70 138 } 71 dd.changeset .changes .add { background: #bfb } 72 dd.changeset .changes .delete { background: #f88 } 73 dd.changeset .changes .edit { background: #fd8 } 74 dd.changeset .changes .copy { background: #88f } 75 dd.changeset .changes .move { background: #ccc } 139 140 dd.changeset .changes .add { 141 background:#bfb; 142 } 143 144 dd.changeset .changes .delete { 145 background:#f88; 146 } 147 148 dd.changeset .changes .edit { 149 background:#fd8; 150 } 151 152 dd.changeset .changes .copy { 153 background:#88f; 154 } 155 156 dd.changeset .changes .move { 157 background:#ccc; 158 } -
web/branches/test/trac/htdocs/common/css/trac.css
r3040 r3047 1 body { background: #fff; color: #000; margin: 10px; padding: 0; } 2 body, th, td { 3 font: normal 13px Verdana,Arial,'Bitstream Vera Sans',Helvetica,sans-serif; 4 } 5 h1, h2, h3, h4 { 6 font-family: Arial,Verdana,'Bitstream Vera Sans',Helvetica,sans-serif; 7 font-weight: bold; 8 letter-spacing: -0.018em; 9 page-break-after: avoid; 10 } 11 h1 { font-size: 19px; margin: .15em 1em 0.5em 0 } 12 h2 { font-size: 16px } 13 h3 { font-size: 14px } 14 hr { border: none; border-top: 1px solid #ccb; margin: 2em 0 } 15 address { font-style: normal } 16 img { border: none } 17 18 .underline { text-decoration: underline } 19 ol.loweralpha { list-style-type: lower-alpha } 20 ol.upperalpha { list-style-type: upper-alpha } 21 ol.lowerroman { list-style-type: lower-roman } 22 ol.upperroman { list-style-type: upper-roman } 23 ol.arabic { list-style-type: decimal } 1 body { 2 background:#fff; 3 color:#000; 4 margin:10px; 5 padding:0; 6 } 7 8 body,th,td { 9 font:normal 13px Verdana,Arial,'Bitstream Vera Sans',Helvetica,sans-serif; 10 } 11 12 h1,h2,h3,h4 { 13 font-family:Arial,Verdana,'Bitstream Vera Sans',Helvetica,sans-serif; 14 font-weight:bold; 15 letter-spacing:-.018em; 16 page-break-after:avoid; 17 } 18 19 h1 { 20 font-size:19px; 21 margin:.15em 1em .5em 0; 22 } 23 24 h2 { 25 font-size:16px; 26 } 27 28 h3 { 29 font-size:14px; 30 } 31 32 hr { 33 border:none; 34 border-top:1px solid #ccb; 35 margin:2em 0; 36 } 37 38 address { 39 font-style:normal; 40 } 41 42 img { 43 border:none; 44 } 45 46 .underline { 47 text-decoration:underline; 48 } 49 50 ol.loweralpha { 51 list-style-type:lower-alpha; 52 } 53 54 ol.upperalpha { 55 list-style-type:upper-alpha; 56 } 57 58 ol.lowerroman { 59 list-style-type:lower-roman; 60 } 61 62 ol.upperroman { 63 list-style-type:upper-roman; 64 } 65 66 ol.arabic { 67 list-style-type:decimal; 68 } 24 69 25 70 /* Link styles */ 26 :link, :visited { 27 text-decoration: none; 28 color: #b00; 29 border-bottom: 1px dotted #bbb; 30 } 31 :link:hover, :visited:hover { background-color: #eee; color: #555 } 32 h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited, 33 h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited { 34 color: inherit; 71 :link,:visited { 72 text-decoration:none; 73 color:#b00; 74 border-bottom:1px dotted #bbb; 75 } 76 77 :link:hover,:visited:hover { 78 background-color:#eee; 79 color:#555; 80 } 81 82 h1 :link,h1 :visited,h2 :link,h2 :visited,h3 :link,h3 :visited,h4 :link,h4 :visited,h5 :link,h5 :visited,h6 :link,h6 :visited { 83 color:inherit; 35 84 } 36 85 37 86 /* Heading anchors */ 38 .anchor:link, .anchor:visited { 39 border: none; 40 color: #d7d7d7; 41 font-size: .8em; 42 vertical-align: text-top; 43 } 44 * > .anchor:link, * > .anchor:visited { 45 visibility: hidden; 46 } 47 h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, 48 h4:hover .anchor, h5:hover .anchor, h6:hover .anchor { 49 visibility: visible; 87 .anchor:link,.anchor:visited { 88 border:none; 89 color:#d7d7d7; 90 font-size:.8em; 91 vertical-align:text-top; 92 } 93 94 * > .anchor:link,* > .anchor:visited { 95 visibility:hidden; 96 } 97 98 h1:hover .anchor,h2:hover .anchor,h3:hover .anchor,h4:hover .anchor,h5:hover .anchor,h6:hover .anchor { 99 visibility:visible; 50 100 } 51 101 52 102 @media screen { 53 a.ext-link .icon { 54 background: url(../extlink.gif) left center no-repeat; 55 padding-left: 16px; 56 } 57 a.mail-link .icon { 58 background: url(../envelope.png) left center no-repeat; 59 padding-left: 16px; 60 } 103 a.ext-link .icon { 104 background:url(../extlink.gif) left center no-repeat; 105 padding-left:16px; 106 } 107 108 a.mail-link .icon { 109 background:url(../envelope.png) left center no-repeat; 110 padding-left:16px; 111 } 61 112 } 62 113 63 114 /* Forms */ 64 input, textarea, select { margin: 2px } 65 input, select { vertical-align: middle } 66 input[type=button], input[type=submit], input[type=reset] { 67 background: #eee; 68 color: #222; 69 border: 1px outset #ccc; 70 padding: .1em .5em; 71 } 72 input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover { 73 background: #ccb; 74 } 75 input[type=button][disabled], input[type=submit][disabled], 76 input[type=reset][disabled] { 77 background: #f6f6f6; 78 border-style: solid; 79 color: #999; 80 } 81 input[type=text], input.textwidget, textarea { border: 1px solid #d7d7d7 } 82 input[type=text], input.textwidget { padding: .25em .5em } 83 input[type=text]:focus, input.textwidget:focus, textarea:focus { 84 border: 1px solid #886; 85 } 86 option { border-bottom: 1px dotted #d7d7d7 } 87 fieldset { border: 1px solid #d7d7d7; padding: .5em; margin: 1em 0 } 88 form p.hint, form span.hint { color: #666; font-style: italic; margin: .5em 0; 89 padding-left: 1em; 90 } 115 input,textarea,select { 116 margin:2px; 117 } 118 119 input,select { 120 vertical-align:middle; 121 } 122 123 input[type=button],input[type=submit],input[type=reset] { 124 background:#eee; 125 color:#222; 126 border:1px outset #ccc; 127 padding:.1em .5em; 128 } 129 130 input[type=button]:hover,input[type=submit]:hover,input[type=reset]:hover { 131 background:#ccb; 132 } 133 134 input[type=button][disabled],input[type=submit][disabled],input[type=reset][disabled] { 135 background:#f6f6f6; 136 border-style:solid; 137 color:#999; 138 } 139 140 input[type=text],input.textwidget,textarea { 141 border:1px solid #d7d7d7; 142 } 143 144 input[type=text],input.textwidget { 145 padding:.25em .5em; 146 } 147 148 input[type=text]:focus,input.textwidget:focus,textarea:focus { 149 border:1px solid #886; 150 } 151 152 option { 153 border-bottom:1px dotted #d7d7d7; 154 } 155 156 fieldset { 157 border:1px solid #d7d7d7; 158 padding:.5em; 159 margin:1em 0; 160 } 161 162 form p.hint,form span.hint { 163 color:#666; 164 font-style:italic; 165 margin:.5em 0; 166 padding-left:1em; 167 } 168 91 169 fieldset.iefix { 92 background: transparent; 93 border: none; 94 padding: 0; 95 margin: 0; 96 } 97 * html fieldset.iefix { width: 98% } 98 fieldset.iefix p { margin: 0 } 99 legend { color: #999; padding: 0 .25em; font-weight: bold } 100 label.disabled { color: #d7d7d7 } 101 .buttons { margin: .5em .5em .5em 0 } 102 .buttons form, .buttons form div { display: inline } 103 .buttons input { margin: 1em .5em .1em 0 } 104 .inlinebuttons input { 105 border-width: 1px; 106 border-style: dotted; 107 margin: 0 .1em; 108 padding: 0.1em; 109 background: none; 170 background:transparent; 171 border:none; 172 padding:0; 173 margin:0; 174 } 175 176 * html fieldset.iefix { 177 width:98%; 178 } 179 180 fieldset.iefix p { 181 margin:0; 182 } 183 184 legend { 185 color:#999; 186 padding:0 .25em; 187 font-weight:bold; 188 } 189 190 label.disabled { 191 color:#d7d7d7; 192 } 193 194 .buttons { 195 margin:.5em .5em .5em 0; 196 } 197 198 .buttons form,.buttons form div { 199 display:inline; 200 } 201 202 .buttons input { 203 margin:1em .5em .1em 0; 204 } 205 206 .inlinebuttons input { 207 border-width:1px; 208 border-style:dotted; 209 margin:0 .1em; 210 padding:.1em; 211 background:none; 110 212 } 111 213 112 214 /* Header */ 113 #header hr { display: none } 114 #header h1 { margin: 1.5em 0 -1.5em; } 115 #header img { border: none; margin: 0 0 -3em } 116 #header :link, #header :visited, #header :link:hover, #header :visited:hover { 117 background: transparent; 118 color: #555; 119 margin-bottom: 2px; 120 border: none; 121 } 122 #header h1 :link:hover, #header h1 :visited:hover { color: #000 } 215 #header hr { 216 display:none; 217 } 218 219 #header h1 { 220 margin:1.5em 0 -1.5em; 221 } 222 223 #header img { 224 border:none; 225 margin:0 0 -3em; 226 } 227 228 #header :link,#header :visited,#header :link:hover,#header :visited:hover { 229 background:transparent; 230 color:#555; 231 margin-bottom:2px; 232 border:none; 233 } 234 235 #header h1 :link:hover,#header h1 :visited:hover { 236 color:#000; 237 } 123 238 124 239 /* Quick search */ 125 240 #search { 126 clear: both; 127 font-size: 10px; 128 height: 2.2em; 129 margin: 0 0 1em; 130 text-align: right; 131 } 132 #search input { font-size: 10px } 133 #search label { display: none } 241 clear:both; 242 font-size:10px; 243 height:2.2em; 244 margin:0 0 1em; 245 text-align:right; 246 } 247 248 #search input { 249 font-size:10px; 250 } 251 252 #search label { 253 display:none; 254 } 134 255 135 256 /* Navigation */ 136 .nav h2, .nav hr { display: none } 137 .nav ul {list-style: none; margin: 0; } 257 .nav h2,.nav hr { 258 display:none; 259 } 260 261 .nav ul { 262 list-style:none; 263 margin:0; 264 } 265 138 266 .nav li { 139 border-right: 1px solid #d7d7d7; 140 display: inline; 141 padding: 0 .75em; 142 white-space: nowrap; 143 } 144 .nav li.last { border-right: none } 267 border-right:1px solid #d7d7d7; 268 display:inline; 269 padding:0 .75em; 270 white-space:nowrap; 271 } 272 273 .nav li.last { 274 border-right:none; 275 } 145 276 146 277 /* Main navigation bar */ 147 278 #mainnav { 148 background: #f7f7f7 url(../topbar_gradient.png) 0 0; 149 border: 1px solid #000; 150 font: normal 10px verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif; 151 margin: .66em 0 .33em; 152 padding: .2em 0; 153 } 154 #mainnav li { border-right: none; padding: .25em 0 } 155 #mainnav :link, #mainnav :visited { 156 background: url(../dots.gif) 0 0 no-repeat; 157 border-right: 1px solid #fff; 158 border-bottom: none; 159 border-left: 1px solid #555; 160 color: #000; 161 padding: .2em 20px; 162 } 163 * html #mainnav :link, * html #mainnav :visited { background-position: 1px 0 } 164 #mainnav :link:hover, #mainnav :visited:hover { 165 background-color: #ccc; 166 border-right: 1px solid #ddd; 167 } 168 #mainnav .active :link, #mainnav .active :visited { 169 background: #333 url(../topbar_gradient2.png) 0 0 repeat-x; 170 border-top: none; 171 border-right: 1px solid #000; 172 color: #eee; 173 font-weight: bold; 174 } 175 #mainnav .active :link:hover, #mainnav .active :visited:hover { 176 border-right: 1px solid #000; 279 background:#f7f7f7 url(../topbar_gradient.png) 0 0; 280 border:1px solid #000; 281 font:normal 10px verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif; 282 margin:.66em 0 .33em; 283 padding:.2em 0; 284 } 285 286 #mainnav li { 287 border-right:none; 288 padding:.25em 0; 289 } 290 291 #mainnav :link,#mainnav :visited { 292 background:url(../dots.gif) 0 0 no-repeat; 293 border-right:1px solid #fff; 294 border-bottom:none; 295 border-left:1px solid #555; 296 color:#000; 297 padding:.2em 20px; 298 } 299 300 * html #mainnav :link,* html #mainnav :visited { 301 background-position:1px 0; 302 } 303 304 #mainnav :link:hover,#mainnav :visited:hover { 305 background-color:#ccc; 306 border-right:1px solid #ddd; 307 } 308 309 #mainnav .active :link,#mainnav .active :visited { 310 background:#333 url(../topbar_gradient2.png) 0 0 repeat-x; 311 border-top:none; 312 border-right:1px solid #000; 313 color:#eee; 314 font-weight:bold; 315 } 316 317 #mainnav .active :link:hover,#mainnav .active :visited:hover { 318 border-right:1px solid #000; 177 319 } 178 320 179 321 /* Context-dependent navigation links */ 180 #ctxtnav { height: 1em } 322 #ctxtnav { 323 height:1em; 324 } 325 181 326 #ctxtnav li ul { 182 background: #f7f7f7; 183 color: #ccc; 184 border: 1px solid; 185 padding: 0; 186 display: inline; 187 margin: 0; 188 } 189 #ctxtnav li li { padding: 0; } 190 #ctxtnav li li :link, #ctxtnav li li :visited { padding: 0 1em } 191 #ctxtnav li li :link:hover, #ctxtnav li li :visited:hover { 192 background: #bba; 193 color: #fff; 327 background:#f7f7f7; 328 color:#ccc; 329 border:1px solid; 330 padding:0; 331 display:inline; 332 margin:0; 333 } 334 335 #ctxtnav li li { 336 padding:0; 337 } 338 339 #ctxtnav li li :link,#ctxtnav li li :visited { 340 padding:0 1em; 341 } 342 343 #ctxtnav li li :link:hover,#ctxtnav li li :visited:hover { 344 background:#bba; 345 color:#fff; 194 346 } 195 347 196 348 /* Alternate links */ 197 #altlinks { clear: both; text-align: center } 198 #altlinks h3 { font-size: 12px; letter-spacing: normal; margin: 0 } 199 #altlinks ul { list-style: none; margin: 0; padding: 0 0 1em } 349 #altlinks { 350 clear:both; 351 text-align:center; 352 } 353 354 #altlinks h3 { 355 font-size:12px; 356 letter-spacing:normal; 357 margin:0; 358 } 359 360 #altlinks ul { 361 list-style:none; 362 margin:0; 363 padding:0 0 1em; 364 } 365 200 366 #altlinks li { 201 border-right: 1px solid #d7d7d7; 202 display: inline; 203 font-size: 11px; 204 line-height: 1.5; 205 padding: 0 1em; 206 white-space: nowrap; 207 } 208 #altlinks li.last { border-right: none } 209 #altlinks li :link, #altlinks li :visited { 210 background-repeat: no-repeat; 211 color: #666; 212 border: none; 213 padding: 0 0 2px; 214 } 215 #altlinks li a.ics { background-image: url(../ics.png); padding-left: 22px } 216 #altlinks li a.rss { background-image: url(../feed.png); padding-left: 20px } 367 border-right:1px solid #d7d7d7; 368 display:inline; 369 font-size:11px; 370 line-height:1.5; 371 padding:0 1em; 372 white-space:nowrap; 373 } 374 375 #altlinks li.last { 376 border-right:none; 377 } 378 379 #altlinks li :link,#altlinks li :visited { 380 background-repeat:no-repeat; 381 color:#666; 382 border:none; 383 padding:0 0 2px; 384 } 385 386 #altlinks li a.ics { 387 background-image:url(../ics.png); 388 padding-left:22px; 389 } 390 391 #altlinks li a.rss { 392 background-image:url(../feed.png); 393 padding-left:20px; 394 } 217 395 218 396 /* Footer */ 219 397 #footer { 220 clear: both; 221 color: #bbb; 222 font-size: 10px; 223 border-top: 1px solid; 224 height: 31px; 225 padding: .25em 0; 226 } 227 #footer :link, #footer :visited { color: #bbb; } 228 #footer hr { display: none } 229 #footer #tracpowered { border: 0; float: left } 230 #footer #tracpowered:hover { background: transparent } 231 #footer p { margin: 0 } 398 clear:both; 399 color:#bbb; 400 font-size:10px; 401 border-top:1px solid; 402 height:31px; 403 padding:.25em 0; 404 } 405 406 #footer :link,#footer :visited { 407 color:#bbb; 408 } 409 410 #footer hr { 411 display:none; 412 } 413 414 #footer #tracpowered { 415 border:0; 416 float:left; 417 } 418 419 #footer #tracpowered:hover { 420 background:transparent; 421 } 422 423 #footer p { 424 margin:0; 425 } 426 232 427 #footer p.left { 233 float: left; 234 margin-left: 1em; 235 padding: 0 1em; 236 border-left: 1px solid #d7d7d7; 237 border-right: 1px solid #d7d7d7; 238 } 428 float:left; 429 margin-left:1em; 430 padding:0 1em; 431 border-left:1px solid #d7d7d7; 432 border-right:1px solid #d7d7d7; 433 } 434 239 435 #footer p.right { 240 float: right; 241 text-align: right; 242 } 243 244 #content { padding-bottom: 2em; position: relative } 436 float:right; 437 text-align:right; 438 } 439 440 #content { 441 padding-bottom:2em; 442 position:relative; 443 } 245 444 246 445 #help { 247 clear: both; 248 color: #999; 249 margin: 1em; 250 text-align: right; 251 } 252 #help :link, #help :visited { cursor: help } 253 #help hr { display: none } 446 clear:both; 447 color:#999; 448 margin:1em; 449 text-align:right; 450 } 451 452 #help :link,#help :visited { 453 cursor:help; 454 } 455 456 #help hr { 457 display:none; 458 } 254 459 255 460 /* Page preferences form */ 256 461 #prefs { 257 background: #f7f7f0; 258 border: 1px outset #998; 259 float: right; 260 font-size: 9px; 261 padding: .8em; 262 position: relative; 263 margin: 0 1em 1em; 264 } 265 * html #prefs { width: 26em } /* Set width only for IE */ 266 #prefs input, #prefs select { font-size: 9px; vertical-align: middle } 462 background:#f7f7f0; 463 border:1px outset #998; 464 float:right; 465 font-size:9px; 466 padding:.8em; 467 position:relative; 468 margin:0 1em 1em; 469 } 470 471 * html #prefs { 472 width:26em; 473 } 474 475 /* Set width only for IE */ 476 #prefs input,#prefs select { 477 font-size:9px; 478 vertical-align:middle; 479 } 480 267 481 #prefs fieldset { 268 background: transparent; 269 border: none; 270 margin: .5em; 271 padding: 0; 272 } 482 background:transparent; 483 border:none; 484 margin:.5em; 485 padding:0; 486 } 487 273 488 #prefs fieldset legend { 274 background: transparent; 275 color: #000; 276 font-size: 9px; 277 font-weight: normal; 278 margin: 0 0 0 -1.5em; 279 padding: 0; 280 } 281 #prefs .buttons { text-align: right } 489 background:transparent; 490 color:#000; 491 font-size:9px; 492 font-weight:normal; 493 margin:0 0 0 -1.5em; 494 padding:0; 495 } 496 497 #prefs .buttons { 498 text-align:right; 499 } 282 500 283 501 /* Version information (browser, wiki, attachments) */ 284 502 #info { 285 margin: 1em 0 0 0; 286 background: #f7f7f0; 287 border: 1px solid #d7d7d7; 288 border-collapse: collapse; 289 border-spacing: 0; 290 clear: both; 291 width: 100%; 292 } 293 #info th, #info td { padding: 2px .5em; vertical-align: top } 294 #info th { font-weight: bold; text-align: left; white-space: nowrap } 295 #info td.message { width: 100% } 296 #info .message ul { padding: 0; margin: 0 2em } 297 #info .message p { margin: 0; padding: 0 } 503 margin:1em 0 0; 504 background:#f7f7f0; 505 border:1px solid #d7d7d7; 506 border-collapse:collapse; 507 border-spacing:0; 508 clear:both; 509 width:100%; 510 } 511 512 #info th,#info td { 513 padding:2px .5em; 514 vertical-align:top; 515 } 516 517 #info th { 518 font-weight:bold; 519 text-align:left; 520 white-space:nowrap; 521 } 522 523 #info td.message { 524 width:100%; 525 } 526 527 #info .message ul { 528 padding:0; 529 margin:0 2em; 530 } 531 532 #info .message p { 533 margin:0; 534 padding:0; 535 } 298 536 299 537 /* Wiki */ 300 .wikipage { padding-left: 18px } 301 .wikipage h1, .wikipage h2, .wikipage h3 { margin-left: -18px } 302 303 a.missing:link, a.missing:visited, span.missing { color: #998 } 304 a.missing:link, a.missing:visited { background: #fafaf0 } 305 a.missing:hover { color: #000 } 306 a.closed:link, a.closed:visited { text-decoration: line-through } 307 span.closed { text-decoration: line-through } 308 span.forbidden, a.forbidden { background: #fafaf0; color: #998; } 538 .wikipage { 539 padding-left:18px; 540 } 541 542 .wikipage h1,.wikipage h2,.wikipage h3 { 543 margin-left:-18px; 544 } 545 546 a.missing:link,a.missing:visited,span.missing { 547 color:#998; 548 } 549 550 a.missing:link,a.missing:visited { 551 background:#fafaf0; 552 } 553 554 a.missing:hover { 555 color:#000; 556 } 557 558 a.closed:link,a.closed:visited { 559 text-decoration:line-through; 560 } 561 562 span.closed { 563 text-decoration:line-through; 564 } 565 566 span.forbidden,a.forbidden { 567 background:#fafaf0; 568 color:#998; 569 } 309 570 310 571 /* User-selectable styles for blocks */ 311 572 .important { 312 background: #fcb; 313 border: 1px dotted #d00; 314 color: #500; 315 padding: 0 .5em 0 .5em; 316 margin: .5em; 317 } 318 319 dl.wiki dt { font-weight: bold } 320 dl.compact dt { float: left; padding-right: .5em } 321 dl.compact dd { margin: 0; padding: 0 } 322 323 pre.wiki, pre.literal-block { 324 background: #f7f7f7; 325 border: 1px solid #d7d7d7; 326 margin: 1em 1.75em; 327 padding: .25em; 328 overflow: auto; 329 } 330 331 blockquote.citation { 332 margin: -0.6em 0; 333 border-style: solid; 334 border-width: 0 0 0 2px; 335 padding-left: .5em; 336 border-color: #b44; 337 } 338 .citation blockquote.citation { border-color: #4b4; } 339 .citation .citation blockquote.citation { border-color: #44b; } 340 .citation .citation .citation blockquote.citation { border-color: #c55; } 573 background:#fcb; 574 border:1px dotted #d00; 575 color:#500; 576 padding:0 .5em; 577 margin:.5em; 578 } 579 580 dl.wiki dt { 581 font-weight:bold; 582 } 583 584 dl.compact dt { 585 float:left; 586 padding-right:.5em; 587 } 588 589 dl.compact dd { 590 margin:0; 591 padding:0; 592 } 593 594 pre.wiki,pre.literal-block { 595 background:#f7f7f7; 596 border:1px solid #d7d7d7; 597 margin:1em 1.75em; 598 padding:.25em; 599 overflow:auto; 600 } 601 602 blockquote.citation { 603 margin:-.6em 0; 604 border-style:solid; 605 border-width:0 0 0 2px; 606 padding-left:.5em; 607 border-color:#b44; 608 } 609 610 .citation blockquote.citation { 611 border-color:#4b4; 612 } 613 614 .citation .citation blockquote.citation { 615 border-color:#44b; 616 } 617 618 .citation .citation .citation blockquote.citation { 619 border-color:#c55; 620 } 341 621 342 622 table.wiki { 343 border: 2px solid #ccc; 344 border-collapse: collapse; 345 border-spacing: 0; 346 } 347 table.wiki td { border: 1px solid #ccc; padding: .1em .25em; } 623 border:2px solid #ccc; 624 border-collapse:collapse; 625 border-spacing:0; 626 } 627 628 table.wiki td { 629 border:1px solid #ccc; 630 padding:.1em .25em; 631 } 348 632 349 633 .wikitoolbar { 350 border: solid #d7d7d7; 351 border-width: 1px 1px 1px 0; 352 height: 18px; 353 width: 234px; 354 } 355 .wikitoolbar :link, .wikitoolbar :visited { 356 background: transparent url(../edit_toolbar.png) no-repeat; 357 border: 1px solid #fff; 358 border-left-color: #d7d7d7; 359 cursor: default; 360 display: block; 361 float: left; 362 width: 24px; 363 height: 16px; 364 } 365 .wikitoolbar :link:hover, .wikitoolbar :visited:hover { 366 background-color: transparent; 367 border: 1px solid #fb2; 368 } 369 .wikitoolbar a#em { background-position: 0 0 } 370 .wikitoolbar a#strong { background-position: 0 -16px } 371 .wikitoolbar a#heading { background-position: 0 -32px } 372 .wikitoolbar a#link { background-position: 0 -48px } 373 .wikitoolbar a#code { background-position: 0 -64px } 374 .wikitoolbar a#hr { background-position: 0 -80px } 375 .wikitoolbar a#np { background-position: 0 -96px } 376 .wikitoolbar a#br { background-position: 0 -112px } 377 .wikitoolbar a#img { background-position: 0 -128px } 634 border:solid #d7d7d7; 635 border-width:1px 1px 1px 0; 636 height:18px; 637 width:234px; 638 } 639 640 .wikitoolbar :link,.wikitoolbar :visited { 641 background:transparent url(../edit_toolbar.png) no-repeat; 642 border:1px solid #fff; 643 border-left-color:#d7d7d7; 644 cursor:default; 645 display:block; 646 float:left; 647 width:24px; 648 height:16px; 649 } 650 651 .wikitoolbar :link:hover,.wikitoolbar :visited:hover { 652 background-color:transparent; 653 border:1px solid #fb2; 654 } 655 656 .wikitoolbar a#em { 657 background-position:0 0; 658 } 659 660 .wikitoolbar a#strong { 661 background-position:0 -16px; 662 } 663 664 .wikitoolbar a#heading { 665 background-position:0 -32px; 666 } 667 668 .wikitoolbar a#link { 669 background-position:0 -48px; 670 } 671 672 .wikitoolbar a#code { 673 background-position:0 -64px; 674 } 675 676 .wikitoolbar a#hr { 677 background-position:0 -80px; 678 } 679 680 .wikitoolbar a#np { 681 background-position:0 -96px; 682 } 683 684 .wikitoolbar a#br { 685 background-position:0 -112px; 686 } 687 688 .wikitoolbar a#img { 689 background-position:0 -128px; 690 } 378 691 379 692 /* Styles for the form for adding attachments. */ 380 #attachment .field { margin-top: 1.3em } 381 #attachment label { padding-left: .2em } 382 #attachment fieldset { margin-top: 2em } 383 #attachment fieldset .field { float: left; margin: 0 1em .5em 0 } 384 #attachment .options { float: left; padding: 0 0 1em 1em } 385 #attachment br { clear: left } 386 .attachment #preview { margin-top: 1em } 693 #attachment .field { 694 margin-top:1.3em; 695 } 696 697 #attachment label { 698 padding-left:.2em; 699 } 700 701 #attachment fieldset { 702 margin-top:2em; 703 } 704 705 #attachment fieldset .field { 706 float:left; 707 margin:0 1em .5em 0; 708 } 709 710 #attachment .options { 711 float:left; 712 padding:0 0 1em 1em; 713 } 714 715 #attachment br { 716 clear:left; 717 } 718 719 .attachment #preview { 720 margin-top:1em; 721 } 387 722 388 723 /* Styles for the list of attachments. */ 389 #attachments { border: 1px outset #996; padding: 1em } 390 #attachments .attachments { margin-left: 2em; padding: 0 } 391 #attachments dt { display: list-item; list-style: square; } 392 #attachments dd { font-style: italic; margin-left: 0; padding-left: 0; } 724 #attachments { 725 border:1px outset #996; 726 padding:1em; 727 } 728 729 #attachments .attachments { 730 margin-left:2em; 731 padding:0; 732 } 733 734 #attachments dt { 735 display:list-item; 736 list-style:square; 737 } 738 739 #attachments dd { 740 font-style:italic; 741 margin-left:0; 742 padding-left:0; 743 } 393 744 394 745 /* Styles for tabular listings such as those used for displaying directory 395 746 contents and report results. */ 396 747 table.listing { 397 clear: both; 398 border-bottom: 1px solid #d7d7d7; 399 border-collapse: collapse; 400 border-spacing: 0; 401 margin-top: 1em; 402 width: 100%; 403 } 404 table.listing th { text-align: left; padding: 0 1em .1em 0; font-size: 12px } 405 table.listing thead { background: #f7f7f0 } 748 clear:both; 749 border-bottom:1px solid #d7d7d7; 750 border-collapse:collapse; 751 border-spacing:0; 752 margin-top:1em; 753 width:100%; 754 } 755 756 table.listing th { 757 text-align:left; 758 padding:0 1em .1em 0; 759 font-size:12px; 760 } 761 762 table.listing thead { 763 background:#f7f7f0; 764 } 765 406 766 table.listing thead th { 407 border: 1px solid #d7d7d7; 408 border-bottom-color: #999; 409 font-size: 11px; 410 font-weight: bold; 411 padding: 2px .5em; 412 vertical-align: bottom; 413 } 414 table.listing thead th :link:hover, table.listing thead th :visited:hover { 415 background-color: transparent; 416 } 417 table.listing thead th a { border: none; padding-right: 12px } 418 table.listing th.asc a, table.listing th.desc a { font-weight: bold } 419 table.listing th.asc a, table.listing th.desc a { 420 background-position: 100% 50%; 421 background-repeat: no-repeat; 422 } 423 table.listing th.asc a { background-image: url(../asc.png) } 424 table.listing th.desc a { background-image: url(../desc.png) } 425 table.listing tbody td, table.listing tbody th { 426 border: 1px dotted #ddd; 427 padding: .3em .5em; 428 vertical-align: top; 429 } 430 table.listing tbody td a:hover, table.listing tbody th a:hover { 431 background-color: transparent; 432 } 433 table.listing tbody tr { border-top: 1px solid #ddd } 434 table.listing tbody tr.even { background-color: #fcfcfc } 435 table.listing tbody tr.odd { background-color: #f7f7f7 } 436 table.listing tbody tr:hover { background: #eed !important } 437 table.listing tbody tr.focus { background: #ddf !important } 767 border:1px solid #d7d7d7; 768 border-bottom-color:#999; 769 font-size:11px; 770 font-weight:bold; 771 padding:2px .5em; 772 vertical-align:bottom; 773 } 774 775 table.listing thead th :link:hover,table.listing thead th :visited:hover { 776 background-color:transparent; 777 } 778 779 table.listing thead th a { 780 border:none; 781 padding-right:12px; 782 } 783 784 table.listing th.asc a,table.listing th.desc a { 785 font-weight:bold; 786 } 787 788 table.listing th.asc a,table.listing th.desc a { 789 background-position:100% 50%; 790 background-repeat:no-repeat; 791 } 792 793 table.listing th.asc a { 794 background-image:url(../asc.png); 795 } 796 797 table.listing th.desc a { 798 background-image:url(../desc.png); 799 } 800 801 table.listing tbody td,table.listing tbody th { 802 border:1px dotted #ddd; 803 padding:.3em .5em; 804 vertical-align:top; 805 } 806 807 table.listing tbody td a:hover,table.listing tbody th a:hover { 808 background-color:transparent; 809 } 810 811 table.listing tbody tr { 812 border-top:1px solid #ddd; 813 } 814 815 table.listing tbody tr.even { 816 background-color:#fcfcfc; 817 } 818 819 table.listing tbody tr.odd { 820 background-color:#f7f7f7; 821 } 822 823 table.listing tbody tr:hover { 824 background:#eed!important; 825 } 826 827 table.listing tbody tr.focus { 828 background:#ddf!important; 829 } 438 830 439 831 /* Styles for the page history table 440 832 (extends the styles for "table.listing") */ 441 #fieldhist td { padding: 0 .5em } 442 #fieldhist td.date, #fieldhist td.diff, #fieldhist td.version, 443 #fieldhist td.author { 444 white-space: nowrap; 445 } 446 #fieldhist td.version { text-align: center } 447 #fieldhist td.comment { width: 100% } 833 #fieldhist td { 834 padding:0 .5em; 835 } 836 837 #fieldhist td.date,#fieldhist td.diff,#fieldhist td.version,#fieldhist td.author { 838 white-space:nowrap; 839 } 840 841 #fieldhist td.version { 842 text-align:center; 843 } 844 845 #fieldhist td.comment { 846 width:100%; 847 } 448 848 449 849 /* Auto-completion interface */ 450 .suggestions { background: #fff; border: 1px solid #886; color: #222; } 850 .suggestions { 851 background:#fff; 852 border:1px solid #886; 853 color:#222; 854 } 855 451 856 .suggestions ul { 452 font-family: sans-serif; 453 max-height: 20em; 454 min-height: 3em; 455 list-style: none; 456 margin: 0; 457 overflow: auto; 458 padding: 0; 459 width: 440px; 460 } 461 * html .suggestions ul { height: 10em; } 462 .suggestions li { background: #fff; cursor: pointer; padding: 2px 5px } 463 .suggestions li.selected { background: #b9b9b9 } 857 font-family:sans-serif; 858 max-height:20em; 859 min-height:3em; 860 list-style:none; 861 margin:0; 862 overflow:auto; 863 padding:0; 864 width:440px; 865 } 866 867 * html .suggestions ul { 868 height:10em; 869 } 870 871 .suggestions li { 872 background:#fff; 873 cursor:pointer; 874 padding:2px 5px; 875 } 876 877 .suggestions li.selected { 878 background:#b9b9b9; 879 } 464 880 465 881 /* Styles for the error page (and rst errors) */ 466 #content.error .message, div.system-message { 467 background: #fdc; 468 border: 2px solid #d00; 469 color: #500; 470 padding: .5em; 471 margin: 1em 0; 472 } 473 #content.error div.message pre, div.system-message pre { 474 margin-left: 1em; 475 overflow: hidden; 476 white-space: normal; 477 } 478 div.system-message p { margin: 0; } 479 div.system-message p.system-message-title { font-weight: bold; } 480 481 #warning.system-message { background: #ffa; border: 2px solid #886; } 482 #warning.system-message li { list-style-type: square; } 483 484 #notice.system-message { background: #bfb; border: 2px solid #484; } 485 #notice.system-message li { list-style-type: square; } 486 487 #content.error form.newticket { display: inline; } 488 #content.error form.newticket textarea { display: none; } 489 490 #content.error #systeminfo { margin: 1em; width: auto; } 491 #content.error #systeminfo th { font-weight: bold; text-align: right; } 492 493 #content.error #traceback { margin-left: 1em; } 494 #content.error #traceback :link, #content.error #traceback :visited { 495 border: none; 496 } 497 #content.error #traceback div { margin-left: 1em; } 498 #content.error #traceback h3 { margin: .5em 0 0; } 499 #content.error #traceback :link var, #content.error #traceback :visited var { 500 font-family: monospace; 501 font-style: normal; 502 font-weight: bold; 503 } 504 #content.error #traceback span.file { color: #666;} 505 #content.error #traceback ul { list-style: none; margin: .5em 0; padding: 0; } 882 #content.error .message,div.system-message { 883 background:#fdc; 884 border:2px solid #d00; 885 color:#500; 886 padding:.5em; 887 margin:1em 0; 888 } 889 890 #content.error div.message pre,div.system-message pre { 891 margin-left:1em; 892 overflow:hidden; 893 white-space:normal; 894 } 895 896 div.system-message p { 897 margin:0; 898 } 899 900 div.system-message p.system-message-title { 901 font-weight:bold; 902 } 903 904 #warning.system-message { 905 background:#ffa; 906 border:2px solid #886; 907 } 908 909 #warning.system-message li { 910 list-style-type:square; 911 } 912 913 #notice.system-message { 914 background:#bfb; 915 border:2px solid #484; 916 } 917 918 #notice.system-message li { 919 list-style-type:square; 920 } 921 922 #content.error form.newticket { 923 display:inline; 924 } 925 926 #content.error form.newticket textarea { 927 display:none; 928 } 929 930 #content.error #systeminfo { 931 margin:1em; 932 width:auto; 933 } 934 935 #content.error #systeminfo th { 936 font-weight:bold; 937 text-align:right; 938 } 939 940 #content.error #traceback { 941 margin-left:1em; 942 } 943 944 #content.error #traceback :link,#content.error #traceback :visited { 945 border:none; 946 } 947 948 #content.error #traceback div { 949 margin-left:1em; 950 } 951 952 #content.error #traceback h3 { 953 margin:.5em 0 0; 954 } 955 956 #content.error #traceback :link var,#content.error #traceback :visited var { 957 font-family:monospace; 958 font-style:normal; 959 font-weight:bold; 960 } 961 962 #content.error #traceback span.file { 963 color:#666; 964 } 965 966 #content.error #traceback ul { 967 list-style:none; 968 margin:.5em 0; 969 padding:0; 970 } 971 506 972 #content.error #traceback ol { 507 border: 1px dotted #d7d7d7; 508 color: #999; 509 line-height: 1; 510 margin: .5em 0; 511 } 512 #content.error #traceback ol li { white-space: pre; } 513 #content.error #traceback ol li.current { background: #e6e6e6; color: #333; } 514 #content.error #traceback ol li code { color: #666; } 515 #content.error #traceback ol li.current code { color: #000; } 516 #content.error #traceback table { margin: .5em 0 1em; } 517 #content.error #traceback th, #content.error #traceback td { 518 padding: 1px; 519 } 973 border:1px dotted #d7d7d7; 974 color:#999; 975 line-height:1; 976 margin:.5em 0; 977 } 978 979 #content.error #traceback ol li { 980 white-space:pre; 981 } 982 983 #content.error #traceback ol li.current { 984 background:#e6e6e6; 985 color:#333; 986 } 987 988 #content.error #traceback ol li code { 989 color:#666; 990 } 991 992 #content.error #traceback ol li.current code { 993 color:#000; 994 } 995 996 #content.error #traceback table { 997 margin:.5em 0 1em; 998 } 999 1000 #content.error #traceback th,#content.error #traceback td { 1001 padding:1px; 1002 } 1003 520 1004 #content.error #traceback th var { 521 font-family: monospace; 522 font-style: normal; 523 } 524 #content.error #traceback td code { white-space: pre; } 525 526 #content .paging { margin: 0 0 2em; padding: .5em 0 0; 527 line-height: 2em; text-align: center; 528 } 529 #content .paging .current { 530 padding: .1em .3em; 531 border: 1px solid #333; 532 background: #999; color: #fff; 533 } 534 535 #content .paging :link, #content .paging :visited { 536 padding: .1em .3em; 537 border: 1px solid #666; 538 background: transparent; color: #666; 539 } 540 #content .paging :link:hover, #content .paging :visited:hover { 541 background: #999; color: #fff; border-color: #333; 542 } 543 #content .paging .previous a, 544 #content .paging .next a { 545 font-weight: bold; border: none; 546 } 547 #content .paging .previous a:hover, 548 #content .paging .next a:hover { 549 background: transparent; color: #666; 550 } 551 552 #content h2 .numresults { color: #666; } 1005 font-family:monospace; 1006 font-style:normal; 1007 } 1008 1009 #content.error #traceback td code { 1010 white-space:pre; 1011 } 1012 1013 #content .paging { 1014 margin:0 0 2em; 1015 padding:.5em 0 0; 1016 line-height:2em; 1017 text-align:center; 1018 } 1019 1020 #content .paging .current { 1021 padding:.1em .3em; 1022 border:1px solid #333; 1023 background:#999; 1024 color:#fff; 1025 } 1026 1027 #content .paging :link,#content .paging :visited { 1028 padding:.1em .3em; 1029 border:1px solid #666; 1030 background:transparent; 1031 color:#666; 1032 } 1033 1034 #content .paging :link:hover,#content .paging :visited:hover { 1035 background:#999; 1036 color:#fff; 1037 border-color:#333; 1038 } 1039 1040 #content .paging .previous a,#content .paging .next a { 1041 font-weight:bold; 1042 border:none; 1043 } 1044 1045 #content .paging .previous a:hover,#content .paging .next a:hover { 1046 background:transparent; 1047 color:#666; 1048 } 1049 1050 #content h2 .numresults { 1051 color:#666; 1052 } 553 1053 554 1054 /* Styles for search word highlighting */ 555 1055 @media screen { 556 .searchword0 { background: #ff9 } 557 .searchword1 { background: #cfc } 558 .searchword2 { background: #cff } 559 .searchword3 { background: #ccf } 560 .searchword4 { background: #fcf } 1056 .searchword0 { 1057 background:#ff9; 1058 } 1059 1060 .searchword1 { 1061 background:#cfc; 1062 } 1063 1064 .searchword2 { 1065 background:#cff; 1066 } 1067 1068 .searchword3 { 1069 background:#ccf; 1070 } 1071 1072 .searchword4 { 1073 background:#fcf; 1074 } 561 1075 } 562 1076 563 1077 @media print { 564 #header, #altlinks, #footer, #help { display: none } 565 .nav, form, .buttons form, form .buttons, form .inlinebuttons { 566 display: none; 567 } 568 form.printableform { display: block } 569 } 1078 #header,#altlinks,#footer,#help { 1079 display:none; 1080 } 1081 1082 .nav,form,.buttons form,form .buttons,form .inlinebuttons { 1083 display:none; 1084 } 1085 1086 form.printableform { 1087 display:block; 1088 } -
web/branches/test/trac/htdocs/common/css/wiki.css
r3034 r3047 2 2 3 3 /* Styles for the page editing form */ 4 #edit #rows { float: right;} 5 #edit #rows select { } 6 #edit #text { clear: both; width: 100% } 7 #edit .wikitoolbar { float: left; } 8 #changeinfo { padding: .5em } 9 #changeinfo .field { float: left; margin: 0 1em .5em 0 } 10 #changeinfo br { clear: left } 11 #changeinfo .options { padding: 0 0 1em 1em } 12 #changeinfo .options, #changeinfo .buttons { clear: left } 13 #delete, #save { margin-left: 6em } 4 #edit #rows { 5 float:right; 6 } 7 8 #edit #rows select { 9 } 10 11 #edit #text { 12 clear:both; 13 width:100%; 14 } 15 16 #edit .wikitoolbar { 17 float:left; 18 } 19 20 #changeinfo { 21 padding:.5em; 22 } 23 24 #changeinfo .field { 25 float:left; 26 margin:0 1em .5em 0; 27 } 28 29 #changeinfo br { 30 clear:left; 31 } 32 33 #changeinfo .options { 34 padding:0 0 1em 1em; 35 } 36 37 #changeinfo .options,#changeinfo .buttons { 38 clear:left; 39 } 40 41 #delete,#save { 42 margin-left:6em; 43 } 44 14 45 #preview { 15 background:#f4f4f4 url(../draft.png);16 margin:1em 0 2em;17 overflow:auto;46 background:#f4f4f4 url(../draft.png); 47 margin:1em 0 2em; 48 overflow:auto; 18 49 } 19 #template { vertical-align: middle; padding-top: 1em; } 50 51 #template { 52 vertical-align:middle; 53 padding-top:1em; 54 } 20 55 21 56 /* Diff view */ 22 #overview .multi { color: #999 }23 #overview .ipnr { color: #999; font-size: 80% } 24 #overview .comment { padding: 1em 0 0}57 #overview .multi { 58 color:#999; 59 } 25 60 26 @media print { 27 th.diff, td.diff { display: none } 61 #overview .ipnr { 62 color:#999; 63 font-size:80%; 64 } 65 66 #overview .comment { 67 padding:1em 0 0; 68 } 69 70 @media print { 71 th.diff,td.diff { 72 display:none; 73 } 28 74 } 29 75 30 76 /* Styles for the TracGuideToc wikimacro */ 31 77 .wiki-toc { 32 padding:.5em 1em;33 margin:0 0 2em 1em;34 float:right;35 border:1px outset #ddc;36 background:#ffd;37 font-size:85%;38 position:relative;78 padding:.5em 1em; 79 margin:0 0 2em 1em; 80 float:right; 81 border:1px outset #ddc; 82 background:#ffd; 83 font-size:85%; 84 position:relative; 39 85 } 40 .wiki-toc h4 { font-size: 12px; margin: 0 } 41 .wiki-toc ul, .wiki-toc ol { list-style: none; padding: 0; margin: 0 } 42 .wiki-toc ul ul, .wiki-toc ol ol { padding-left: 1.2em } 43 .wiki-toc li { margin: 0; padding: 0 } 44 .wiki-toc .active { background: #ff9; position: relative; } 86 87 .wiki-toc h4 { 88 font-size:12px; 89 margin:0; 90 } 91 92 .wiki-toc ul,.wiki-toc ol { 93 list-style:none; 94 padding:0; 95 margin:0; 96 } 97 98 .wiki-toc ul ul,.wiki-toc ol ol { 99 padding-left:1.2em; 100 } 101 102 .wiki-toc li { 103 margin:0; 104 padding:0; 105 } 106 107 .wiki-toc .active { 108 background:#ff9; 109 position:relative; 110 } -
web/branches/test/trac/htdocs/main.css
r3043 r3047 147 147 color: #224422; 148 148 } 149 #metanav ul { text-align: right; }149 #metanav ul { text-align: right; } 150 150 #ctxtnav ul { text-align: right; }
Note: See TracChangeset
for help on using the changeset viewer.