Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.84 KB | None | 0 0
  1. @CHARSET "UTF-8";
  2.  
  3. /* --- moderator_bar.css --- */
  4.  
  5. #moderatorBar
  6. {
  7. background-color: #032A46;
  8. border-bottom: 1px solid #65a5d1;
  9. font-size: 11px;
  10. }
  11.  
  12. /*#moderatorBar
  13. {
  14. box-shadow: 0 0 5px #176093; -webkit-box-shadow: 0 0 5px #176093; -moz-box-shadow: 0 0 5px #176093; -khtml-box-shadow: 0 0 5px #176093;
  15. width: 100%;
  16. position: fixed;
  17. top: 0px;
  18. z-index: 100;
  19. }
  20.  
  21. body
  22. {
  23. padding-top: 25px;
  24. }*/
  25.  
  26. /* clearfix */ #moderatorBar { zoom: 1; } #moderatorBar:after { content: '.'; display: block; height: 0; clear: both; visibility: hidden; }
  27.  
  28. #moderatorBar .pageContent
  29. {
  30. padding: 2px 0;
  31. }
  32.  
  33. #moderatorBar a
  34. {
  35. display: inline-block;
  36. padding: 2px 10px;
  37. border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -khtml-border-radius: 3px;
  38. }
  39.  
  40. #moderatorBar a,
  41. #moderatorBar .itemCount
  42. {
  43. color: #a5cae4;
  44. }
  45.  
  46. #moderatorBar a:hover
  47. {
  48. text-decoration: none;
  49. background-color: #2b485c;
  50. color: #d7edfc;
  51. }
  52.  
  53. /* TODO: maybe sort out the vertical alignment of the counters so they they are properly centered */
  54.  
  55. #moderatorBar .itemLabel,
  56. #moderatorBar .itemCount
  57. {
  58. display: inline-block;
  59. height: 16px;
  60. line-height: 16px;
  61. }
  62.  
  63. #moderatorBar .itemCount
  64. {
  65. background: #2b485c;
  66. padding-left: 6px;
  67. padding-right: 6px;
  68.  
  69. text-align: center;
  70.  
  71. font-weight: bold;
  72.  
  73. border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -khtml-border-radius: 2px;
  74. text-shadow: none;
  75. }
  76.  
  77. #moderatorBar .itemCount.alert
  78. {
  79. background: #e03030;
  80. color: white;
  81. box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -webkit-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -moz-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -khtml-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25);
  82. }
  83.  
  84. #moderatorBar .adminLink
  85. {
  86. float: right;
  87. }
  88.  
  89. #moderatorBar .permissionTest,
  90. #moderatorBar .permissionTest:hover
  91. {
  92. background: #e03030;
  93. color: white;
  94. box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -webkit-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -moz-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25); -khtml-box-shadow: 2px 2px 5px rgba(0,0,0, 0.25);
  95. font-weight: bold;
  96. }
  97.  
  98. /* --- node_list.css --- */
  99.  
  100. .nodeList { zoom: 1; }
  101. .nodeList .node {
  102. zoom: 1;
  103. vertical-align: bottom;
  104. }
  105.  
  106. .nodeList .node.level_1
  107. {
  108. margin-bottom: 20px;
  109. }
  110.  
  111. .nodeList .node.level_1:last-child
  112. {
  113. margin-bottom: 0;
  114. }
  115.  
  116. .nodeList .node.groupNoChildren + .node.groupNoChildren
  117. {
  118. margin-top: -20px;
  119. }
  120.  
  121. .node .nodeInfo
  122. {
  123. overflow: hidden; zoom: 1;
  124. position: relative;
  125. }
  126.  
  127. .node .nodeInfo.primaryContent,
  128. .node .nodeInfo.secondaryContent
  129. {
  130. padding: 0;
  131. }
  132.  
  133. .node .nodeIcon
  134. {
  135. margin: 10px 0 10px 10px;
  136. float: left;
  137. width: 36px;
  138. height: 36px;
  139.  
  140. }
  141.  
  142. .node .forumNodeInfo .nodeIcon,
  143. .node .categoryForumNodeInfo .nodeIcon
  144. {
  145. background-image: url('styles/default/xenforo/node-sprite.png');
  146. background-repeat: no-repeat;
  147. background-position: 0 0;
  148.  
  149. }
  150.  
  151. .node .forumNodeInfo.unread .nodeIcon,
  152. .node .categoryForumNodeInfo.unread .nodeIcon
  153. {
  154. background-image: url('styles/default/xenforo/node-sprite.png');
  155. background-repeat: no-repeat;
  156. background-position: -36px 0;
  157.  
  158. }
  159.  
  160. .node .pageNodeInfo .nodeIcon
  161. {
  162. background-image: url('styles/default/xenforo/node-sprite.png');
  163. background-repeat: no-repeat;
  164. background-position: -72px 0;
  165.  
  166. }
  167.  
  168. .node .linkNodeInfo .nodeIcon
  169. {
  170. background-image: url('styles/default/xenforo/node-sprite.png');
  171. background-repeat: no-repeat;
  172. background-position: -108px 0;
  173.  
  174. }
  175.  
  176. .node .nodeText
  177. {
  178. margin: 10px 270px 10px 56px;
  179.  
  180. }
  181.  
  182. .node .nodeTitle
  183. {
  184. font-size: 12pt;
  185.  
  186. }
  187.  
  188. .node .unread .nodeTitle
  189. {
  190. font-weight: bold;
  191.  
  192. }
  193.  
  194. .node .nodeDescription
  195. {
  196. font-size: 11px;
  197.  
  198. }
  199.  
  200. .hasJs .node .nodeDescriptionTooltip
  201. {
  202. /* will be shown as a tooltip */
  203. display: none;
  204. }
  205.  
  206. .Touch .node .nodeDescriptionTooltip
  207. {
  208. /* touch browsers don't see description tooltips */
  209. display: block;
  210. }
  211.  
  212. .node .nodeStats
  213. {
  214. font-size: 11px;
  215. margin-top: 2px;
  216.  
  217. }
  218.  
  219. .node .nodeLastPost
  220. {
  221. background: #f0f7fc url('styles/default/xenforo/gradients/category-23px-light.png') repeat-x top;
  222. padding: 10px;
  223. border-bottom: 1px solid #d7edfc;
  224.  
  225.  
  226. font-size: 11px;
  227. padding: 3px 10px;
  228. margin: 10px;
  229. border: 1px solid #d7edfc;
  230. border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -khtml-border-radius: 3px;
  231. position: absolute;
  232. top: 0;
  233. right: 0;
  234. line-height: 14px;
  235. white-space: nowrap;
  236. word-wrap: normal;
  237. overflow: hidden;
  238. width: 210px;
  239. height: 28px;
  240.  
  241. }
  242.  
  243. .node .nodeLastPost .lastThreadMeta
  244. {
  245. display: block;
  246. }
  247.  
  248. .node .nodeLastPost .noMessages
  249. {
  250. line-height: 28px;
  251. }
  252.  
  253. .node .nodeControls
  254. {
  255. position: absolute;
  256. top: 0;
  257. right: 242px;
  258. margin: 20px 0;
  259. }
  260.  
  261. .node .tinyIcon
  262. {
  263. background: transparent url('styles/default/xenforo/xenforo-ui-sprite.png') no-repeat -112px -16px;
  264. margin: 1px 4px;
  265. display: block;
  266. white-space: nowrap;
  267. text-indent: 9999px;
  268. overflow: hidden;
  269. opacity: 0.25;
  270. width: 14px;
  271. height: 14px;
  272.  
  273. }
  274.  
  275. .node .nodeInfo:hover .tinyIcon[href],
  276. .Touch .node .tinyIcon
  277. {
  278. opacity: 1;
  279.  
  280. }
  281.  
  282. /*.node .feedIcon
  283. {
  284. background: transparent url('styles/default/xenforo/xenforo-ui-sprite.png') no-repeat -112px -16px;
  285. }*/
  286.  
  287. /* description tooltip */
  288.  
  289. .nodeDescriptionTip
  290. {
  291. padding: 4px 10px;
  292. margin-top: -22px;
  293. line-height: 1.5;
  294. width: 350px;
  295. height: auto;
  296.  
  297. }
  298.  
  299. .nodeDescriptionTip .arrow
  300. {
  301. border: 6px solid transparent;
  302. border-right-color: rgb(0,0,0); border-right-color: rgba(0,0,0, 0.6); _border-right-color: rgb(0,0,0);
  303. border-left: 1px none black;
  304. top: 6px;
  305. left: -6px;
  306. bottom: auto;
  307.  
  308. }
  309.  
  310. /* main area - used for L2 categories and most other nodes */
  311.  
  312. .nodeList .categoryForumNodeInfo,
  313. .nodeList .forumNodeInfo,
  314. .nodeList .pageNodeInfo,
  315. .nodeList .linkNodeInfo
  316. {
  317. background-color: rgb(252, 252, 255);
  318. padding: 10px;
  319. border-bottom: 1px solid #d7edfc;
  320.  
  321.  
  322. padding: 0;
  323. }
  324.  
  325. /* category strip - used for L1 categories and group headers */
  326.  
  327. .nodeList .categoryStrip
  328. {
  329. font-size: 11px;
  330. color: #6d3f03;
  331. background: #f9d9b0 url('styles/default/xenforo/gradients/category-23px-light.png') repeat-x top;
  332. padding: 5px 10px;
  333. margin: 3px auto 0;
  334. border-top: 1px solid #f9d9b0;
  335. border-bottom: 1px solid #f9bc6d;
  336.  
  337.  
  338. padding: 5px 10px;
  339. margin: 0;
  340. border-bottom-color: #f9bc6d;
  341. border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px;
  342. min-height: 6px;
  343.  
  344. }
  345.  
  346. .nodeList .categoryStrip .nodeTitle
  347. {
  348. font-size: 10pt;
  349. color: #6d3f03;
  350.  
  351. }
  352.  
  353. .nodeList .categoryStrip .nodeTitle a
  354. {
  355. color: #6d3f03;
  356. }
  357.  
  358. .nodeList .categoryStrip .nodeDescription
  359. {
  360. font-size: 10px;
  361. color: #6d3f03;
  362.  
  363. }
  364.  
  365. .nodeList .categoryStrip .nodeDescription a
  366. {
  367. color: #6d3f03;
  368. }
  369.  
  370. .nodeList .node.groupNoChildren + .node.groupNoChildren .categoryStrip
  371. {
  372. display: none;
  373. }
  374.  
  375. /* node stats area */
  376.  
  377. .nodeStats
  378. {
  379. overflow: hidden; zoom: 1;
  380. }
  381.  
  382. .nodeStats dl,
  383. .subForumsPopup
  384. {
  385. float: left;
  386. display: block;
  387. margin-right: 3px;
  388. }
  389.  
  390. /*.nodeStats dl,
  391. .subForumsPopup .PopupControl
  392. {
  393. padding-top: 2px;
  394. }*/
  395.  
  396. .subForumsPopup a.PopupControl
  397. {
  398. padding-left: 5px;
  399. padding-right: 5px;
  400. }
  401.  
  402. .subForumsPopup .dt
  403. {
  404. color: rgb(150,150,150);
  405. }
  406.  
  407. .subForumsPopup .PopupOpen .dt
  408. {
  409. color: rgb(20,20,20);
  410. }
  411.  
  412. .subForumsMenu .node .node /* for depths 2+ */
  413. {
  414. padding-left: 10px;
  415. }
  416.  
  417. .subForumsMenu .node .nodeTitle
  418. {
  419. font-size: 11px;
  420. }
  421.  
  422. /** new discussion button below nodelist **/
  423.  
  424. .nodeListNewDiscussionButton
  425. {
  426. margin-top: 10px;
  427. text-align: right;
  428. }
  429.  
  430. /* --- node_page.css --- */
  431.  
  432. .nodeList .page .nodeText
  433. {
  434. margin-right: 10px;
  435. }
  436.  
  437. /* --- sidebar_share_page.css --- */
  438.  
  439. .sidebar .sharePage .shareControl
  440. {
  441. margin-top: 10px;
  442. }
  443.  
  444. .sidebar .sharePage iframe.fb_ltr
  445. {
  446. _width: 200px !important;
  447. }
  448.  
  449. .mast .sharePage .secondaryContent
  450. {
  451. overflow: visible !important;
  452. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement