To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / public / stylesheets / scm.css @ 965:4018f255c97b
History | View | Annotate | Download (6.64 KB)
| 1 |
|
|---|---|
| 2 |
table.revision-info td { |
| 3 |
margin: 0px; |
| 4 |
padding: 0px; |
| 5 |
} |
| 6 |
|
| 7 |
div.changeset-changes ul { margin: 0; padding: 0; } |
| 8 |
div.changeset-changes ul > ul { margin-left: 18px; padding: 0; } |
| 9 |
|
| 10 |
li.change { |
| 11 |
list-style-type:none; |
| 12 |
background-image: url(../images/bullet_black.png); |
| 13 |
background-position: 1px 1px; |
| 14 |
background-repeat: no-repeat; |
| 15 |
padding-top: 1px; |
| 16 |
padding-bottom: 1px; |
| 17 |
padding-left: 20px; |
| 18 |
margin: 0; |
| 19 |
} |
| 20 |
li.change.folder { background-image: url(../images/folder_open.png); } |
| 21 |
li.change.folder.change-A { background-image: url(../images/folder_open_add.png); } |
| 22 |
li.change.folder.change-M { background-image: url(../images/folder_open_orange.png); } |
| 23 |
li.change.change-A { background-image: url(../images/bullet_add.png); } |
| 24 |
li.change.change-M { background-image: url(../images/bullet_orange.png); } |
| 25 |
li.change.change-C { background-image: url(../images/bullet_blue.png); } |
| 26 |
li.change.change-R { background-image: url(../images/bullet_purple.png); } |
| 27 |
li.change.change-D { background-image: url(../images/bullet_delete.png); } |
| 28 |
|
| 29 |
li.change .copied-from { font-style: italic; color: #999; font-size: 0.9em; } |
| 30 |
li.change .copied-from:before { content: " - "} |
| 31 |
|
| 32 |
#changes-legend { float: right; font-size: 0.8em; margin: 0; } |
| 33 |
#changes-legend li { float: left; background-position: 5px 0; } |
| 34 |
|
| 35 |
table.filecontent { border: 1px solid #ccc; border-collapse: collapse; width:98%; background-color: #fafafa; } |
| 36 |
table.filecontent th { border: 1px solid #ccc; background-color: #eee; } |
| 37 |
table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding: 0.2em;} |
| 38 |
table.filecontent tr.spacing th { text-align:center; } |
| 39 |
table.filecontent tr.spacing td { height: 0.4em; background: #EAF2F5;} |
| 40 |
table.filecontent th.line-num { |
| 41 |
border: 1px solid #d7d7d7; |
| 42 |
font-size: 0.8em; |
| 43 |
text-align: right; |
| 44 |
width: 2%; |
| 45 |
padding-right: 3px; |
| 46 |
color: #999; |
| 47 |
} |
| 48 |
table.filecontent th.line-num a { |
| 49 |
text-decoration: none; |
| 50 |
color: inherit; |
| 51 |
} |
| 52 |
table.filecontent td.line-code pre { |
| 53 |
margin: 0px; |
| 54 |
white-space: pre-wrap; |
| 55 |
} |
| 56 |
|
| 57 |
/* 12 different colors for the annonate view */
|
| 58 |
table.annotate tr.bloc-0 {background: #FFFFBF;} |
| 59 |
table.annotate tr.bloc-1 {background: #EABFFF;} |
| 60 |
table.annotate tr.bloc-2 {background: #BFFFFF;} |
| 61 |
table.annotate tr.bloc-3 {background: #FFD9BF;} |
| 62 |
table.annotate tr.bloc-4 {background: #E6FFBF;} |
| 63 |
table.annotate tr.bloc-5 {background: #BFCFFF;} |
| 64 |
table.annotate tr.bloc-6 {background: #FFBFEF;} |
| 65 |
table.annotate tr.bloc-7 {background: #FFE6BF;} |
| 66 |
table.annotate tr.bloc-8 {background: #FFE680;} |
| 67 |
table.annotate tr.bloc-9 {background: #AA80FF;} |
| 68 |
table.annotate tr.bloc-10 {background: #FFBFDC;} |
| 69 |
table.annotate tr.bloc-11 {background: #BFE4FF;} |
| 70 |
|
| 71 |
table.annotate td.revision { |
| 72 |
text-align: center; |
| 73 |
width: 2%; |
| 74 |
padding-left: 1em; |
| 75 |
background: inherit; |
| 76 |
} |
| 77 |
|
| 78 |
table.annotate td.author { |
| 79 |
text-align: center; |
| 80 |
border-right: 1px solid #d7d7d7; |
| 81 |
white-space: nowrap; |
| 82 |
padding-left: 1em; |
| 83 |
padding-right: 1em; |
| 84 |
width: 3%; |
| 85 |
background: inherit; |
| 86 |
font-size: 90%; |
| 87 |
} |
| 88 |
|
| 89 |
table.annotate td.line-code { background-color: #fafafa; } |
| 90 |
|
| 91 |
div.action_M { background: #fd8 } |
| 92 |
div.action_D { background: #f88 } |
| 93 |
div.action_A { background: #bfb } |
| 94 |
|
| 95 |
/************* CodeRay styles *************/
|
| 96 |
.syntaxhl div {display: inline;} |
| 97 |
.syntaxhl .line-numbers { padding: 2px 4px 2px 4px; background-color: #eee; margin:0px 5px 0px 0px; } |
| 98 |
.syntaxhl .code pre { overflow: auto } |
| 99 |
.syntaxhl .debug { color:white ! important; background:blue ! important; } |
| 100 |
|
| 101 |
.syntaxhl .attribute-name { color:#b48 } |
| 102 |
.syntaxhl .annotation { color:#007 } |
| 103 |
.syntaxhl .attribute-value { color:#700 } |
| 104 |
.syntaxhl .binary { color:#509 } |
| 105 |
|
| 106 |
.syntaxhl .comment { color:#777 } |
| 107 |
.syntaxhl .comment .char { color:#444 } |
| 108 |
.syntaxhl .comment .delimiter { color:#444 } |
| 109 |
|
| 110 |
.syntaxhl .char { color:#D20 } |
| 111 |
.syntaxhl .char .content { color:#D20 } |
| 112 |
.syntaxhl .char .delimiter { color:#710 } |
| 113 |
|
| 114 |
.syntaxhl .class { color:#B06; font-weight:bold } |
| 115 |
.syntaxhl .complex { color:#A08 } |
| 116 |
.syntaxhl .constant { color:#036; font-weight:bold } |
| 117 |
.syntaxhl .color { color:#0A0 } |
| 118 |
.syntaxhl .class-variable { color:#369 } |
| 119 |
.syntaxhl .decorator { color:#B0B } |
| 120 |
.syntaxhl .definition { color:#099; font-weight:bold } |
| 121 |
.syntaxhl .directive { color:#088; font-weight:bold } |
| 122 |
.syntaxhl .delimiter { color:black } |
| 123 |
.syntaxhl .doc { color:#970 } |
| 124 |
.syntaxhl .doctype { color:#34b } |
| 125 |
.syntaxhl .doc-string { color:#D42; font-weight:bold } |
| 126 |
.syntaxhl .escape { color:#666 } |
| 127 |
.syntaxhl .entity { color:#800; font-weight:bold } |
| 128 |
.syntaxhl .error { color:#F00; background-color:#FAA } |
| 129 |
.syntaxhl .exception { color:#C00; font-weight:bold } |
| 130 |
.syntaxhl .float { color:#60E } |
| 131 |
.syntaxhl .function { color:#06B; font-weight:bold } |
| 132 |
.syntaxhl .global-variable { color:#d70 } |
| 133 |
.syntaxhl .hex { color:#02b } |
| 134 |
.syntaxhl .integer { color:#00D } |
| 135 |
.syntaxhl .include { color:#B44; font-weight:bold } |
| 136 |
.syntaxhl .imaginary { color:#f00 } |
| 137 |
|
| 138 |
.syntaxhl .inline { background-color: hsla(0,0%,0%,0.07); color: black } |
| 139 |
.syntaxhl .inline-delimiter { font-weight: bold; color: #666 } |
| 140 |
|
| 141 |
.syntaxhl .instance-variable { color:#33B } |
| 142 |
.syntaxhl .label { color:#970; font-weight:bold } |
| 143 |
.syntaxhl .local-variable { color:#963 } |
| 144 |
.syntaxhl .namespace { color:#707; font-weight:bold } |
| 145 |
.syntaxhl .octal { color:#40E } |
| 146 |
.syntaxhl .operator { } |
| 147 |
.syntaxhl .predefined-constant { color:#069 } |
| 148 |
.syntaxhl .predefined { color:#369; font-weight:bold } |
| 149 |
.syntaxhl .predefined-type { color:#0a5; font-weight:bold } |
| 150 |
.syntaxhl .preprocessor { color:#579 } |
| 151 |
.syntaxhl .pseudo-class { color:#00C; font-weight:bold } |
| 152 |
.syntaxhl .reserved { color:#080; font-weight:bold } |
| 153 |
|
| 154 |
.syntaxhl .key .char { color: #60f } |
| 155 |
.syntaxhl .key .delimiter { color: #404 } |
| 156 |
.syntaxhl .key { color: #606 } |
| 157 |
.syntaxhl .keyword { color:#080; font-weight:bold } |
| 158 |
|
| 159 |
.syntaxhl .regexp { background-color:hsla(300,100%,50%,0.06); } |
| 160 |
.syntaxhl .regexp .content { color:#808 } |
| 161 |
.syntaxhl .regexp .delimiter { color:#404 } |
| 162 |
.syntaxhl .regexp .modifier { color:#C2C } |
| 163 |
|
| 164 |
.syntaxhl .string { background-color:hsla(0,100%,50%,0.05); } |
| 165 |
.syntaxhl .string .content { color: #D20 } |
| 166 |
.syntaxhl .string .char { color: #b0b } |
| 167 |
.syntaxhl .string .delimiter { color: #710 } |
| 168 |
.syntaxhl .string .modifier { color: #E40 } |
| 169 |
|
| 170 |
.syntaxhl .shell { background-color:hsla(120,100%,50%,0.06); } |
| 171 |
.syntaxhl .shell .content { color:#2B2 } |
| 172 |
.syntaxhl .shell .delimiter { color:#161 } |
| 173 |
|
| 174 |
.syntaxhl .symbol { color:#A60 } |
| 175 |
.syntaxhl .symbol .content { color:#A60 } |
| 176 |
.syntaxhl .symbol .delimiter { color:#630 } |
| 177 |
|
| 178 |
.syntaxhl .tag { color:#070 } |
| 179 |
.syntaxhl .type { color:#339; font-weight:bold } |
| 180 |
.syntaxhl .value { color: #088; } |
| 181 |
.syntaxhl .variable { color:#037 } |
| 182 |
|
| 183 |
.syntaxhl .insert { background: hsla(120,100%,50%,0.12) } |
| 184 |
.syntaxhl .delete { background: hsla(0,100%,50%,0.12) } |
| 185 |
.syntaxhl .change { color: #bbf; background: #007; } |
| 186 |
.syntaxhl .head { color: #f8f; background: #505 } |
| 187 |
.syntaxhl .head .filename { color: white; } |