gitweb / gitweb.csson commit gitweb: Add optional "time to generate page" info in footer (aa7dd05)
   1body {
   2        font-family: sans-serif;
   3        font-size: small;
   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
  19span.cntrl {
  20        border: dashed #aaaaaa;
  21        border-width: 1px;
  22        padding: 0px 2px 0px 2px;
  23        margin:  0px 2px 0px 2px;
  24}
  25
  26img.logo {
  27        float: right;
  28        border-width: 0px;
  29}
  30
  31img.avatar {
  32        vertical-align: middle;
  33}
  34
  35div.page_header {
  36        height: 25px;
  37        padding: 8px;
  38        font-size: 150%;
  39        font-weight: bold;
  40        background-color: #d9d8d1;
  41}
  42
  43div.page_header a:visited, a.header {
  44        color: #0000cc;
  45}
  46
  47div.page_header a:hover {
  48        color: #880000;
  49}
  50
  51div.page_nav {
  52        padding: 8px;
  53}
  54
  55div.page_nav a:visited {
  56        color: #0000cc;
  57}
  58
  59div.page_path {
  60        padding: 8px;
  61        font-weight: bold;
  62        border: solid #d9d8d1;
  63        border-width: 0px 0px 1px;
  64}
  65
  66div.page_footer {
  67        height: 17px;
  68        padding: 4px 8px;
  69        background-color: #d9d8d1;
  70}
  71
  72div.page_footer_text {
  73        float: left;
  74        color: #555555;
  75        font-style: italic;
  76}
  77
  78div#generating_info {
  79        margin: 4px;
  80        font-size: smaller;
  81        text-align: center;
  82        color: #505050;
  83}
  84
  85div.page_body {
  86        padding: 8px;
  87        font-family: monospace;
  88}
  89
  90div.title, a.title {
  91        display: block;
  92        padding: 6px 8px;
  93        font-weight: bold;
  94        background-color: #edece6;
  95        text-decoration: none;
  96        color: #000000;
  97}
  98
  99div.readme {
 100        padding: 8px;
 101}
 102
 103a.title:hover {
 104        background-color: #d9d8d1;
 105}
 106
 107div.title_text {
 108        padding: 6px 0px;
 109        border: solid #d9d8d1;
 110        border-width: 0px 0px 1px;
 111        font-family: monospace;
 112}
 113
 114div.log_body {
 115        padding: 8px 8px 8px 150px;
 116}
 117
 118span.age {
 119        position: relative;
 120        float: left;
 121        width: 142px;
 122        font-style: italic;
 123}
 124
 125span.signoff {
 126        color: #888888;
 127}
 128
 129div.log_link {
 130        padding: 0px 8px;
 131        font-size: 70%;
 132        font-family: sans-serif;
 133        font-style: normal;
 134        position: relative;
 135        float: left;
 136        width: 136px;
 137}
 138
 139div.list_head {
 140        padding: 6px 8px 4px;
 141        border: solid #d9d8d1;
 142        border-width: 1px 0px 0px;
 143        font-style: italic;
 144}
 145
 146.author_date, .author {
 147        font-style: italic;
 148}
 149
 150div.author_date {
 151        padding: 8px;
 152        border: solid #d9d8d1;
 153        border-width: 0px 0px 1px 0px;
 154}
 155
 156a.list {
 157        text-decoration: none;
 158        color: #000000;
 159}
 160
 161a.subject, a.name {
 162        font-weight: bold;
 163}
 164
 165table.tags a.subject {
 166        font-weight: normal;
 167}
 168
 169a.list:hover {
 170        text-decoration: underline;
 171        color: #880000;
 172}
 173
 174a.text {
 175        text-decoration: none;
 176        color: #0000cc;
 177}
 178
 179a.text:visited {
 180        text-decoration: none;
 181        color: #880000;
 182}
 183
 184a.text:hover {
 185        text-decoration: underline;
 186        color: #880000;
 187}
 188
 189table {
 190        padding: 8px 4px;
 191        border-spacing: 0;
 192}
 193
 194table.diff_tree {
 195        font-family: monospace;
 196}
 197
 198table.combined.diff_tree th {
 199        text-align: center;
 200}
 201
 202table.combined.diff_tree td {
 203        padding-right: 24px;
 204}
 205
 206table.combined.diff_tree th.link,
 207table.combined.diff_tree td.link {
 208        padding: 0px 2px;
 209}
 210
 211table.combined.diff_tree td.nochange a {
 212        color: #6666ff;
 213}
 214
 215table.combined.diff_tree td.nochange a:hover,
 216table.combined.diff_tree td.nochange a:visited {
 217        color: #d06666;
 218}
 219
 220table.blame {
 221        border-collapse: collapse;
 222}
 223
 224table.blame td {
 225        padding: 0px 5px;
 226        font-size: 100%;
 227        vertical-align: top;
 228}
 229
 230th {
 231        padding: 2px 5px;
 232        font-size: 100%;
 233        text-align: left;
 234}
 235
 236/* do not change row style on hover for 'blame' view */
 237tr.light,
 238table.blame .light:hover {
 239        background-color: #ffffff;
 240}
 241
 242tr.dark,
 243table.blame .dark:hover {
 244        background-color: #f6f6f0;
 245}
 246
 247/* currently both use the same, but it can change */
 248tr.light:hover,
 249tr.dark:hover {
 250        background-color: #edece6;
 251}
 252
 253/* boundary commits in 'blame' view */
 254/* and commits without "previous" */
 255tr.boundary td.sha1,
 256tr.no-previous td.linenr {
 257        font-weight: bold;
 258}
 259
 260td {
 261        padding: 2px 5px;
 262        font-size: 100%;
 263        vertical-align: top;
 264}
 265
 266td.link, td.selflink {
 267        padding: 2px 5px;
 268        font-family: sans-serif;
 269        font-size: 70%;
 270}
 271
 272td.selflink {
 273        padding-right: 0px;
 274}
 275
 276td.sha1 {
 277        font-family: monospace;
 278}
 279
 280.error {
 281        color: red;
 282        background-color: yellow;
 283}
 284
 285td.current_head {
 286        text-decoration: underline;
 287}
 288
 289table.diff_tree span.file_status.new {
 290        color: #008000;
 291}
 292
 293table.diff_tree span.file_status.deleted {
 294        color: #c00000;
 295}
 296
 297table.diff_tree span.file_status.moved,
 298table.diff_tree span.file_status.mode_chnge {
 299        color: #777777;
 300}
 301
 302table.diff_tree span.file_status.copied {
 303  color: #70a070;
 304}
 305
 306/* noage: "No commits" */
 307table.project_list td.noage {
 308        color: #808080;
 309        font-style: italic;
 310}
 311
 312/* age2: 60*60*24*2 <= age */
 313table.project_list td.age2, table.blame td.age2 {
 314        font-style: italic;
 315}
 316
 317/* age1: 60*60*2 <= age < 60*60*24*2 */
 318table.project_list td.age1 {
 319        color: #009900;
 320        font-style: italic;
 321}
 322
 323table.blame td.age1 {
 324        color: #009900;
 325        background: transparent;
 326}
 327
 328/* age0: age < 60*60*2 */
 329table.project_list td.age0 {
 330        color: #009900;
 331        font-style: italic;
 332        font-weight: bold;
 333}
 334
 335table.blame td.age0 {
 336        color: #009900;
 337        background: transparent;
 338        font-weight: bold;
 339}
 340
 341td.pre, div.pre, div.diff {
 342        font-family: monospace;
 343        font-size: 12px;
 344        white-space: pre;
 345}
 346
 347td.mode {
 348        font-family: monospace;
 349}
 350
 351/* styling of diffs (patchsets): commitdiff and blobdiff views */
 352div.diff.header,
 353div.diff.extended_header {
 354        white-space: normal;
 355}
 356
 357div.diff.header {
 358        font-weight: bold;
 359
 360        background-color: #edece6;
 361
 362        margin-top: 4px;
 363        padding: 4px 0px 2px 0px;
 364        border: solid #d9d8d1;
 365        border-width: 1px 0px 1px 0px;
 366}
 367
 368div.diff.header a.path {
 369        text-decoration: underline;
 370}
 371
 372div.diff.extended_header,
 373div.diff.extended_header a.path,
 374div.diff.extended_header a.hash {
 375        color: #777777;
 376}
 377
 378div.diff.extended_header .info {
 379        color: #b0b0b0;
 380}
 381
 382div.diff.extended_header {
 383        background-color: #f6f5ee;
 384        padding: 2px 0px 2px 0px;
 385}
 386
 387div.diff a.list,
 388div.diff a.path,
 389div.diff a.hash {
 390        text-decoration: none;
 391}
 392
 393div.diff a.list:hover,
 394div.diff a.path:hover,
 395div.diff a.hash:hover {
 396        text-decoration: underline;
 397}
 398
 399div.diff.to_file a.path,
 400div.diff.to_file {
 401        color: #007000;
 402}
 403
 404div.diff.add {
 405        color: #008800;
 406}
 407
 408div.diff.from_file a.path,
 409div.diff.from_file {
 410        color: #aa0000;
 411}
 412
 413div.diff.rem {
 414        color: #cc0000;
 415}
 416
 417div.diff.chunk_header a,
 418div.diff.chunk_header {
 419        color: #990099;
 420}
 421
 422div.diff.chunk_header {
 423        border: dotted #ffe0ff;
 424        border-width: 1px 0px 0px 0px;
 425        margin-top: 2px;
 426}
 427
 428div.diff.chunk_header span.chunk_info {
 429        background-color: #ffeeff;
 430}
 431
 432div.diff.chunk_header span.section {
 433        color: #aa22aa;
 434}
 435
 436div.diff.incomplete {
 437        color: #cccccc;
 438}
 439
 440div.diff.nodifferences {
 441        font-weight: bold;
 442        color: #600000;
 443}
 444
 445div.index_include {
 446        border: solid #d9d8d1;
 447        border-width: 0px 0px 1px;
 448        padding: 12px 8px;
 449}
 450
 451div.search {
 452        font-size: 100%;
 453        font-weight: normal;
 454        margin: 4px 8px;
 455        float: right;
 456        top: 56px;
 457        right: 12px
 458}
 459
 460p.projsearch {
 461        text-align: center;
 462}
 463
 464td.linenr {
 465        text-align: right;
 466}
 467
 468a.linenr {
 469        color: #999999;
 470        text-decoration: none
 471}
 472
 473a.rss_logo {
 474        float: right;
 475        padding: 3px 0px;
 476        width: 35px;
 477        line-height: 10px;
 478        border: 1px solid;
 479        border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
 480        color: #ffffff;
 481        background-color: #ff6600;
 482        font-weight: bold;
 483        font-family: sans-serif;
 484        font-size: 70%;
 485        text-align: center;
 486        text-decoration: none;
 487}
 488
 489a.rss_logo:hover {
 490        background-color: #ee5500;
 491}
 492
 493a.rss_logo.generic {
 494        background-color: #ff8800;
 495}
 496
 497a.rss_logo.generic:hover {
 498        background-color: #ee7700;
 499}
 500
 501span.refs span {
 502        padding: 0px 4px;
 503        font-size: 70%;
 504        font-weight: normal;
 505        border: 1px solid;
 506        background-color: #ffaaff;
 507        border-color: #ffccff #ff00ee #ff00ee #ffccff;
 508}
 509
 510span.refs span a {
 511        text-decoration: none;
 512        color: inherit;
 513}
 514
 515span.refs span a:hover {
 516        text-decoration: underline;
 517}
 518
 519span.refs span.indirect {
 520        font-style: italic;
 521}
 522
 523span.refs span.ref {
 524        background-color: #aaaaff;
 525        border-color: #ccccff #0033cc #0033cc #ccccff;
 526}
 527
 528span.refs span.tag {
 529        background-color: #ffffaa;
 530        border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
 531}
 532
 533span.refs span.head {
 534        background-color: #aaffaa;
 535        border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
 536}
 537
 538span.atnight {
 539        color: #cc0000;
 540}
 541
 542span.match {
 543        color: #e00000;
 544}
 545
 546div.binary {
 547        font-style: italic;
 548}