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.
 
 
 
 
 
 

78 lines
2.4 KiB

  1. /* Timeline */
  2. * html #prefs { width: 34em } /* Set width only for IE */
  3. #prefs fieldset label { display: block }
  4. #prefs .buttons { margin-top: -1.6em }
  5. h2 {
  6. background: #f7f7f7;
  7. border-bottom: 1px solid #d7d7d7;
  8. font-size: 105%;
  9. margin: 2em 0 .5em;
  10. }
  11. dl { line-height: 1.3em; margin-left: 1em }
  12. dt { background: 3px 4px no-repeat; padding: 0 }
  13. dt :link, dt :visited {
  14. background: 3px 3px no-repeat;
  15. border: none;
  16. color: #000;
  17. padding: 0 4px 2px 22px;
  18. }
  19. dt>:link, dt>:visited {
  20. /* Hide from IE/Win */
  21. background-position: 3px 4px;
  22. }
  23. dt :link:hover, dt :visited:hover { background-color: #eed; color: #000 }
  24. dt em {
  25. border-bottom: 1px dotted #bbb;
  26. color: #b00;
  27. font-style: normal;
  28. text-decoration: none;
  29. }
  30. dt .time { color: #999; font-size: 80%; }
  31. dt .author { color: #666; }
  32. dt.highlight { background-color: #ffa; }
  33. dd {
  34. font-size: 80%;
  35. margin: 0 0 .75em 5.5em;
  36. padding: 0;
  37. color: #776;
  38. }
  39. /* Apply icon background-image twice to avoid hover-flicker in IE/Win */
  40. dt.changeset, dt.changeset a { background-image: url(../changeset.png) !important }
  41. dt.newticket, dt.newticket a { background-image: url(../newticket.png) !important }
  42. dt.reopenedticket, dt.reopenedticket a { background-image: url(../newticket.png) !important }
  43. dt.editedticket, dt.editedticket a { background-image: url(../editedticket.png) !important }
  44. dt.closedticket, dt.closedticket a { background-image: url(../closedticket.png) !important }
  45. dt.wiki, dt.wiki a { background-image: url(../wiki.png) !important }
  46. dt.milestone, dt.milestone a { background-image: url(../milestone.png) !important }
  47. dt.attachment, dt.attachment a { background-image: url(../attachment.png) !important }
  48. /* styles for the 'changeset_long_messages' option */
  49. dd.changeset p { margin: 0; padding: 0 }
  50. dd.changeset ul { padding-left: 15px; }
  51. /* Styles for the 'changeset_show_files' option */
  52. dd.changeset .changes { color: #aaa; font-size: 90%; }
  53. dd.changeset ul.changes {
  54. padding-left: 0;
  55. list-style-type: none;
  56. }
  57. dd.changeset .changes li div {
  58. border: 1px solid #999;
  59. float: left;
  60. margin: .5em .5em 0 0;
  61. overflow: hidden;
  62. width: .8em; height: .8em;
  63. }
  64. dd.changeset .changes li span {
  65. float: left;
  66. margin-right: .8em;
  67. }
  68. dd.changeset .changes .add { background: #bfb }
  69. dd.changeset .changes .delete { background: #f88 }
  70. dd.changeset .changes .edit { background: #fd8 }
  71. dd.changeset .changes .copy { background: #88f }
  72. dd.changeset .changes .move { background: #ccc }