mail.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. html, body, #main{
  2. width: 100%; /* make the body expand to fill the visible window */
  3. height: 100%;
  4. overflow: hidden; /* erase window level scrollbars */
  5. padding: 0 0 0 0;
  6. margin: 0 0 0 0;
  7. font: 10pt Arial,Myriad,Tahoma,Verdana,sans-serif;
  8. }
  9. #banner, #footer {
  10. background-color: #b7cdee;
  11. color: #333;
  12. padding:3px;
  13. }
  14. #banner { text-align:right; }
  15. /* list of messages
  16. TODO: If i add the rules below as a plain tr/td it seems to mess up accordion, tree, etc. ???
  17. */
  18. #listPane tr:hover, #listPane td:hover, .dijitTreeContent:hover {
  19. background-color: #b7cdee;
  20. color: #333;
  21. cursor: pointer;
  22. }
  23. #listPane tr, #listPane td { cursor: pointer; }
  24. th {
  25. background-color: #4f8ce5;
  26. color: #fff;
  27. font-weight:: bold !important;
  28. margin:0;
  29. padding:3px;
  30. background-image:url('../../themes/soria/images/gradientTopBg.png');
  31. background-position:0px -1px;
  32. }
  33. th .arrowNode { position:relative; right:2px;
  34. width:16px;
  35. height:16px;
  36. }
  37. th.arrowUp .arrowNode {
  38. padding-right: 16px;
  39. background:transparent url("../../themes/soria/images/arrows.png") no-repeat;
  40. background-position:-32px 0px;
  41. }
  42. th.arrowDown .arrowNode {
  43. padding-right: 16px;
  44. background:transparent url("../../themes/soria/images/arrows.png") no-repeat;
  45. background-position:0px 0px;
  46. }
  47. .demoTable td { padding:3px; }
  48. .demoTable {
  49. border-spacing:0;
  50. padding:0; margin:0;
  51. width:98%;
  52. }
  53. .oddRow {
  54. background-color: #f2f5f9;
  55. }
  56. #message {
  57. padding: 8px;
  58. }
  59. /* Stuff for new messages */
  60. .subject {
  61. background: gray;
  62. width: 100%;
  63. padding-top: 5px;
  64. padding-bottom: 10px;
  65. }
  66. .message {
  67. border: black 2px;
  68. }
  69. .messageHeader {
  70. font:12pt Arial,sans-serif;
  71. font-weight:bold;
  72. color:#333;
  73. }
  74. body .dojoSplitPane {
  75. background: #ededff;
  76. overflow: auto;
  77. }
  78. /* Icons */
  79. .mailIconCancel,
  80. .mailIconOptions,
  81. .mailIconFolderDocuments,
  82. .mailIconFolderInbox,
  83. .mailIconFolderSent,
  84. .mailIconGetMail,
  85. .mailIconNewMessage,
  86. .mailIconMailbox,
  87. .mailIconOk,
  88. .mailIconTrashcanFull {
  89. background-image: url('icons.png'); /* mail icons sprite image */
  90. background-repeat: no-repeat;
  91. width: 16px;
  92. height: 16px;
  93. text-align: center;
  94. padding-right:4px;
  95. }
  96. .dj_ie6 .mailIconCancel,
  97. .dj_ie6 .mailIconOptions,
  98. .dj_ie6 .mailIconFolderDocuments,
  99. .dj_ie6 .mailIconFolderInbox,
  100. .dj_ie6 .mailIconFolderSent,
  101. .dj_ie6 .mailIconGetMail,
  102. .dj_ie6 .mailIconNewMessage,
  103. .dj_ie6 .mailIconMailbox,
  104. .dj_ie6 .mailIconOk,
  105. .dj_ie6 .mailIconTrashcanFull {
  106. background-image: url('icons.gif');
  107. }
  108. .mailIconCancel { background-position: 0px; }
  109. .mailIconOptions { background-position: -22px; }
  110. .mailIconFolderDocuments { background-position: -44px; }
  111. .mailIconFolderInbox { background-position: -66px; }
  112. .mailIconFolderSent { background-position: -88px; }
  113. .mailIconGetMail { background-position: -110px; }
  114. .mailIconNewMessage { background-position: -132px; }
  115. .mailIconMailbox { background-position: -154px; }
  116. .mailIconOk { background-position: -176px; }
  117. .mailIconTrashcanFull { background-position: -198px; }