layout.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. /* Essentials */
  2. html, div, map, dt, isindex, form, header, aside, section, section, article, footer {
  3. display: block;
  4. }
  5. html, body {
  6. height: 100%;
  7. margin: 0;
  8. padding: 0;
  9. font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
  10. background: #F8F8F8;
  11. font-size: 12px;
  12. }
  13. .clear {
  14. clear: both;
  15. }
  16. .spacer {
  17. height: 20px;
  18. }
  19. a:link, a:visited {
  20. color: #e95802;
  21. text-decoration: none;
  22. }
  23. a:hover {
  24. text-decoration: underline;
  25. }
  26. /* Header */
  27. header#header {
  28. height: 55px;
  29. width: 100%;
  30. background: #222222 url(../images/header_bg.png) repeat-x;
  31. }
  32. header .toggleLinkWMAN {
  33. color: #222222;
  34. padding-top: 8px;
  35. text-decoration: none;
  36. }
  37. header#header h1.site_title, header#header h2.section_title {
  38. float: left;
  39. margin: 0;
  40. font-size: 22px;
  41. display: block;
  42. width: 23%;
  43. height: 55px;
  44. font-weight: normal;
  45. text-align: left;
  46. text-indent: 1.8%;
  47. line-height: 55px;
  48. color: #fff;
  49. text-shadow: 0 -1px 0 #000;
  50. }
  51. header#header h1.site_title sup {
  52. font-size: 8pt;
  53. }
  54. header#header h1.site_title a {
  55. color: #fff;
  56. text-decoration: none;
  57. }
  58. header#header h2.section_title {
  59. text-align: center;
  60. text-indent: 4.5%;
  61. width: 68%;
  62. background: url(../images/header_shadow.png) no-repeat left top;
  63. }
  64. .btn_view_help {
  65. float: right;
  66. width: 9%;
  67. }
  68. .btn_view_help a {
  69. display: block;
  70. float: right;
  71. margin-top: 16px;
  72. margin-right: 16px;
  73. text-align: center;
  74. line-height: 29px;
  75. color: #fff;
  76. text-decoration: none;
  77. text-shadow: 0 -1px 0 #000;}
  78. .btn_view_help a:hover {
  79. background-position: 0 -27px;
  80. }
  81. /* Secondary Header Bar */
  82. section#secondary_bar {
  83. height: 38px;
  84. width: 100%;
  85. background: #F1F1F4 url(../images/secondary_bar.png) repeat-x;
  86. }
  87. section#secondary_bar .user {
  88. float: left;
  89. width: 23%;
  90. height: 38px;
  91. }
  92. .user p {
  93. margin: 0;
  94. padding: 0;
  95. color: #666666;
  96. font-weight: bold;
  97. display: block;
  98. float: left;
  99. width: 85%;
  100. height: 35px;
  101. line-height: 35px;
  102. text-indent: 25px;
  103. text-shadow: 0 1px 0 #fff;
  104. /* background: url(../images/icn_user.png) no-repeat center left; */
  105. margin-left: 6%;
  106. }
  107. .user a {
  108. text-decoration: none;
  109. color: #666666}
  110. .user a:hover {
  111. color: #77BACE;
  112. }
  113. .user a.logout_user {
  114. float: left;
  115. display: block;
  116. width: 16px;
  117. height: 35px;
  118. text-indent: -5000px;
  119. background: url(../images/poweroff.png) center no-repeat;
  120. }
  121. .user a.menu_toggle {
  122. float: left;
  123. display: block;
  124. width: 16px;
  125. height: 35px;
  126. text-indent: -5000px;
  127. background: url(../images/menutoggle.png) center no-repeat;
  128. }
  129. /* Breadcrumbs */
  130. section#secondary_bar .breadcrumbs_container {
  131. float: left;
  132. width: 77%;
  133. background: url(../images/secondary_bar_shadow.png) no-repeat left top;
  134. height: 38px;
  135. }
  136. article.breadcrumbs {
  137. float: left;
  138. padding: 0 10px;
  139. border: 1px solid #ccc;
  140. -webkit-border-radius: 5px;
  141. -moz-border-radius: 5px;
  142. border-radius: 5px;
  143. -webkit-box-shadow: 0 1px 0 #fff;
  144. -moz-box-shadow: 0 1px 0 #fff;
  145. box-shadow: 0 1px 0 #fff;
  146. height: 23px;
  147. margin: 4px 3%;
  148. overflow: hidden;
  149. }
  150. .breadcrumbs a {
  151. display: inline-block;
  152. float: left;
  153. height: 24px;
  154. line-height: 23px;
  155. }
  156. .breadcrumbs a.current, .breadcrumbs a.current:hover {
  157. color: #9E9E9E;
  158. font-weight: bold;
  159. text-shadow: 0 1px 0 #fff;
  160. text-decoration: none;
  161. }
  162. .breadcrumbs a:link, .breadcrumbs a:visited {
  163. color: #44474F;
  164. text-decoration: none;
  165. text-shadow: 0 1px 0 #fff;
  166. font-weight: bold;
  167. }
  168. .breadcrumbs a:hover {
  169. color: #222222;
  170. }
  171. .breadcrumbs a:active {
  172. }
  173. .breadcrumb_divider {
  174. display: inline-block;
  175. width: 12px;
  176. height: 24px;
  177. background: url(../images/breadcrumb_divider.png) no-repeat;
  178. float: left;
  179. margin: 0 5px;
  180. }
  181. /* Sidebar */
  182. aside#sidebar {
  183. width: 23%;
  184. background: #E0E0E3 url(../images/sidebar.png) repeat;
  185. float: left;
  186. min-height: 500px;
  187. margin-top: -4px;
  188. }
  189. #sidebar hr {
  190. border: none;
  191. outline: none;
  192. background: url(../images/sidebar_divider.png) repeat-x;
  193. display: block;
  194. width: 100%;
  195. height: 2px;}
  196. /* Search */
  197. .quick_search {
  198. text-align: center;
  199. padding: 14px 0 10px 0;
  200. }
  201. .quick_search input[type=text] {
  202. -webkit-border-radius: 20px;
  203. -moz-border-radius: 20px;
  204. border-radius: 20px;
  205. border: 1px solid #bbb;
  206. height: 26px;
  207. width: 90%;
  208. color: #ccc;
  209. -webkit-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
  210. -moz-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
  211. box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
  212. text-indent: 30px;
  213. background: #fff url(../images/icn_search.png) no-repeat;
  214. background-position: 10px 6px;
  215. }
  216. .quick_search input[type=text]:focus {
  217. outline: none;
  218. color: #666666;
  219. border: 1px solid #77BACE;
  220. -webkit-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
  221. -moz-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
  222. box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
  223. }
  224. /* Sidebar Menu */
  225. #sidebar h3 {
  226. color: #1F1F20;
  227. text-shadow: 0 1px 0 #fff;
  228. font-size: 13px;
  229. margin: 10px 0 10px 6%;
  230. display: block;
  231. float: left;
  232. width: 90%;
  233. }
  234. .toggleLinkGMENU {
  235. color: #999999;
  236. font-size: 10px;
  237. text-decoration: none;
  238. display: block;
  239. float: right;
  240. margin-right: 2%
  241. }
  242. .toggleLinkWMAN {
  243. color: #999999;
  244. font-size: 12px;
  245. text-decoration: none;
  246. display: block;
  247. float: right;
  248. margin-right: 1%
  249. }
  250. #sidebar .toggleLinkGMENU:hover {
  251. color: #77BACE;
  252. text-decoration: none;
  253. }
  254. #sidebar ul {
  255. clear: both;
  256. margin: 0; padding: 0;
  257. }
  258. #sidebar li {
  259. list-style: none;
  260. margin: 0 0 0 12%; padding: 0;
  261. }
  262. #sidebar li a {
  263. color: #666666;
  264. /* padding-left: 25px; */
  265. text-decoration: none;
  266. display: inline-block;
  267. height: 17px;
  268. line-height: 17px;
  269. text-shadow: 0 1px 0 #fff;
  270. margin: 2px 0;
  271. }
  272. #sidebar li a:hover {
  273. color: #444444;
  274. }
  275. #sidebar p {
  276. color: #666666;
  277. padding-left: 6%;
  278. text-shadow: 0 1px 0 #fff;
  279. margin: 10px 0 0 0;}
  280. #sidebar a {
  281. color: #666666;
  282. text-decoration: none;
  283. }
  284. #sidebar a:hover {
  285. text-decoration: underline;
  286. }
  287. #sidebar footer {
  288. margin-top: 20%;
  289. }
  290. /* Main Content */
  291. section#main {
  292. width: 77%;
  293. min-height: 500px;
  294. background: url(../images/sidebar_shadow.png) repeat-y left top;
  295. float: left;
  296. margin-top: -2px;
  297. }
  298. #main h3 {
  299. color: #1F1F20;
  300. text-shadow: 0 1px 0 #fff;
  301. font-size: 13px;
  302. margin: 8px 20px;
  303. }
  304. /* Modules */
  305. .module {
  306. border: 1px solid #9BA0AF;
  307. width: 100%;
  308. margin: 20px 3% 0 3%;
  309. margin-top: 20px;
  310. -webkit-border-radius: 5px;
  311. -moz-border-radius: 5px;
  312. border-radius: 5px;
  313. background: #ffffff;
  314. }
  315. #main .module header h3 {
  316. display: block;
  317. width: 90%;
  318. float: left;
  319. }
  320. .module header {
  321. min-height: 38px;
  322. width: 100%;
  323. background: #F1F1F4 url(../images/secondary_bar.png) repeat-x;
  324. -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
  325. -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
  326. border-top-left-radius: 5px; border-top-right-radius: 5px;
  327. }
  328. .module footer {
  329. height: 32px;
  330. width: 100%;
  331. border-top: 1px solid #9CA1B0;
  332. background: #F1F1F4 url(../images/module_footer_bg.png) repeat-x;
  333. -webkit-border-bottom-left-radius: 5px; -webkit-border-bottom-right-radius: 5px;
  334. -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px;
  335. -webkit-border-bottom-left-radius: 5px; -webkit-border-bottom-right-radius: 5px;
  336. }
  337. .module_content {
  338. margin: 5px 5px;
  339. color: #666;}
  340. /* Module Widths */
  341. .width_full {
  342. width: 95%;
  343. }
  344. .width_half {
  345. width: 46%;
  346. margin-right: 0;
  347. float: left;
  348. }
  349. .width_quarter {
  350. width: 26%;
  351. margin-right: 0;
  352. float: left;
  353. }
  354. .width_3_quarter {
  355. width: 66%;
  356. margin-right: 0;
  357. float: left;
  358. }
  359. /* Stats Module */
  360. .stats_graph {
  361. width: 64%;
  362. float: left;
  363. }
  364. .stats_overview {
  365. background: #F6F6F6;
  366. border: 1px solid #ccc;
  367. float: right;
  368. width: 26%;
  369. -webkit-border-radius: 5px;
  370. -moz-border-radius: 5px;
  371. border-radius: 5px;
  372. }
  373. .overview_today, .overview_previous {
  374. width: 50%;
  375. float: left;}
  376. .stats_overview p {
  377. margin: 0; padding: 0;
  378. text-align: center;
  379. text-shadow: 0 1px 0 #fff;
  380. }
  381. .stats_overview p.overview_day {
  382. font-size: 12px;
  383. font-weight: bold;
  384. margin: 6px 0;
  385. }
  386. .stats_overview p.overview_count {
  387. font-size: 26px;
  388. font-weight: bold;
  389. color: #333333;}
  390. .stats_overview p.overview_type {
  391. font-size: 10px;
  392. color: #999999;
  393. margin-bottom: 8px}
  394. /* Content Manager */
  395. #main .module header h3.tabs_involved {
  396. display: block;
  397. width: 60%;
  398. float: left;
  399. }
  400. #main .module_content h1 {
  401. color: #333333;
  402. text-transform: none;
  403. text-shadow: 0 1px 0 #fff;
  404. font-size: 22px;
  405. margin: 8px 0px;
  406. }
  407. #main .module_content h2 {
  408. color: #444444;
  409. text-transform: none;
  410. text-shadow: 0 1px 0 #fff;
  411. font-size: 18px;
  412. margin: 8px 0px;
  413. }
  414. #main .module_content h3 {
  415. color: #666666;
  416. text-shadow: 0 1px 0 #fff;
  417. font-size: 13px;
  418. margin: 8px 0px;
  419. }
  420. #main .module_content h4 {
  421. color: #666666;
  422. text-transform: none;
  423. text-shadow: 0 1px 0 #fff;
  424. font-size: 13px;
  425. margin: 8px 0px;
  426. }
  427. #main .module_content li {
  428. line-height: 150%;
  429. }
  430. /* Dark mode overrides */
  431. .darkmode--activated #header {
  432. background: #fbfbfb;
  433. color: #000;
  434. }
  435. .darkmode--activated .ubproductname {
  436. color: #383838;
  437. }
  438. .darkmode--activated .ubverinfo {
  439. color: #383838;
  440. }
  441. .darkmode--activated .dashtask img {
  442. filter: grayscale(100%) invert();
  443. }
  444. .darkmode--activated .profileplugincontainer img {
  445. filter: grayscale(100%) invert();
  446. }