desktop.css 8.7 KB

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