Advertisement
Guest User

Untitled

a guest
Sep 7th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 22.82 KB | None | 0 0
  1. /**
  2.  * Forums and tables
  3.  *
  4.  * Overwrite default categories/forums layout and common tables settings.
  5.  * Define zebra background colours for even/odd rows and cells.
  6.  */
  7. .forabg,
  8. .forumbg,
  9. .cp-main table.table1 {
  10.     margin-bottom: 15px;
  11.     padding: 0;
  12.     border-bottom: 3px solid #cacaca;
  13.     border-radius: 5px 5px 0 0;
  14.     background: #1f3e59; /* Fallback for older browsers */
  15.     background: linear-gradient(to bottom, #1f3e59 0%, #153753 100%);
  16. }
  17.  
  18. ul.forums,
  19. ul.topics,
  20. table.table1 tbody {
  21.     background: #fafcfe;
  22. }
  23.  
  24. /* Row (single forum) */
  25. ul.topiclist li {
  26.     color: #536482;
  27. }
  28.  
  29. table.table1 tbody tr {
  30.     border: 0;
  31. }
  32.  
  33. li.row,
  34. .cp-main .panel li.row,
  35. table.table1 tbody tr {
  36.     border-top: 1px solid #fff;
  37.     border-bottom: 0;
  38. }
  39.  
  40. ul.topics .bg1,
  41. ul.topics .bg2,
  42. li.row:hover,
  43. table.table1 tr.bg1,
  44. table.table1 tr.bg2,
  45. table.table1 tbody tr:hover {
  46.     background: none;
  47. }
  48.  
  49. /* Different background for even rows */
  50. li.row:nth-child(even),
  51. table.table1 tbody tr:nth-child(even) {
  52.     background: #f0f4f7;
  53. }
  54.  
  55. .forumbg ul.topiclist li.reported dd:nth-child(even),
  56. li.reported,
  57. li.reported:hover {
  58.     background: #f7ecef !important;
  59. }
  60.  
  61. li.row strong {
  62.     color: inherit;
  63.     font-weight: bold;
  64. }
  65.  
  66. ul.topiclist li.header dl,
  67. ul.topiclist li.row dl {
  68.     display: table;
  69.     table-layout: fixed;
  70.     width: 100%;
  71.     padding: 0;
  72. }
  73.  
  74. /* Cell  */
  75. ul.topiclist dt,
  76. ul.topiclist dd,
  77. table.table1 tbody td {
  78.     padding: 7px;
  79.     border: 0;
  80.     vertical-align: middle;
  81.     line-height: 18px;
  82.     font-size: 12px;
  83. }
  84.  
  85. ul.topiclist dt,
  86. ul.topiclist dd {
  87.     display: table-cell;
  88.     float: none;
  89. }
  90.  
  91. /* Different background in odd columns */
  92. ul.topiclist li.row dt:nth-child(even),
  93. ul.topiclist li.row dd:nth-child(even),
  94. .forabg ul.topiclist li.row dt:nth-child(odd),
  95. .forabg ul.topiclist li.row dd:nth-child(odd),
  96. .forumbg ul.topiclist li.row dt:nth-child(odd),
  97. .forumbg ul.topiclist li.row dd:nth-child(odd),
  98. table.table1 tbody td:nth-child(even) {
  99.     background-color: #ecf2f7;
  100. }
  101.  
  102. .forabg ul.topiclist li.row dt:nth-child(even),
  103. .forabg ul.topiclist li.row dd:nth-child(even),
  104. .forumbg ul.topiclist li.row dt:nth-child(even),
  105. .forumbg ul.topiclist li.row dd:nth-child(even) {
  106.     background-color: #fafcfe;
  107. }
  108.  
  109. ul.topiclist li.row:nth-child(even) dt:nth-child(even),
  110. ul.topiclist li.row:nth-child(even) dd:nth-child(even),
  111. .forabg ul.topiclist li.row:nth-child(even) dt:nth-child(odd),
  112. .forabg ul.topiclist li.row:nth-child(even) dd:nth-child(odd),
  113. .forumbg ul.topiclist li.row:nth-child(even) dt:nth-child(odd),
  114. .forumbg ul.topiclist li.row:nth-child(even) dd:nth-child(odd),
  115. table.table1 tbody tr:nth-child(even) td:nth-child(even) {
  116.     background-color: #e4ebf2;
  117. }
  118.  
  119. .forabg ul.topiclist li.row:nth-child(even) dt:nth-child(even),
  120. .forabg ul.topiclist li.row:nth-child(even) dd:nth-child(even),
  121. .forumbg ul.topiclist li.row:nth-child(even) dt:nth-child(even),
  122. .forumbg ul.topiclist li.row:nth-child(even) dd:nth-child(even) {
  123.     background-color: #f0f4f7;
  124. }
  125.  
  126. .forumbg ul.topiclist li.reported dt:nth-child(odd),
  127. .forumbg ul.topiclist li.reported dd:nth-child(odd),
  128. ul.topiclist li.reported dt:nth-child(even),
  129. ul.topiclist li.reported dd:nth-child(even) {
  130.     background-color: #f4e1e6 !important;
  131. }
  132.  
  133. dd.lastpost span,
  134. ul.topiclist dd.searchby span,
  135. ul.topiclist dd.info span,
  136. ul.topiclist dd.time span,
  137. dd.redirect span,
  138. dd.moderation span {
  139.     padding: 0;
  140. }
  141.  
  142. /* Category header */
  143. ul.topiclist li.header dt,
  144. ul.topiclist li.header dd,
  145. table.table1 thead th,
  146. .cp-main table.table1 thead th {
  147.     padding: 9px 7px;
  148.     text-align: center;
  149.     vertical-align: middle;
  150.     line-height: 18px;
  151.     font-weight: normal;
  152. }
  153.  
  154. .forabg ul.topiclist li.header dt,
  155. .forumbg ul.topiclist li.header dt {
  156.     width: auto;
  157. }
  158.  
  159. li.header dl.row-item dt .list-inner,
  160. ul.topiclist dt .list-inner,
  161. ul.topiclist.missing-column dt .list-inner,
  162. ul.topiclist.two-long-columns dt .list-inner {
  163.     margin: 0;
  164. }
  165.  
  166. /* Subforums list on index */
  167. ul.topiclist li.row a.subforum {
  168.     padding: 0;
  169.     background: none;
  170.     white-space: nowrap;
  171. }
  172.  
  173. ul.topiclist li.row a.subforum:before {
  174.     display: inline-block;
  175.     margin-right: 4px;
  176.     padding-left: 1px;
  177.     color: #6b6b6b;
  178.     font-family: FontAwesome;
  179. }
  180.  
  181. ul.topiclist li.row a.subforum.unread:before {
  182.     color: #bc2a4d;
  183. }
  184.  
  185. /* Specific colums settings */
  186. ul.topiclist.forums li.row dt,
  187. ul.topiclist.topics li.row dt {
  188.     width: 55px;
  189.     padding: 0;
  190.     background-repeat: no-repeat;
  191.     background-position: center center;
  192.     text-align: center;
  193. }
  194.  
  195. /* Topic icon */
  196. .forumbg ul.topiclist li.row dt img {
  197.     margin-top: 20px;
  198.     margin-right: -20px;
  199. }
  200.  
  201. a.lastsubject {
  202.     font-weight: normal;
  203. }
  204.  
  205. dd.topics,
  206. dd.posts {
  207.     width: 132px;
  208. }
  209.  
  210. dd.lastpost {
  211.     width: 250px;
  212. }
  213.  
  214. /* Last post author and date icons */
  215. dd.lastpost .fa {
  216.     color: #536482;
  217. }
  218.  
  219. dd.redirect {
  220.     width: 382px;
  221.     text-align: center;
  222. }
  223.  
  224. /* Space between last category and quick login/statistics */
  225. .online-list {
  226.     margin-top: 30px;
  227. }
  228.  
  229. /* Action-bars (container for post/reply buttons, pagination, etc.) */
  230. .action-bar {
  231.     margin-bottom: 9px;
  232.     line-height: 19px;
  233.     font-size: 13px;
  234. }
  235.  
  236. /**
  237.  * Tables
  238.  *
  239.  * Overwrite specific tables settings.
  240.  */
  241. .forumbg-table > .inner {
  242.     margin: 0;
  243. }
  244.  
  245. table.table1 {
  246.     border-collapse: collapse;
  247. }
  248.  
  249. table.table1 td {
  250.     color: #525252;
  251. }
  252.  
  253. /* Recent searches tables */
  254. .section-search .forumbg-table {
  255.     margin-top: 15px;
  256. }
  257.  
  258. .section-search .forumbg-table thead th,
  259. .section-search .forumbg-table .active {
  260.     text-align: center;
  261. }
  262.  
  263. .cp-main table.table1 thead th {
  264.     border-bottom: 0;
  265.     color: #fff;
  266.     text-align: left;
  267. }
  268.  
  269. /**
  270.  * Panels
  271.  */
  272. .panel {
  273.     margin-bottom: 5px;
  274.     padding-top: 5px;
  275.     padding-bottom: 5px;
  276.     border-radius: 7px;
  277.     background-color: #ecf1f3;
  278.     color: #536482;
  279. }
  280.  
  281. .bg1,
  282. .bg3 {
  283.     background-color: #e1ebf5;
  284. }
  285.  
  286. .bg2 {
  287.     background-color: #e1ebf5;
  288. }
  289.  
  290. .content {
  291.     color: #333;
  292. }
  293.  
  294. /* Base font in panels */
  295. fieldset,
  296. dl.faq,
  297. .content dl.faq,
  298. .content p,
  299. .panel p {
  300.     line-height: 18px;
  301.     font-family: Tahoma, Arial, Helvetica, sans-serif;
  302.     font-size: 12px;
  303. }
  304.  
  305. /* Headers in panels */
  306. .panel h2,
  307. .panel h3,
  308. .content h2 {
  309.     margin-bottom: 10px;
  310.     padding-bottom: 8px;
  311.     border-color: #b7c9d7;
  312.     color: #115098;
  313.     text-transform: none;
  314.     font-size: 16px;
  315.     font-weight: normal;
  316. }
  317.  
  318. h2.solo {
  319.     margin-bottom: 10px;
  320. }
  321.  
  322. /**
  323.  * FAQ
  324.  */
  325. dl.faq {
  326.     margin-top: 7px;
  327.     margin-bottom: 16px;
  328. }
  329.  
  330. dl.faq:last-child {
  331.     margin-bottom: 7px;
  332. }
  333.  
  334. dl.faq dt {
  335.     color: #3f3f3f;
  336. }
  337.  
  338. /**
  339.  * Posts and private messages
  340.  */
  341. .post {
  342.     position: relative;
  343.     margin-bottom: 5px;
  344.     padding: 0;
  345. }
  346.  
  347. .post .inner {
  348.     display: table;
  349.     table-layout: fixed;
  350.     width: 100%;
  351. }
  352.  
  353. .online {
  354.     background-image: none;
  355. }
  356.  
  357. .post.bg1 {
  358.     background: #eef3f8;
  359. }
  360.  
  361. .post.bg2 {
  362.     background: #e1ebf5;
  363. }
  364.  
  365. .post.bg1 .postprofile,
  366. .post.bg1 .postbody {
  367.     background-color: #eef3f8;
  368. }
  369.  
  370. .post.bg2 .postprofile,
  371. .post.bg2 .postbody {
  372.     background-color: #e1ebf5;
  373. }
  374.  
  375. .post.reported .postprofile,
  376. .post.reported .postbody {
  377.     background-color: #f4e1e6;
  378. }
  379.  
  380. .inventea-online {
  381.     display: inline-block;
  382.     margin-bottom: 18px;
  383.     padding: 3px 8px 1px;
  384.     border-bottom: 3px solid #0c9076;
  385.     border-radius: 5px;
  386.     background: #0ead8e;
  387.     color: #fff;
  388.     text-transform: uppercase;
  389. }
  390.  
  391. .postprofile,
  392. .post .postbody {
  393.     display: table-cell;
  394.     float: none;
  395.     clear: none;
  396.     padding: 18px;
  397. }
  398.  
  399. /* Bottom padding is a place for back to top button */
  400. .post .postbody {
  401.     padding-bottom: 36px;
  402. }
  403.  
  404. /* User profile */
  405. .postprofile,
  406. .pm .postprofile,
  407. .search .postprofile {
  408.     min-height: initial;
  409.     width: 23%;
  410.     margin: 0;
  411.     border: 0;
  412.     border-top-left-radius: 7px;
  413.     border-bottom-left-radius: 7px;
  414.     color: #525252;
  415.     vertical-align: top;
  416. }
  417.  
  418. .postprofile dt,
  419. .postprofile dd {
  420.     margin: 0;
  421.     line-height: 18px;
  422. }
  423.  
  424. .postprofile dt,
  425. .postprofile dd.profile-rank {
  426.     text-align: center;
  427. }
  428.  
  429. .postprofile strong {
  430.     color: #414141;
  431. }
  432.  
  433. .postprofile .has-avatar .avatar-container {
  434.     margin-bottom: 14px;
  435. }
  436.  
  437. @media only screen and (min-width: 701px) {
  438.     .postprofile .avatar {
  439.         display: inline;
  440.         float: none;
  441.     }
  442.  
  443.     .postprofile .avatar img {
  444.         display: inline;
  445.     }
  446. }
  447.  
  448. .postprofile dt.no-profile-rank,
  449. .postprofile dd.profile-rank,
  450. .postprofile .search-result-date {
  451.     margin-bottom: 18px;
  452. }
  453.  
  454. ul.profile-icons {
  455.     padding-top: 10px;
  456. }
  457.  
  458. /* Post message */
  459. .post .postbody,
  460. .search .postbody {
  461.     width: 77%;
  462. }
  463.  
  464. .post .postbody {
  465.     border-top-right-radius: 7px;
  466.     border-bottom-right-radius: 7px;
  467. }
  468.  
  469. .postbody h3,
  470. .postbody h3.first {
  471.     margin: 0 !important;
  472.     padding: 0;
  473.     line-height: 21px;
  474.     font-size: 16px;
  475.     font-weight: bold;
  476. }
  477.  
  478. .postbody h3 img {
  479.     vertical-align: middle;
  480. }
  481.  
  482. p.author {
  483.     margin: 1px 0 10px;
  484.     padding: 0 0 10px;
  485.     border-bottom: 1px dotted #b7c9d7;
  486.     color: #536482;
  487.     line-height: 18px;
  488.     font-family: Tahoma, Arial, Helvetica, sans-serif;
  489. }
  490.  
  491. .postbody .content,
  492. .post:target .content {
  493.     overflow: auto;
  494.     color: #333;
  495.     line-height: 21px;
  496.     font-size: 14px;
  497.     font-family: Tahoma, Arial, Helvetica, sans-serif;
  498. }
  499.  
  500. .section-viewtopic .postbody .content {
  501.     max-width: 832px;
  502. }
  503.  
  504. .post .signature {
  505.     clear: none;
  506.     margin-top: 10px;
  507.     padding-top: 10px;
  508.     border-top: 1px dotted #b7c9d7;
  509.     color: #525252;
  510.     line-height: 18px;
  511.     font-size: 12px;
  512. }
  513.  
  514. /* Private message */
  515. .cp-main .post {
  516.     border-radius: 7px;
  517. }
  518.  
  519. .cp-main .post .postbody:before {
  520.     content: none;
  521. }
  522.  
  523. .cp-main .postbody p {
  524.     font-size: 12px;
  525. }
  526.  
  527. /* Post message preview (posting.php) */
  528. .postform .content {
  529.     padding: 10px 18px;
  530.     border-radius: 7px;
  531. }
  532.  
  533. /* Poll preview background */
  534. .section-posting .preview .content {
  535.     background: #e1ebf5;
  536. }
  537.  
  538. .postform .content .author {
  539.     margin-bottom: 12px;
  540.     padding: 0;
  541.     border-bottom: 0;
  542. }
  543.  
  544. .postform .postbody,
  545. .topicreview .postbody {
  546.     padding-bottom: 18px;
  547.     border-radius: 7px;
  548. }
  549.  
  550. .topicreview .postbody {
  551.     width: 100%;
  552. }
  553.  
  554. .postform .postbody:before {
  555.     content: none;
  556. }
  557.  
  558. .postform .postbody h3 {
  559.     margin-bottom: 9px !important;
  560.     padding-bottom: 9px;
  561.     border-bottom: 1px dotted #c2c2c2;
  562. }
  563.  
  564. .postform .postbody .content {
  565.     padding: 0;
  566.     border-radius: 0;
  567. }
  568.  
  569. /* Topic review */
  570. .topicreview .postbody h3 {
  571.     margin: 0 !important;
  572.     padding: 0;
  573.     border: 0;
  574. }
  575.  
  576. .topicreview .content {
  577.     background: inherit;
  578. }
  579.  
  580. .topicreview .postbody .right-box {
  581.     margin-right: 5px;
  582.     line-height: 28px;
  583. }
  584.  
  585. /* Post related links */
  586. .postprofile a:link,
  587. .postprofile a:visited,
  588. .search .postprofile a {
  589.     color: #105289;
  590. }
  591.  
  592. .postprofile a:focus,
  593. .postprofile a:hover,
  594. .postprofile a:active,
  595. .search .postprofile a:focus,
  596. .search .postprofile a:hover,
  597. .search .postprofile a:active {
  598.     color: #bc2a4d;
  599.     text-decoration: underline;
  600. }
  601.  
  602. .back2top {
  603.     position: absolute;
  604.     right: 18px;
  605.     bottom: 16px;
  606.     height: auto;
  607. }
  608.  
  609. /* Polls */
  610. fieldset.polls {
  611.     font-family: Tahoma, Arial, Helvetica, sans-serif;
  612. }
  613.  
  614. fieldset.polls dl {
  615.     margin: 0;
  616.     padding: 0;
  617.     border-color: #dadada;
  618.     color: #525252;
  619. }
  620.  
  621. fieldset.polls dt,
  622. fieldset.polls dd {
  623.     line-height: 32px;
  624.     font-size: 12px;
  625. }
  626.  
  627. fieldset.polls dd.resultbar {
  628.     margin-top: 7px;
  629.     margin-right: 5px;
  630.     line-height: normal;
  631. }
  632.  
  633. /* Poll bar */
  634. fieldset.polls dd div {
  635.     min-width: 8px;
  636.     padding: 1px 3px;
  637. }
  638.  
  639. /* Post related features */
  640. .attachbox {
  641.     clear: right;
  642.     padding: 7px;
  643.     border: 1px solid #ccc;
  644. }
  645.  
  646. .inline-attachment {
  647.     margin: 15px 0;
  648. }
  649.  
  650. .attachbox dt,
  651. dl.file {
  652.     font-family: Tahoma, Arial, Helvetica, sans-serif;
  653. }
  654.  
  655. .attachbox dt {
  656.     padding-bottom: 3px;
  657.     line-height: 14px;
  658.     font-weight: bold;
  659. }
  660.  
  661. .attachbox dd {
  662.     padding-top: 6px;
  663.     border-color: #ccc;
  664. }
  665.  
  666. dl.file {
  667.     line-height: 18px;
  668. }
  669.  
  670. dl.file dd {
  671.     color: #525252;
  672.     font-size: 12px;
  673. }
  674.  
  675. dl.file .attach-image + dd {
  676.     margin-top: 4px;
  677. }
  678.  
  679. .attach-image img {
  680.     max-width: 100%;
  681.     border: 0;
  682. }
  683.  
  684. dl.thumbnail img {
  685.     padding: 0;
  686.     border: 0;
  687. }
  688.  
  689. dl.thumbnail dt a:hover,
  690. dl.thumbnail dt a:hover img {
  691.     border: 0;
  692.     background: inherit;
  693. }
  694.  
  695. dl.codebox {
  696.     margin-top: 15px;
  697.     margin-bottom: 15px;
  698.     padding: 3px 5px;
  699.     border-color: #ccc;
  700. }
  701.  
  702. dl.codebox dt {
  703.     padding-bottom: 3px;
  704.     font-size: 12px;
  705. }
  706.  
  707. dl.codebox code {
  708.     font-size: 12px;
  709.     line-height: 16px;
  710.     font-family: Consolas, Monaco, "Lucida Console", monospace;
  711. }
  712.  
  713. blockquote,
  714. blockquote.uncited {
  715.     padding: 7px;
  716. }
  717.  
  718. blockquote {
  719.     margin-top: 15px;
  720.     margin-bottom: 15px;
  721.     border-color: #ddd;
  722.     background: #fbfbfb;
  723.     font-size: 14px;
  724. }
  725.  
  726. blockquote blockquote {
  727.     background: #f1f1f1;
  728. }
  729.  
  730. blockquote blockquote blockquote {
  731.     border-color: #d5d5d5;
  732.     background: #e9e9e9;
  733. }
  734.  
  735. /* Quote icon before "XYZ wrote:" */
  736. blockquote:before {
  737.     content: "\f10d";
  738.     display: block;
  739.     font-family: FontAwesome;
  740.     font-size: 14px;
  741. }
  742.  
  743. blockquote cite {
  744.     margin-top: -22px;
  745.     font-size: 14px;
  746. }
  747.  
  748. a.postlink {
  749.     border-bottom: 1px dotted #105289;
  750.     color: #105289;
  751. }
  752.  
  753. a.postlink:visited {
  754.     color: #557fa1;
  755. }
  756.  
  757. a.postlink:active,
  758. a.postlink:focus,
  759. a.postlink:hover {
  760.     border-color: #bc2a4d;
  761.     background: none;
  762.     color: #bc2a4d;
  763. }
  764.  
  765. .signature a,
  766. .signature a:active,
  767. .signature a:focus,
  768. .signature a:hover {
  769.     text-decoration: none;
  770. }
  771.  
  772. .signature a:active,
  773. .signature a:focus,
  774. .signature a:hover {
  775.     border-bottom: 1px dotted #bc2a4d;
  776. }
  777.  
  778. /* Profile and post buttons */
  779. .postprofile ul.profile-icons li,
  780. .postprofile ul.profile-icons li a,
  781. .postbody ul.profile-icons li,
  782. .postbody ul.profile-icons li a {
  783.     width: auto;
  784.     height: auto;
  785.     margin: 0;
  786.     background: none;
  787.     font-weight: normal;
  788. }
  789.  
  790. .postprofile ul.profile-icons li {
  791.     margin-top: 8px;
  792.     margin-right: 5px;
  793. }
  794.  
  795. .postbody ul.profile-icons li {
  796.     margin-left: 5px;
  797. }
  798.  
  799. .postprofile ul.profile-icons li a,
  800. .postbody ul.profile-icons li a {
  801.     display: block;
  802.     box-sizing: border-box;
  803.     width: 28px;
  804.     padding-top: 5px;
  805.     padding-bottom: 3px;
  806.     border-bottom: 3px solid #c5c5c5;
  807.     border-radius: 5px;
  808.     background: #dfdfdf;
  809.     color: #6b6b6b;
  810.     text-transform: uppercase;
  811.     text-align: center;
  812.     line-height: 17px;
  813.     font-size: 12px;
  814. }
  815.  
  816. /* More dark profile icons */
  817. .postprofile ul.profile-icons li a {
  818.     border-color: #c5c5c5;
  819.     background: #dfdfdf;
  820. }
  821.  
  822. .postprofile ul.profile-icons li a:focus,
  823. .postprofile ul.profile-icons li a:hover,
  824. .postprofile ul.profile-icons li a:active,
  825. .postbody ul.profile-icons li a:focus,
  826. .postbody ul.profile-icons li a:hover,
  827. .postbody ul.profile-icons li a:active {
  828.     border-color: #91203c;
  829.     background: #bc2a4d;
  830.     color: #fff;
  831.     text-decoration: none;
  832. }
  833.  
  834. .postprofile ul.profile-icons li a:before,
  835. .postbody ul.profile-icons li a:before {
  836.     display: block;
  837.     font-family: FontAwesome;
  838.     font-size: 14px;
  839. }
  840.  
  841. .pm-icon a:before       { content: "\f075"; }
  842. .email-icon a:before    { content: "\f0e0"; }
  843. .web-icon a:before      { content: "\f0ac"; }
  844. .msnm-icon a:before     { content: "\f17a"; }
  845. .icq-icon a:before      { content: "\f069"; }
  846. .yahoo-icon a:before    { content: "\f19e"; }
  847. .aim-icon a:before      { content: "\f183"; }
  848. .jabber-icon a:before   { content: "\f0eb"; }
  849. .edit-icon a:before     { content: "\f040"; }
  850. .delete-icon a:before   { content: "\f00d"; }
  851. .report-icon a:before   { content: "\f071"; }
  852. .warn-icon a:before     { content: "\f056"; }
  853. .info-icon a:before     { content: "\f129"; }
  854. .quote-icon a:before    { content: "\f10d"; }
  855.  
  856. /* Who is online */
  857. .inventea-quickmod + h3 {
  858.     clear: both;
  859. }
  860.  
  861. /**
  862.  * Search results
  863.  */
  864. .section-search .topic-actions {
  865.     margin-bottom: 12px;
  866. }
  867.  
  868. .section-search .search-box {
  869.     margin-left: 0;
  870. }
  871.  
  872. /* Search these results input */
  873. .section-search #add_keywords {
  874.     width: auto;
  875. }
  876.  
  877. .section-search .postprofile {
  878.     color: #414141;
  879. }
  880.  
  881. .section-search .postprofile strong {
  882.     color: #525252;
  883. }
  884.  
  885. /* Search found matches */
  886. .section-search hr + .linklist {
  887.     margin-top: 14px;
  888.     padding-top: 2px;
  889. }
  890.  
  891. /**
  892.  * Memberlist
  893.  */
  894. .search_memberlist {
  895.     margin-bottom: 28px;
  896. }
  897.  
  898. .search_memberlist .panel {
  899.     padding-top: 8px;
  900. }
  901.  
  902. /* Fix margins in member filtering panel */
  903. .panel ul.linklist li {
  904.     margin-bottom: 0;
  905.     padding: 5px 0;
  906. }
  907.  
  908. .section-memberlist .panel + .forumbg,
  909. .simple-wrap .panel + .forumbg {
  910.     margin-top: 7px;
  911. }
  912.  
  913. .section-memberlist .panel ul.linklist li strong,
  914. .simple-wrap .panel ul.linklist li strong {
  915.     font-size: 12px !important;
  916. }
  917.  
  918. /* Viewprofile */
  919. .viewprofile .postbody {
  920.     width: auto;
  921. }
  922.  
  923. .viewprofile .inventea-profile {
  924.     padding-top: 12px;
  925.     padding-bottom: 12px;
  926.     line-height: 18px;
  927. }
  928.  
  929. .viewprofile .signature {
  930.     margin-bottom: 10px;
  931.     color: #414141;
  932.     line-height: 18px;
  933.     font-size: 12px;
  934. }
  935.  
  936. /**
  937.  * Buttons
  938.  *
  939.  * Overwrite old graphic buttons with new CSS one using Font Awesome icons.
  940.  */
  941. .topic-actions {
  942.     overflow: hidden;
  943.     margin-bottom: 1px;
  944.     line-height: 18px;
  945.     font-size: 12px;
  946. }
  947.  
  948. hr + .topic-actions {
  949.     margin-top: 8px;
  950. }
  951.  
  952. .buttons div {
  953.     width: auto !important;
  954.     height: auto !important;
  955. }
  956.  
  957. .buttons div a {
  958.     display: block;
  959.     width: auto;
  960.     padding: 8px 10px 6px;
  961.     border-bottom: 3px solid #ccc;
  962.     border-radius: 5px;
  963.     background: #e9e9e9;
  964.     color: #6b6b6b;
  965.     text-transform: uppercase;
  966.     line-height: 17px;
  967.     font-size: 12px;
  968. }
  969.  
  970. .buttons div a:focus,
  971. .buttons div a:hover,
  972. .buttons div a:active {
  973.     border-color: #91203c;
  974.     background: #bc2a4d;
  975.     color: #fff;
  976.     text-decoration: none;
  977. }
  978.  
  979. .buttons div span {
  980.     position: static;
  981.     float: left;
  982.     width: auto;
  983.     height: auto;
  984.     background: none;
  985. }
  986.  
  987. .buttons div span:before {
  988.     display: block;
  989.     margin-right: 7px;
  990.     font-family: FontAwesome;
  991.     font-size: 14px;
  992. }
  993.  
  994. .forwardpm-icon span:before     { content: "\f064"; }
  995. .locked-icon span:before        { content: "\f023"; }
  996. .pmreply-icon span:before       { content: "\f112"; }
  997. .reply-icon span:before         { content: "\f112"; }
  998. .newpm-icon span:before         { content: "\f055"; }
  999. .post-icon span:before          { content: "\f055"; }
  1000.  
  1001. /**
  1002.  * Miscellaneous
  1003.  */
  1004. .inventea-no-items {
  1005.     display: block;
  1006.     text-align: center;
  1007. }
  1008.  
  1009. /* Forums layout related links */
  1010. .search-box a:hover,
  1011. .search-box a:active,
  1012. .navbg a:hover,
  1013. .navbg a:active,
  1014. .forumbg .header a:hover,
  1015. .forumbg .header a:active,
  1016. .forabg .header a:hover,
  1017. .forabg .header a:active,
  1018. th a:link,
  1019. th a:visited,
  1020. th a:hover,
  1021. th a:active {
  1022.     color: #fff;
  1023. }
  1024.  
  1025. a.forumtitle:hover,
  1026. a.forumtitle:active,
  1027. a.topictitle:hover,
  1028. a.topictitle:active {
  1029.     color: #bc2a4d;
  1030. }
  1031.  
  1032. a.topictitle:visited {
  1033.     color: #557fa1;
  1034. }
  1035.  
  1036. a.top {
  1037.     overflow: visible;
  1038.     width: auto;
  1039.     height: auto;
  1040.     background: none;
  1041.     color: #b7c9d7;
  1042.     text-indent: initial;
  1043.     letter-spacing: normal;
  1044.     font-size: 14px;
  1045. }
  1046.  
  1047. a.top:focus,
  1048. a.top:hover,
  1049. a.top:active {
  1050.     color: #8fb2cf;
  1051. }
  1052.  
  1053. a.top2 {
  1054.     display: none;
  1055.     background-image: none;
  1056. }
  1057.  
  1058. a.left,
  1059. a.left:active,
  1060. a.left:visited,
  1061. a.right,
  1062. a.right:active,
  1063. a.right:visited {
  1064.     padding: 0;
  1065.     background: none;
  1066. }
  1067.  
  1068. a.left:hover,
  1069. a.right:hover {
  1070.     text-decoration: underline;
  1071.     color: #bc2a4d;
  1072. }
  1073.  
  1074. a.left:before,
  1075. a.right:after {
  1076.     display: inline-block;
  1077.     color: #959595;
  1078.     font-family: FontAwesome;
  1079. }
  1080.  
  1081. a.left:before {
  1082.     content: "\f060";
  1083.     margin-right: 6px;
  1084. }
  1085.  
  1086. a.right:after {
  1087.     content: "\f061";
  1088.     margin-left: 6px;
  1089. }
  1090.  
  1091. hr.dashed {
  1092.     border-top: 1px dotted #c2c2c2;
  1093. }
  1094.  
  1095. /**
  1096.  * Forum icons & Topic icons
  1097.  */
  1098. .global_read                    { background-image: url("./images/announce_read.gif"); }
  1099. .global_read_mine               { background-image: url("./images/announce_read_mine.gif"); }
  1100. .global_read_locked             { background-image: url("./images/announce_read_locked.gif"); }
  1101. .global_read_locked_mine        { background-image: url("./images/announce_read_locked_mine.gif"); }
  1102. .global_unread                  { background-image: url("./images/announce_unread.gif"); }
  1103. .global_unread_mine             { background-image: url("./images/announce_unread_mine.gif"); }
  1104. .global_unread_locked           { background-image: url("./images/announce_unread_locked.gif"); }
  1105. .global_unread_locked_mine      { background-image: url("./images/announce_unread_locked_mine.gif"); }
  1106.  
  1107. .announce_read                  { background-image: url("./images/announce_read.gif"); }
  1108. .announce_read_mine             { background-image: url("./images/announce_read_mine.gif"); }
  1109. .announce_read_locked           { background-image: url("./images/announce_read_locked.gif"); }
  1110. .announce_read_locked_mine      { background-image: url("./images/announce_read_locked_mine.gif"); }
  1111. .announce_unread                { background-image: url("./images/announce_unread.gif"); }
  1112. .announce_unread_mine           { background-image: url("./images/announce_unread_mine.gif"); }
  1113. .announce_unread_locked         { background-image: url("./images/announce_unread_locked.gif"); }
  1114. .announce_unread_locked_mine    { background-image: url("./images/announce_unread_locked_mine.gif"); }
  1115.  
  1116. .forum_link                     { background-image: url("./images/forum_link.gif"); }
  1117. .forum_read                     { background-image: url("./images/forum_read.gif"); }
  1118. .forum_read_locked              { background-image: url("./images/forum_read_locked.gif"); }
  1119. .forum_read_subforum            { background-image: url("./images/forum_read_subforum.gif"); }
  1120. .forum_unread                   { background-image: url("./images/forum_unread.gif"); }
  1121. .forum_unread_locked            { background-image: url("./images/forum_unread_locked.gif"); }
  1122. .forum_unread_subforum          { background-image: url("./images/forum_unread_subforum.gif"); }
  1123.  
  1124. .sticky_read                    { background-image: url("./images/sticky_read.gif"); }
  1125. .sticky_read_mine               { background-image: url("./images/sticky_read_mine.gif"); }
  1126. .sticky_read_locked             { background-image: url("./images/sticky_read_locked.gif"); }
  1127. .sticky_read_locked_mine        { background-image: url("./images/sticky_read_locked_mine.gif"); }
  1128. .sticky_unread                  { background-image: url("./images/sticky_unread.gif"); }
  1129. .sticky_unread_mine             { background-image: url("./images/sticky_unread_mine.gif"); }
  1130. .sticky_unread_locked           { background-image: url("./images/sticky_unread_locked.gif"); }
  1131. .sticky_unread_locked_mine      { background-image: url("./images/sticky_unread_locked_mine.gif"); }
  1132.  
  1133. .topic_moved                    { background-image: url("./images/topic_moved.gif"); }
  1134. .topic_read                     { background-image: url("./images/topic_read.gif"); }
  1135. .topic_read_mine                { background-image: url("./images/topic_read_mine.gif"); }
  1136. .topic_read_hot                 { background-image: url("./images/topic_read_hot.gif"); }
  1137. .topic_read_hot_mine            { background-image: url("./images/topic_read_hot_mine.gif"); }
  1138. .topic_read_locked              { background-image: url("./images/topic_read_locked.gif"); }
  1139. .topic_read_locked_mine         { background-image: url("./images/topic_read_locked_mine.gif"); }
  1140. .topic_unread                   { background-image: url("./images/topic_unread.gif"); }
  1141. .topic_unread_mine              { background-image: url("./images/topic_unread_mine.gif"); }
  1142. .topic_unread_hot               { background-image: url("./images/topic_unread_hot.gif"); }
  1143. .topic_unread_hot_mine          { background-image: url("./images/topic_unread_hot_mine.gif"); }
  1144. .topic_unread_locked            { background-image: url("./images/topic_unread_locked.gif"); }
  1145. .topic_unread_locked_mine       { background-image: url("./images/topic_unread_locked_mine.gif"); }
  1146.  
  1147. .pm_read                        { background-image: url("./images/topic_read.gif"); }
  1148. .pm_unread                      { background-image: url("./images/topic_unread.gif"); }
  1149.  
  1150. ul.topiclist li.row dd {
  1151.     padding: 0px !important;
  1152.     margin-bottom: -995px;
  1153. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement