gitweb / gitweb.csson commit gitweb: Remove characters entities entirely when shortening string (7ca84b5)
   1body {
   2        font-family: sans-serif;
   3        font-size: 12px;
   4        border: solid #d9d8d1;
   5        border-width: 1px;
   6        margin: 10px;
   7        background-color: #ffffff;
   8        color: #000000;
   9}
  10
  11a {
  12        color: #0000cc;
  13}
  14
  15a:hover, a:visited, a:active {
  16        color: #880000;
  17}
  18
  19div.page_header {
  20        height: 25px;
  21        padding: 8px;
  22        font-size: 18px;
  23        font-weight: bold;
  24        background-color: #d9d8d1;
  25}
  26
  27div.page_header a:visited, a.header {
  28        color: #0000cc;
  29}
  30
  31div.page_header a:hover {
  32        color: #880000;
  33}
  34
  35div.page_nav {
  36        padding: 8px;
  37}
  38
  39div.page_nav a:visited {
  40        color: #0000cc;
  41}
  42
  43div.page_path {
  44        padding: 8px;
  45        border: solid #d9d8d1;
  46        border-width: 0px 0px 1px;
  47}
  48
  49div.page_footer {
  50        height: 17px;
  51        padding: 4px 8px;
  52        background-color: #d9d8d1;
  53}
  54
  55div.page_footer_text {
  56        float: left;
  57        color: #555555;
  58        font-style: italic;
  59}
  60
  61div.page_body {
  62        padding: 8px;
  63        font-family: monospace;
  64}
  65
  66div.title, a.title {
  67        display: block;
  68        padding: 6px 8px;
  69        font-weight: bold;
  70        background-color: #edece6;
  71        text-decoration: none;
  72        color: #000000;
  73}
  74
  75a.title:hover {
  76        background-color: #d9d8d1;
  77}
  78
  79div.title_text {
  80        padding: 6px 0px;
  81        border: solid #d9d8d1;
  82        border-width: 0px 0px 1px;
  83        font-family: monospace;
  84}
  85
  86div.log_body {
  87        padding: 8px 8px 8px 150px;
  88}
  89
  90span.age {
  91        position: relative;
  92        float: left;
  93        width: 142px;
  94        font-style: italic;
  95}
  96
  97div.page_body span.signoff {
  98        color: #888888;
  99}
 100
 101div.log_link {
 102        padding: 0px 8px;
 103        font-size: 10px;
 104        font-family: sans-serif;
 105        font-style: normal;
 106        position: relative;
 107        float: left;
 108        width: 136px;
 109}
 110
 111div.list_head {
 112        padding: 6px 8px 4px;
 113        border: solid #d9d8d1;
 114        border-width: 1px 0px 0px;
 115        font-style: italic;
 116}
 117
 118a.list {
 119        text-decoration: none;
 120        color: #000000;
 121}
 122
 123a.list:hover {
 124        text-decoration: underline;
 125        color: #880000;
 126}
 127
 128a.text {
 129        text-decoration: none;
 130        color: #0000cc;
 131}
 132
 133a.text:visited {
 134        text-decoration: none;
 135        color: #880000;
 136}
 137
 138a.text:hover {
 139        text-decoration: underline;
 140        color: #880000;
 141}
 142
 143table {
 144        padding: 8px 4px;
 145}
 146
 147table.project_list {
 148        border-spacing: 0;
 149}
 150
 151table.diff_tree {
 152        border-spacing: 0;
 153        font-family: monospace;
 154}
 155
 156table.blame {
 157        border-collapse: collapse;
 158}
 159
 160th {
 161        padding: 2px 5px;
 162        font-size: 12px;
 163        text-align: left;
 164}
 165
 166tr.light:hover {
 167        background-color: #edece6;
 168}
 169
 170tr.dark {
 171        background-color: #f6f6f0;
 172}
 173
 174tr.dark:hover {
 175        background-color: #edece6;
 176}
 177
 178td {
 179        padding: 2px 5px;
 180        font-size: 12px;
 181        vertical-align: top;
 182}
 183
 184td.link {
 185        padding: 2px 5px;
 186        font-family: sans-serif;
 187        font-size: 10px;
 188}
 189
 190td.sha1 {
 191        font-family: monospace;
 192}
 193
 194td.error {
 195        color: red;
 196        background-color: yellow;
 197}
 198
 199table.diff_tree span.file_status.new {
 200        color: #008000;
 201}
 202
 203table.diff_tree span.file_status.deleted {
 204        color: #c00000;
 205}
 206
 207table.diff_tree span.file_status.moved,
 208table.diff_tree span.file_status.mode_chnge {
 209        color: #777777;
 210}
 211
 212/* age2: 60*60*24*2 <= age */
 213table.project_list td.age2, table.blame td.age2 {
 214        font-style: italic;
 215}
 216
 217/* age1: 60*60*2 <= age < 60*60*24*2 */
 218table.project_list td.age1 {
 219        color: #009900;
 220        font-style: italic;
 221}
 222
 223table.blame td.age1 {
 224        color: #009900;
 225        background: transparent;
 226}
 227
 228/* age0: age < 60*60*2 */
 229table.project_list td.age0 {
 230        color: #009900;
 231        font-style: italic;
 232        font-weight: bold;
 233}
 234
 235table.blame td.age0 {
 236        color: #009900;
 237        background: transparent;
 238        font-weight: bold;
 239}
 240
 241td.pre, div.pre, div.diff {
 242        font-family: monospace;
 243        font-size: 12px;
 244        white-space: pre;
 245}
 246
 247td.mode {
 248        font-family: monospace;
 249}
 250
 251div.diff.add {
 252        color: #008800;
 253}
 254
 255div.diff.rem {
 256        color: #cc0000;
 257}
 258
 259div.diff.chunk_header {
 260        color: #990099;
 261}
 262
 263div.diff_info {
 264        font-family: monospace;
 265        color: #000099;
 266        background-color: #edece6;
 267        font-style: italic;
 268}
 269
 270div.index_include {
 271        border: solid #d9d8d1;
 272        border-width: 0px 0px 1px;
 273        padding: 12px 8px;
 274}
 275
 276div.search {
 277        margin: 4px 8px;
 278        position: absolute;
 279        top: 56px;
 280        right: 12px
 281}
 282
 283td.linenr {
 284        text-align: right;
 285}
 286
 287a.linenr {
 288        color: #999999;
 289        text-decoration: none
 290}
 291
 292a.rss_logo {
 293        float: right;
 294        padding: 3px 0px;
 295        width: 35px;
 296        line-height: 10px;
 297        border: 1px solid;
 298        border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
 299        color: #ffffff;
 300        background-color: #ff6600;
 301        font-weight: bold;
 302        font-family: sans-serif;
 303        font-size: 10px;
 304        text-align: center;
 305        text-decoration: none;
 306}
 307
 308a.rss_logo:hover {
 309        background-color: #ee5500;
 310}
 311
 312span.tag {
 313        padding: 0px 4px;
 314        font-size: 10px;
 315        font-weight: normal;
 316        background-color: #ffffaa;
 317        border: 1px solid;
 318        border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
 319}
 320
 321span.atnight {
 322        color: #cc0000;
 323}
 324
 325span.match {
 326        color: #e00000;
 327}