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.

application.css 4.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* Redmine - project management software
  2. * Copyright (C) 2006- Jean-Philippe Lang
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  17. @import url(/application.css);
  18. body, #wrapper { background-color:#EEEEEE; }
  19. #header, #top-menu { margin: 0px 10px 0px 11px; }
  20. #main { background: #EEEEEE; margin: 8px 10px 0px 10px; }
  21. #content, #main.nosidebar #content { background: #fff; border-right: 1px solid #bbb; border-bottom: 1px solid #bbb; border-left: 1px solid #d7d7d7; border-top: 1px solid #d7d7d7; }
  22. #footer { background-color:#EEEEEE; border: 0px; }
  23. /* Headers */
  24. h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 {border-bottom: 0px;}
  25. /* Menu */
  26. #main-menu li a { background-color: #507AAA; font-weight: bold;}
  27. #main-menu li a:hover { background: #507AAA; text-decoration: underline; }
  28. #main-menu li a.selected, #main-menu li a.selected:hover { background-color:#EEEEEE; }
  29. #main-menu li a.new-object { background-color:#507AAA; text-decoration: none; }
  30. #main-menu .menu-children {
  31. border-right: 1px solid #507AAA;
  32. border-bottom: 1px solid #507AAA;
  33. border-left: 1px solid #507AAA;
  34. }
  35. #main-menu .menu-children li a:hover { background-color: #507AAA;}
  36. /* Tables */
  37. table.list tbody td, table.list tbody tr:hover td { border: solid 1px #d7d7d7; }
  38. table.list thead th {
  39. border-width: 1px;
  40. border-style: solid;
  41. border-top-color: #d7d7d7;
  42. border-right-color: #d7d7d7;
  43. border-left-color: #d7d7d7;
  44. border-bottom-color: #999999;
  45. }
  46. /* Issues grid styles by priorities (provided by Wynn Netherland) */
  47. table.list tr.issue a { color: #666; }
  48. tr.odd.priority-highest, table.list tbody tr.odd.priority-highest:hover { color: #900; font-weight: bold; }
  49. tr.odd.priority-highest { background: #ffc4c4; }
  50. tr.even.priority-highest, table.list tbody tr.even.priority-highest:hover { color: #900; font-weight: bold; }
  51. tr.even.priority-highest { background: #ffd4d4; }
  52. tr.priority-highest a, tr.priority-5:hover a { color: #900; }
  53. tr.odd.priority-highest td, tr.even.priority-highest td { border-color: #ffb4b4; }
  54. tr.odd.priority-high2, table.list tbody tr.odd.priority-high4:hover { color: #900; }
  55. tr.odd.priority-high2 { background: #ffc4c4; }
  56. tr.even.priority-high2, table.list tbody tr.even.priority-high4:hover { color: #900; }
  57. tr.even.priority-high2 { background: #ffd4d4; }
  58. tr.priority-high2 a { color: #900; }
  59. tr.odd.priority-high2 td, tr.even.priority-high4 td { border-color: #ffb4b4; }
  60. tr.odd.priority-high3, table.list tbody tr.odd.priority-high3:hover { color: #900; }
  61. tr.odd.priority-high3 { background: #fee; }
  62. tr.even.priority-high3, table.list tbody tr.even.priority-high3:hover { color: #900; }
  63. tr.even.priority-high3 { background: #fff2f2; }
  64. tr.priority-high3 a { color: #900; }
  65. tr.odd.priority-high3 td, tr.even.priority-high3 td { border-color: #fcc; }
  66. tr.odd.priority-lowest, table.list tbody tr.odd.priority-lowest:hover { color: #559; }
  67. tr.odd.priority-lowest { background: #eaf7ff; }
  68. tr.even.priority-lowest, table.list tbody tr.even.priority-lowest:hover { color: #559; }
  69. tr.even.priority-lowest { background: #f2faff; }
  70. tr.priority-lowest a { color: #559; }
  71. tr.odd.priority-lowest td, tr.even.priority-lowest td { border-color: #add7f3; }
  72. /* Buttons */
  73. input[type="button"], input[type="submit"], input[type="reset"] { background-color: #f2f2f2; color: #222222; border: 1px outset #cccccc; }
  74. input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #ccccbb; }
  75. /* Fields */
  76. input[type="text"], input[type="password"], textarea, select { border: 1px solid #d7d7d7; }
  77. input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus { border: 1px solid #888866; }
  78. option { border-bottom: 1px dotted #d7d7d7; }
  79. /* Misc */
  80. .box { background-color: #fcfcfc; }