Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

85 righe
2.6 KiB

  1. /* General styles for the progress bars */
  2. table.progress {
  3. border: 1px solid #d7d7d7;
  4. border-collapse: collapse;
  5. border-spacing: 0;
  6. float: left;
  7. margin: 0;
  8. padding: 0;
  9. empty-cells: show;
  10. }
  11. table.progress a, table.progress :link, table.progress :visited,
  12. table.progress :link:hover, table.progress :visited:hover {
  13. border: none;
  14. display: block;
  15. width: 100%;
  16. height: 1.2em;
  17. padding: 0;
  18. margin: 0;
  19. text-decoration: none
  20. }
  21. table.progress td { background: #fff; padding: 0 }
  22. table.progress td.new { background: #f5f5b5 }
  23. table.progress td.closed { background: #bae0ba }
  24. table.progress td :hover { background: none }
  25. p.percent { font-size: 10px; line-height: 2.4em; margin: 0.9em 0 0 }
  26. /* Styles for the roadmap view */
  27. ul.milestones { margin: 2em 0 0; padding: 0 }
  28. li.milestone { list-style: none; margin-bottom: 4em }
  29. .milestone .info { white-space: nowrap }
  30. .milestone .info h2 {
  31. background: #f7f7f7;
  32. border-bottom: 1px solid #d7d7d7;
  33. margin: 0;
  34. }
  35. .milestone .info h2 :link, .milestone .info h2 :visited {
  36. color: #000;
  37. display: block;
  38. border-bottom: none;
  39. }
  40. .milestone .info h2 :link:hover, .milestone .info h2 :visited:hover {
  41. color: #000;
  42. }
  43. .milestone .info h2 em { color: #b00; font-style: normal }
  44. .milestone .info .date {
  45. color: #888;
  46. font-size: 11px;
  47. font-style: italic;
  48. margin: 0;
  49. }
  50. .milestone .info .progress { margin: 1em 1em 0; width: 40em; max-width: 70% }
  51. .milestone .info dl {
  52. font-size: 10px;
  53. font-style: italic;
  54. margin: 0 1em 2em;
  55. white-space: nowrap;
  56. }
  57. .milestone .info dt { display: inline; margin-left: .5em }
  58. .milestone .info dd { display: inline; margin: 0 1em 0 .5em }
  59. .milestone .description { margin-left: 1em }
  60. /* Styles for the milestone view */
  61. .milestone .date { color: #888; font-style: italic; margin: 0 }
  62. .milestone .description { margin: 1em 0 2em }
  63. /* Styles for the milestone statistics table */
  64. #stats { float: right; margin: 0 0 2em 2em; width: 400px; max-width: 40% }
  65. #stats legend { white-space: nowrap }
  66. #stats table { border-collapse: collapse; width: 100% }
  67. #stats th, #stats td { font-size: 10px; padding: 0; white-space: nowrap }
  68. #stats th { text-align: right; }
  69. #stats th :link, #stats th :visited { border: none }
  70. #stats td { padding-left: 0.5em; width: 100% }
  71. #stats td table.progress { margin: 3px 4px 3px 0 }
  72. #stats td table.progress td { padding: 0 }
  73. #stats td p.percent { line-height: 1.2em; margin-top: 3px }
  74. /* Styles for the milestone edit form */
  75. #edit fieldset { margin: 1em 0 }
  76. #edit em { color: #888; font-size: smaller }
  77. #edit .disabled em { color: #d7d7d7 }
  78. #edit .field { margin-top: 1.3em }
  79. #edit label { padding-left: .2em }
  80. #edit textarea#description { width: 97% }