desktop.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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>.hue-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. #hue-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. #hue-topnav {
  79. position: fixed;
  80. top: 0px;
  81. left: 0px;
  82. width: 100%;
  83. z-index: 10001;
  84. visibility:hidden;
  85. }
  86. #hue-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. #hue-toolbar span {
  99. font-size: 13px;
  100. }
  101. #hue-toolbar a {
  102. color: #5a5a5a;
  103. font-weight: bold;
  104. }
  105. #hue-toolbar #hue-logout, #hue-toolbar #hue-logout a {
  106. color: #999;
  107. font-weight: normal;
  108. font-size: 9px;
  109. }
  110. #hue-toolbar #hue-logout {
  111. position: relative;
  112. top: -1px;
  113. margin-left: 6px;
  114. }
  115. #hue-toolbar img.hue-swoosh {
  116. position: absolute;
  117. top: 4px;
  118. left: 5px;
  119. cursor: pointer;
  120. }
  121. /* feedback */
  122. a#hue-feedback {
  123. position:fixed;
  124. bottom: 0px;
  125. left: 5px;
  126. cursor: pointer;
  127. z-index: 10003;
  128. }
  129. a#hue-feedback img {
  130. display: block;
  131. }
  132. /* tips */
  133. p.hue-tip-example {
  134. margin: 0px;
  135. padding-bottom: 2px;
  136. font-style: italic;
  137. }
  138. ul.hue-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.hue-submenu-list {
  147. width: 200px;
  148. background: #fff;
  149. border: 1px solid #666;
  150. padding: 10px;
  151. }
  152. div.hue-submenu-list h1 {
  153. font-size:12px;
  154. }
  155. /* icon zoomers */
  156. a.hue-lb-thumb {
  157. position: relative;
  158. display: block;
  159. clear:both;
  160. padding: 0 8px;
  161. margin-bottom: 4px;
  162. }
  163. #hue-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. #hue-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. #hue-dock #hue-dock-status {
  217. height: 45px;
  218. border-style: solid;
  219. border: 0;
  220. border-right: 1px solid #c5c5c5;
  221. min-width: 200px;
  222. position: absolute;
  223. text-align: left;
  224. line-height: 45px;
  225. left: 0px;
  226. }
  227. #hue-dock #hue-dock-content {
  228. text-align: right;
  229. height: 45px;
  230. border-style: solid;
  231. border-width: 1px;
  232. border-color: #f2f2f2 #d7d7d7 #c5c5c5;
  233. border-radius: 3px 3px 0px 0px;
  234. -moz-border-radius: 3px 3px 0px 0px;
  235. -webkit-border-radius: 3px 3px 0px 0px;
  236. background: #dbdbdb;
  237. width: 100%;
  238. }
  239. #hue-dock img.hue-icon {
  240. height: 35px;
  241. width: 35px;
  242. opacity: 0.8;
  243. padding: 4px;
  244. cursor: pointer;
  245. }
  246. #hue-dock img.hue-icon:hover {
  247. opacity: 1;
  248. }
  249. #hue-dock img.hue-icon-active {
  250. opacity: 1;
  251. }
  252. #hue-dock-status-content {
  253. padding: 0px 10px;
  254. }
  255. #hue-dock-status-content a {
  256. border: 1px solid;
  257. border-color: #c2c2c2 #939393 #5e5e5e #adadad;
  258. line-height: 12px;
  259. padding: 2px 6px;
  260. margin: 0px 2px;
  261. border-radius: 10px;
  262. -moz-border-radius: 10px;
  263. -webkit-border-radius: 10px;
  264. background: #eaeaea;
  265. color: #333;
  266. position: relative;
  267. top: 2px;
  268. }
  269. #hue-dock-status-content a.dock_misconfig {
  270. border: none;
  271. padding: 0; margin: 0;
  272. border-radius: 0px;
  273. -moz-border-radius: 0px;
  274. -webkit-border-radius: 0px;
  275. background: none;
  276. }
  277. #hue-dock-status-content a.hue-dock-status-failed {
  278. background: #fa1500;
  279. color: #fff;
  280. }
  281. #hue-dock-status-content a.hue-dock-status-completed {
  282. background: #06d307;
  283. }
  284. #hue-dock-status-content a:hover {
  285. text-decoration: none;
  286. background: #fff;
  287. color: #000;
  288. }
  289. #hue-dock-status-content a.dock_misconfig:hover {
  290. background: none;
  291. }
  292. div.dock-tip div.DefaultPointyTip .pointyWrapper div.top_ur {
  293. padding-right: 8px;
  294. }
  295. /* hotkeys !*/
  296. #hotkeys {
  297. position: absolute;
  298. display: block;
  299. right: 6px;
  300. top: 2px;
  301. height: 18px;
  302. text-align: center;
  303. line-height:18px;
  304. font-weight: normal;
  305. font-size: 9px;
  306. padding: 0 4px;
  307. }
  308. #hotkeys img {
  309. vertical-align: middle;
  310. position: relative;
  311. top: -1px;
  312. }
  313. #hotkeys:hover {
  314. text-decoration: none;
  315. background: #fff;
  316. border-radius: 4px;
  317. -moz-border-radius: 4px;
  318. -webkit-border-radius: 4px;
  319. }
  320. #hue-shortcut_list {
  321. z-index: 10003;
  322. background: #fff;
  323. border: 2px solid #555;
  324. border-radius: 2px;
  325. -moz-border-radius: 2px;
  326. -webkit-border-radius: 2px;
  327. }
  328. /* session restore message */
  329. .loadingmsg {
  330. width: 400px;
  331. text-align: center;
  332. background: #111;
  333. opacity: 0.85;
  334. filter: alpha(opacity=85);
  335. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  336. color: #FFF;
  337. padding: 10px 10px 16px 10px;
  338. border-radius: 4px;
  339. -moz-border-radius: 4px;
  340. -webkit-border-radius: 4px;
  341. }
  342. .loadingmsg p {
  343. margin-bottom: 12px;
  344. }
  345. .loadingmsg a {
  346. background: #333 url(/static/art/led-icons/arrow_undo.png) no-repeat 6px 3px;
  347. border-radius: 4px;
  348. -moz-border-radius: 4px;
  349. -webkit-border-radius: 4px;
  350. padding: 4px 8px 4px 26px;
  351. }
  352. .loadingmsg a:hover {
  353. background: #3e4f6d url(/static/art/led-icons/arrow_undo.png) no-repeat 6px 50%;
  354. }
  355. /* forms */
  356. /* validation */
  357. .validation-failed {
  358. background-color: #fcc;
  359. }
  360. .validation-advice {
  361. color: #a00;
  362. background: url(/static/art/error.png) left center no-repeat;
  363. padding-left: 18px;
  364. font-size: 12px;
  365. font-weight: normal;
  366. }
  367. input[type=submit] {
  368. cursor: pointer;
  369. }
  370. /* growl */
  371. .growl {
  372. cursor: pointer;
  373. position: absolute;
  374. right: 0px;
  375. width: 225px;
  376. -moz-border-radius: 8px;
  377. -webkit-border-radius: 8px;
  378. color: #FFF;
  379. background: #333;
  380. opacity: .75;
  381. filter: alpha(opacity=75);
  382. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  383. border: 1px solid #FFF;
  384. padding: 8px;
  385. margin: 8px;
  386. font-size: 12px;
  387. text-shadow: #000 2px 2px 2px;
  388. -moz-box-shadow: 4px 4px 5px #888;
  389. z-index: 100000;
  390. }
  391. .growl:hover {
  392. opacity: 1;
  393. filter: alpha(opacity=100);
  394. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  395. }
  396. #browserWarn {
  397. display: none;
  398. }
  399. .warned #hue-topnav {
  400. top: 28px;
  401. }
  402. .warned #browserWarn {
  403. display: block;
  404. text-align: center;
  405. position: absolute;
  406. top: 0;
  407. left: 0;
  408. margin: 0;
  409. padding: 6px 0;
  410. background: #fffaa9;
  411. width: 100%;
  412. font-weight: bold;
  413. border-bottom: 1px solid #999;
  414. z-index: 100;
  415. }
  416. .warned #browserWarn a {
  417. color: #9d1106;
  418. }
  419. #closeWarning {
  420. display: block;
  421. position: absolute;
  422. right: 8px;
  423. top: 4px;
  424. width: 16px;
  425. height: 16px;
  426. background: url(/static/art/icons/grey_cross.png);
  427. }
  428. .desktop-menu {
  429. font-family: Arial;
  430. font-size: 13px;
  431. list-style: none;
  432. margin: 0;
  433. padding: 5px 1px;
  434. }
  435. .desktop-menu li {
  436. padding: 0;
  437. margin: 0;
  438. }
  439. .desktop-menu a {
  440. outline: none;
  441. margin: 0;
  442. display: block;
  443. padding: 2px 16px;
  444. text-decoration: none;
  445. color: #222;
  446. }
  447. .desktop-menu a.current {
  448. font-weight: bold;
  449. background-color: #ccc;
  450. }
  451. .desktop-menu a.selected {
  452. color: #fff;
  453. background: url(/static/art/context-menu-bg.png);
  454. text-shadow: 0px 1px 1px #0e4f9c;
  455. text-decoration:none;
  456. }
  457. .desktop-menu li.menu-separator {
  458. height: 4px;
  459. border-bottom: 1px solid #ddd;
  460. margin-bottom: 4px;
  461. }
  462. .desktop-menu li.menu-separator a {
  463. display: none;
  464. }