desktop.css 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. /* generics */
  2. html {
  3. height: 100%;
  4. background-color: #ccc;
  5. }
  6. /* main desktop */
  7. body {
  8. height: 100%;
  9. position: absolute;
  10. top: 0px; left: 0px; right: 0px; bottom: 0px;
  11. overflow: hidden;
  12. font-family: "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", Helvetica, Arial, sans-serif;
  13. margin: 0px;
  14. padding: 0px;
  15. font-size: 12px;
  16. }
  17. body>.ccs-error-popup {
  18. display: none;
  19. }
  20. #bg {
  21. width: 100%;
  22. position: absolute;
  23. opacity: 0;
  24. filter: alpha(opacity=0);
  25. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  26. }
  27. #bg .desktop-bg {
  28. position: absolute;
  29. width: 100%;
  30. opacity: inherit;
  31. filter: inherit;
  32. -ms-filter: inherit;
  33. }
  34. #bg .desktop-logo {
  35. cursor:pointer;
  36. opacity: inherit;
  37. filter: inherit;
  38. -ms-filter: inherit;
  39. width: 60px;
  40. height: 54px;
  41. position: fixed;
  42. bottom: 60px;
  43. right: 30px;
  44. }
  45. a, a:active, a:focus, button, button:active, button:focus {
  46. outline: none;
  47. outline-style: none;
  48. outline-width: 0;
  49. cursor: pointer;
  50. }
  51. button, input[type=submit], input[type=button] {
  52. box-sizing: content-box;
  53. -moz-box-sizing: content-box;
  54. -webkit-box-sizing: content-box;
  55. }
  56. /*for FireFox*/
  57. input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, button::-moz-focus-inner {
  58. border : 0px;
  59. outline: none;
  60. }
  61. /*for IE8 */
  62. input[type="submit"]:focus, input[type="button"]:focus {
  63. outline : none;
  64. }
  65. #ccs-desktop {
  66. height: 0px;
  67. overflow: visible;
  68. top: 24px;
  69. position: relative;
  70. z-index: 0;
  71. }
  72. form, div, li, dt, dd, p {
  73. position: relative;
  74. }
  75. /* top toolbar */
  76. #ccs-topnav {
  77. position: fixed;
  78. top: 0px;
  79. left: 0px;
  80. width: 100%;
  81. z-index: 10001;
  82. visibility:hidden;
  83. }
  84. #ccs-toolbar {
  85. display: none;
  86. background: url(../art/toolbar-back.png) repeat-x;
  87. height: 20px;
  88. border-bottom: 1px solid #666;
  89. margin: 0px;
  90. font-size: 14px;
  91. padding: 3px 10px 0px 24px;
  92. position: relative;
  93. color: #5a5a5a;
  94. z-index: 10000;
  95. }
  96. #ccs-toolbar span {
  97. font-size: 13px;
  98. }
  99. #ccs-toolbar a {
  100. color: #5a5a5a;
  101. font-weight: bold;
  102. }
  103. #ccs-toolbar #ccs-logout, #ccs-toolbar #ccs-logout a {
  104. color: #999;
  105. font-weight: normal;
  106. font-size: 9px;
  107. }
  108. #ccs-toolbar #ccs-logout {
  109. position: relative;
  110. top: -1px;
  111. margin-left: 6px;
  112. }
  113. #ccs-toolbar img.ccs-swoosh {
  114. position: absolute;
  115. top: 4px;
  116. left: 5px;
  117. cursor: pointer;
  118. }
  119. /* feedback */
  120. a#ccs-feedback {
  121. position:fixed;
  122. bottom: 0px;
  123. left: 5px;
  124. cursor: pointer;
  125. z-index: 10003;
  126. }
  127. a#ccs-feedback img {
  128. display: block;
  129. }
  130. /* tips */
  131. p.ccs-tip-example {
  132. margin: 0px;
  133. padding-bottom: 2px;
  134. font-style: italic;
  135. }
  136. ul.ccs-errors li {
  137. background:transparent url(/site_media/art/error.png) no-repeat scroll 0 0;
  138. color:#666666;
  139. font-weight:bold;
  140. padding:0 20px !important;
  141. margin-bottom: 3px;
  142. }
  143. /* cluster list */
  144. div.ccs-submenu-list {
  145. width: 200px;
  146. background: #fff;
  147. border: 1px solid #666;
  148. padding: 10px;
  149. }
  150. div.ccs-submenu-list h1 {
  151. font-size:12px;
  152. }
  153. /* icon zoomers */
  154. a.ccs-lb-thumb {
  155. position: relative;
  156. display: block;
  157. clear:both;
  158. padding: 0 8px;
  159. margin-bottom: 4px;
  160. }
  161. #ccs-loading {
  162. background: #111;
  163. opacity: 0.8;
  164. filter: alpha(opacity=80);
  165. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  166. color: #FFF;
  167. position: fixed;
  168. z-index: 99999;
  169. width: 350px;
  170. bottom: 35px;
  171. left: 10px;
  172. padding: 10px;
  173. border-radius: 4px;
  174. -moz-border-radius: 4px;
  175. -webkit-border-radius: 4px;
  176. }
  177. /* mask and waiter */
  178. div.mask {
  179. z-index:10002;
  180. background-color: #96C3DF;
  181. opacity: 0.5;
  182. filter: alpha(opacity=50);
  183. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  184. }
  185. .spinner {
  186. position: 'absolute';
  187. opacity: 0.9;
  188. filter: alpha(opacity=90);
  189. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  190. zIndex: 999;
  191. background: #fff;
  192. }
  193. .spinner-msg {
  194. text-align: center;
  195. font-weight: bold;
  196. }
  197. .spinner-img {
  198. background: url(/static/art/spinner.gif) no-repeat;
  199. width: 16px;
  200. height: 16px;
  201. margin: 0 auto;
  202. }
  203. /* doc */
  204. #ccs-dock {
  205. visibility: hidden;
  206. position: fixed;
  207. bottom: 0px;
  208. width: 80%;
  209. min-width: 400px;
  210. right: 10%;
  211. left: 10%;
  212. z-index: 10;
  213. }
  214. #ccs-dock #ccs-dock-status {
  215. height: 45px;
  216. border-style: solid;
  217. border-right: 1px solid #c5c5c5;
  218. min-width: 200px;
  219. position: absolute;
  220. text-align: left;
  221. line-height: 45px;
  222. left: 0px;
  223. }
  224. #ccs-dock #ccs-dock-content {
  225. text-align: right;
  226. height: 45px;
  227. border-style: solid;
  228. border-width: 1px;
  229. border-color: #f2f2f2 #d7d7d7 #c5c5c5;
  230. border-radius: 3px 3px 0px 0px;
  231. -moz-border-radius: 3px 3px 0px 0px;
  232. -webkit-border-radius: 3px 3px 0px 0px;
  233. background: #dbdbdb;
  234. width: 100%;
  235. }
  236. #ccs-dock img.ccs-icon {
  237. height: 35px;
  238. width: 35px;
  239. opacity: 0.8;
  240. padding: 4px;
  241. cursor: pointer;
  242. }
  243. #ccs-dock img.ccs-icon:hover {
  244. opacity: 1;
  245. }
  246. #ccs-dock img.ccs-icon-active {
  247. opacity: 1;
  248. }
  249. #ccs-dock-status-content {
  250. padding: 0px 10px;
  251. }
  252. #ccs-dock-status-content a {
  253. border: 1px solid;
  254. border-color: #c2c2c2 #939393 #5e5e5e #adadad;
  255. line-height: 12px;
  256. padding: 2px 6px;
  257. margin: 0px 2px;
  258. border-radius: 10px;
  259. -moz-border-radius: 10px;
  260. -webkit-border-radius: 10px;
  261. background: #eaeaea;
  262. color: #333;
  263. }
  264. #ccs-dock-status-content a.ccs-dock-status-failed {
  265. background: #fa1500;
  266. color: #fff;
  267. }
  268. #ccs-dock-status-content a.ccs-dock-status-completed {
  269. background: #06d307;
  270. }
  271. #ccs-dock-status-content a:hover {
  272. text-decoration: none;
  273. background: #fff;
  274. color: #000;
  275. }
  276. div.dock-tip div.DefaultPointyTip .pointyWrapper div.top_ur {
  277. padding-right: 8px;
  278. }
  279. /* hotkeys !*/
  280. #hotkeys {
  281. position: absolute;
  282. display: block;
  283. right: 6px;
  284. top: 2px;
  285. height: 18px;
  286. text-align: center;
  287. line-height:18px;
  288. font-weight: normal;
  289. font-size: 9px;
  290. padding: 0 4px;
  291. }
  292. #hotkeys img {
  293. vertical-align: middle;
  294. position: relative;
  295. top: -1px;
  296. }
  297. #hotkeys:hover {
  298. text-decoration: none;
  299. background: #fff;
  300. border-radius: 4px;
  301. -moz-border-radius: 4px;
  302. -webkit-border-radius: 4px;
  303. }
  304. #ccs-shortcut_list {
  305. z-index: 10003;
  306. background: #fff;
  307. border: 2px solid #555;
  308. border-radius: 2px;
  309. -moz-border-radius: 2px;
  310. -webkit-border-radius: 2px;
  311. }
  312. /* session restore message */
  313. .loadingmsg {
  314. width: 400px;
  315. text-align: center;
  316. background: #111;
  317. opacity: 0.85;
  318. filter: alpha(opacity=85);
  319. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  320. color: #FFF;
  321. padding: 10px 10px 16px 10px;
  322. border-radius: 4px;
  323. -moz-border-radius: 4px;
  324. -webkit-border-radius: 4px;
  325. }
  326. .loadingmsg p {
  327. margin-bottom: 12px;
  328. }
  329. .loadingmsg a {
  330. background: #333 url(/static/art/led-icons/arrow_undo.png) no-repeat 6px 3px;
  331. border-radius: 4px;
  332. -moz-border-radius: 4px;
  333. -webkit-border-radius: 4px;
  334. padding: 4px 8px 4px 26px;
  335. }
  336. .loadingmsg a:hover {
  337. background: #3e4f6d url(/static/art/led-icons/arrow_undo.png) no-repeat 6px 50%;
  338. }
  339. /* forms */
  340. /* validation */
  341. .validation-failed {
  342. background-color: #fcc;
  343. }
  344. .validation-advice {
  345. color: #a00;
  346. background: url(/static/art/error.png) left center no-repeat;
  347. padding-left: 18px;
  348. font-size: 12px;
  349. font-weight: normal;
  350. }
  351. input[type=submit] {
  352. cursor: pointer;
  353. }
  354. /* growl */
  355. .growl {
  356. cursor: pointer;
  357. position: absolute;
  358. right: 0px;
  359. width: 225px;
  360. -moz-border-radius: 8px;
  361. -webkit-border-radius: 8px;
  362. color: #FFF;
  363. background: #333;
  364. opacity: .75;
  365. filter: alpha(opacity=75);
  366. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  367. border: 1px solid #FFF;
  368. padding: 8px;
  369. margin: 8px;
  370. font-size: 12px;
  371. text-shadow: #000 2px 2px 2px;
  372. -moz-box-shadow: 4px 4px 5px #888;
  373. z-index: 100000;
  374. }
  375. .growl:hover {
  376. opacity: 1;
  377. filter: alpha(opacity=100);
  378. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  379. }
  380. #browserWarn {
  381. display: none;
  382. }
  383. .warned #ccs-topnav {
  384. top: 28px;
  385. }
  386. .warned #browserWarn {
  387. display: block;
  388. text-align: center;
  389. position: absolute;
  390. top: 0;
  391. left: 0;
  392. margin: 0;
  393. padding: 6px 0;
  394. background: #fffaa9;
  395. width: 100%;
  396. font-weight: bold;
  397. border-bottom: 1px solid #999;
  398. z-index: 100;
  399. }
  400. .warned #browserWarn a {
  401. color: #9d1106;
  402. }
  403. #closeWarning {
  404. display: block;
  405. position: absolute;
  406. right: 8px;
  407. top: 4px;
  408. width: 16px;
  409. height: 16px;
  410. background: url(/static/art/icons/grey_cross.png);
  411. }