portal.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. html, body {
  2. margin: 0;
  3. padding:0;
  4. overflow-y: auto;
  5. font-family: Arial,Helvetica,Verdana,sans-serif;
  6. font-size: 8pt;
  7. }
  8. #portal {
  9. height: 100%;
  10. }
  11. #content {
  12. margin: auto;
  13. padding-left: 10px;
  14. padding-right: 10px;
  15. no.text-align: center;
  16. overflow-y: auto;
  17. max-width: 90%;
  18. min-width: 960px;
  19. position: relative;
  20. display: block;
  21. clear: both;
  22. }
  23. div#portal #welcome {
  24. background: url("./images/dockbar_bg.png") repeat-x scroll 0 0 #97A1AE;
  25. border-bottom: 1px solid #636364;
  26. font-size: 13px;
  27. padding: 1px 5px;
  28. position: relative;
  29. z-index: 300;
  30. text-align:right;
  31. color: #2C2F34;
  32. font-weight: bold;
  33. text-shadow: 1px 1px #FFFFFF;
  34. }
  35. div#portal #banner {
  36. height: 116px;
  37. display: block;
  38. vertical-align:middle;
  39. background-color: #f6f6f1;
  40. background: none repeat scroll 0 0 transparent;
  41. margin: 0 auto;
  42. max-width: 90%;
  43. min-width: 960px;
  44. position: relative;
  45. margin-bottom: 1em;
  46. }
  47. div#portal #logo {
  48. background: url(./images/company_logo.png) 0 0 no-repeat;
  49. margin-left:20px;
  50. margin-right:20px;
  51. height: 70px;
  52. border: 0;
  53. vertical-align: middle;
  54. text-align: center;
  55. display: block;
  56. line-height: 116px;
  57. }
  58. #menu {
  59. background: url("./images/bg.png") repeat-x scroll 0 0 #414445;
  60. clear: both;
  61. min-height: 2.4em;
  62. line-height: 3em;
  63. -moz-border-radius: 4px;
  64. vertical-align: middle;
  65. }
  66. #portal_menu {
  67. height: 60px;
  68. }
  69. div.button {
  70. font-size: 1.1em;
  71. font-weight: bold;
  72. text-decoration: none;
  73. }
  74. a.button , a.button:visited {
  75. line-height: 1.2em;
  76. color: #FFFFFF;
  77. font-size: 1.1em;
  78. font-weight: bold;
  79. text-decoration: none;
  80. display: inline;
  81. clear:both;
  82. }
  83. a.button:hover span {
  84. background: #000;
  85. }
  86. a.button span {
  87. vertical-align:middle;
  88. margin: 0 1px;
  89. padding: 5px;
  90. padding-left: 15px;
  91. padding-right: 15px;
  92. -moz-border-radius: 4px;
  93. border-radius: 4px;
  94. }
  95. #close_form_table {
  96. width: 100%;
  97. padding: 20px;
  98. }
  99. #request_details td {
  100. text-align:left;
  101. }
  102. #request_details td fieldset{
  103. xxxheight:100%;
  104. }
  105. #form_details {
  106. display: inline-block;
  107. }
  108. div.wizContainer
  109. {
  110. border: 1px solid #C8C9CA;
  111. -moz-border-radius: 4px 4px 4px 4px;
  112. background-color: #fff;
  113. padding: 3px;
  114. }
  115. .wizContainer table {
  116. nodisplay: inline-block;
  117. text-align: left;
  118. }
  119. #user_request_comment {
  120. width: 30em;
  121. height: 20em;
  122. }
  123. #buttons {
  124. margin-top: 1em;
  125. }
  126. div#buttons #btn_cancel {
  127. margin-right: 50px;
  128. }
  129. div#buttons #btn_back {
  130. margin-left: 50px;
  131. margin-right: 5px;
  132. }
  133. div#buttons #btn_next {
  134. margin-left: 5px;
  135. }
  136. div#buttons #btn_finish {
  137. margin-left: 5px;
  138. }
  139. table.listContainer {
  140. clear: both;
  141. width: 100%;
  142. }
  143. h1 {
  144. background: url("./images/header_bg.png") repeat-x scroll 0 0 #D4D4D4;
  145. border-color: #C8C9CA #9E9E9E #9E9E9E #C8C9CA;
  146. border-style: solid;
  147. border-width: 1px;
  148. font-size: 1.1em;
  149. font-weight: bold;
  150. color: #222222;
  151. font-weight: bold;
  152. text-shadow: 1px 1px #FFFFFF;
  153. padding: 5px;
  154. -moz-border-radius: 4px 4px 4px 4px;
  155. margin-top: 5px;
  156. }
  157. div.DrawerHandle {
  158. display:none;
  159. }
  160. div.HRDrawer {
  161. background: transparent;
  162. border: 0;
  163. height: 0.5em;
  164. }
  165. .SearchDrawer {
  166. background-color: #F9EDBF;
  167. border: 0;
  168. -moz-border-radius: 4px 4px 4px 4px;
  169. }
  170. .SearchDrawer label {
  171. background: transparent;
  172. }
  173. #open_incidents, #open_requests, #open_changes, #request_details {
  174. margin-bottom: 1em;
  175. }
  176. legend {
  177. background: url("./images/header_bg.png") repeat-x scroll 0 0 #D4D4D4;
  178. border-color: #C8C9CA #9E9E9E #9E9E9E #C8C9CA;
  179. border-style: solid;
  180. border-width: 1px;
  181. font-size: 1.1em;
  182. font-weight: bold;
  183. color: #222222;
  184. font-weight: bold;
  185. text-shadow: 1px 1px #FFFFFF;
  186. padding: 5px;
  187. -moz-border-radius: 4px 4px 4px 4px;
  188. margin-top:0;
  189. }
  190. table.details > tbody > tr > td {
  191. padding-bottom: 5px;
  192. padding-top: 3px;
  193. padding-right: 5px;
  194. border: 0;
  195. }
  196. .label {
  197. font-weight: bold;
  198. }
  199. .caselog {
  200. display:block;
  201. width: 100%;
  202. }
  203. .caselog textarea {
  204. resize: none;
  205. }
  206. .edit_item {
  207. margin-bottom: 1em;
  208. }
  209. div.edit_item span div table {
  210. width: 100%;
  211. }
  212. div.edit_item span div table tbody tr td textarea{
  213. width: 99%;
  214. }
  215. div#ticket_shortcuts form {
  216. display: inline-block;
  217. }