You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scm.css 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. table.revision-info td {
  2. margin: 0px;
  3. padding: 0px;
  4. }
  5. div.revision-graph { position: absolute; min-width: 1px; }
  6. div.changeset-changes ul { margin: 0; padding: 0; }
  7. div.changeset-changes ul > ul { margin-left: 18px; padding: 0; }
  8. li.change {
  9. list-style-type:none;
  10. background-image: url(../images/bullet_black.png);
  11. background-position: 1px 1px;
  12. background-repeat: no-repeat;
  13. padding-top: 1px;
  14. padding-bottom: 1px;
  15. padding-left: 20px;
  16. margin: 0;
  17. }
  18. li.change.folder { background-image: url(../images/folder_open.png); }
  19. li.change.folder.change-A { background-image: url(../images/folder_open_add.png); }
  20. li.change.folder.change-M { background-image: url(../images/folder_open_orange.png); }
  21. li.change.change-A { background-image: url(../images/bullet_add.png); }
  22. li.change.change-M { background-image: url(../images/bullet_orange.png); }
  23. li.change.change-C { background-image: url(../images/bullet_blue.png); }
  24. li.change.change-R { background-image: url(../images/bullet_purple.png); }
  25. li.change.change-D { background-image: url(../images/bullet_delete.png); }
  26. li.change .copied-from { font-style: italic; color: #999; font-size: 0.9em; }
  27. li.change .copied-from:before { content: " - "}
  28. #changes-legend { float: right; font-size: 0.8em; margin: 0; }
  29. #changes-legend li { float: left; background-position: 5px 0; }
  30. table.filecontent { border: 1px solid #e2e2e2; border-collapse: collapse; width:98%; background-color: #fafafa; }
  31. table.filecontent tbody {font-family:"Liberation Mono", Courier, monospace; font-size:12px;}
  32. table.filecontent th { border: 1px solid #e2e2e2; background-color: #eee; }
  33. table.filecontent th.filename { background-color: #e4e4d4; text-align: left; padding:5px;}
  34. table.filecontent tr.spacing th { text-align:center; }
  35. table.filecontent tr.spacing td { height: 0.4em; background: #EAF2F5;}
  36. table.filecontent th.line-num {
  37. border: 1px solid #e2e2e2;
  38. text-align: right;
  39. width: 2%;
  40. padding: 0 3px 0 0;
  41. color: #999;
  42. user-select: none;
  43. -moz-user-select: none;
  44. -o-user-select: none;
  45. -ms-user-select: none;
  46. -webkit-user-select: none;
  47. font-weight:normal;
  48. }
  49. table.filecontent th.line-num a {
  50. text-decoration: none;
  51. color: inherit;
  52. }
  53. table.filecontent td.line-code {padding: 0 0 0 4px;}
  54. table.filecontent td.line-code pre {
  55. margin: 0px;
  56. white-space: pre-wrap;
  57. font-family:"Liberation Mono", Courier, monospace; font-size:12px;
  58. }
  59. table.filecontent tr:target th.line-num { background-color:#E0E0E0; color: #777; }
  60. table.filecontent tr:target td.line-code { background-color:#DDEEFF; }
  61. /* 12 different colors for the annonate view */
  62. table.annotate tr.bloc-0 {background: #FFFFBF;}
  63. table.annotate tr.bloc-1 {background: #EABFFF;}
  64. table.annotate tr.bloc-2 {background: #BFFFFF;}
  65. table.annotate tr.bloc-3 {background: #FFD9BF;}
  66. table.annotate tr.bloc-4 {background: #E6FFBF;}
  67. table.annotate tr.bloc-5 {background: #BFCFFF;}
  68. table.annotate tr.bloc-6 {background: #FFBFEF;}
  69. table.annotate tr.bloc-7 {background: #FFE6BF;}
  70. table.annotate tr.bloc-8 {background: #FFE680;}
  71. table.annotate tr.bloc-9 {background: #AA80FF;}
  72. table.annotate tr.bloc-10 {background: #FFBFDC;}
  73. table.annotate tr.bloc-11 {background: #BFE4FF;}
  74. table.annotate td.revision {
  75. padding:0;
  76. text-align: center;
  77. width: 2%;
  78. padding-left: 1em;
  79. background: inherit;
  80. }
  81. table.annotate td.author {
  82. padding:0;
  83. text-align: center;
  84. border-right: 1px solid #d7d7d7;
  85. white-space: nowrap;
  86. padding-left: 1em;
  87. padding-right: 1em;
  88. width: 3%;
  89. background: inherit;
  90. }
  91. table.annotate td.line-code { background-color: #fafafa; }
  92. div.action_M { background: #fd8 }
  93. div.action_D { background: #f88 }
  94. div.action_A { background: #bfb }