Contributing back some bug fixes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

global.css 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  1. .box h3 {
  2. font-size: 140%;
  3. }
  4. .box h4 {
  5. font-size: 130%;
  6. }
  7. .box h5 {
  8. font-size: 120%;
  9. }
  10. .box h6 {
  11. font-size: 110%;
  12. }
  13. .thin {
  14. box-sizing: border-box;
  15. }
  16. .flex_input_container {
  17. display: flex;
  18. }
  19. .flex_input_container > input[type=text]{
  20. flex-grow: 1;
  21. box-sizing: border-box;
  22. width: 50%;
  23. }
  24. input, textarea {
  25. border: 1px solid #c7c7c7;
  26. background-color: white;
  27. padding: 10px 9px;
  28. color: black;
  29. outline: none;
  30. }
  31. select {
  32. padding: 5px 10px;
  33. background-color: white;
  34. border: 1px solid #c7c7c7;
  35. color: black;
  36. border-radius: 0px;
  37. outline: 0;
  38. -webkit-appearance: none;
  39. -moz-appearance: none;
  40. appearance: none;
  41. }
  42. h2 .group_cat {
  43. height: 16px;
  44. width: 16px;
  45. margin: 0 8px;
  46. display: inline-block;
  47. background-size: 16px 16px;
  48. }
  49. code {
  50. white-space: pre;
  51. }
  52. pre > br, code > br {
  53. line-height: 0px;
  54. display: none;
  55. }
  56. .center {
  57. text-align: center;
  58. }
  59. .collage_images {
  60. padding: 0px;
  61. width: 100%;
  62. border-collapse: collapse;
  63. font-size: 0;
  64. }
  65. .collage_images {
  66. display: block;
  67. }
  68. ul.collage_images li {
  69. border: none;
  70. float: left;
  71. margin: 0;
  72. /* width: 118px;
  73. height: 118px;
  74. width: 146px; */
  75. width: 146px;
  76. list-style: none;
  77. list-style-type: none;
  78. }
  79. ul.collage_images li a {
  80. display: block;
  81. /* height: 118px; */
  82. width: 100%;
  83. overflow: hidden;
  84. }
  85. ul.collage_images img {
  86. /* height: 118px;
  87. width: 118px; */
  88. }
  89. div.collage_image {
  90. width: 20%;
  91. display: inline-block;
  92. }
  93. [data-toggle-target], [data-quote-jump], .clickable {
  94. cursor: pointer;
  95. }
  96. button, input[type=button], input[type=submit] {
  97. cursor: pointer;
  98. background: #fff;
  99. font-size: 11px;
  100. padding: 10px 9px;
  101. border: none;
  102. color: #000;
  103. }
  104. .spoilerButton {
  105. cursor: pointer;
  106. overflow: hidden;
  107. text-overflow: ellipsis;
  108. }
  109. .selected a {
  110. font-weight: bold;
  111. text-decoration: underline;
  112. }
  113. .invisible {
  114. visibility: hidden;
  115. }
  116. .collage td {
  117. padding: 0px;
  118. border: none;
  119. }
  120. abbr[title] {
  121. text-decoration: none;
  122. }
  123. .line_new {
  124. color: green;
  125. }
  126. .line_deleted {
  127. color: red;
  128. }
  129. .line_moved {
  130. color: blue;
  131. }
  132. .line_unchanged {
  133. }
  134. .log1 {
  135. }
  136. .log2 {
  137. color: yellow;
  138. }
  139. .log3 {
  140. color: #0E88C6;
  141. }
  142. .log4 {
  143. font-weight: bold;
  144. }
  145. .log5 {
  146. text-decoration: underline;
  147. }
  148. .good {
  149. font-weight: bold;
  150. color: green;
  151. }
  152. .bad {
  153. font-weight: bold;
  154. color: red;
  155. }
  156. .goodish {
  157. font-weight: bold;
  158. color: #35BF00;
  159. }
  160. .badish {
  161. font-weight: bold;
  162. color: #E5B244;
  163. }
  164. pre {
  165. overflow: auto;
  166. }
  167. .disable_grouping {
  168. display: none;
  169. }
  170. form textarea, form input {
  171. max-width: 100%;
  172. box-sizing: border-box;
  173. }
  174. textarea {
  175. width: 100%;
  176. box-sizing: border-box;
  177. }
  178. a.beta {
  179. font-weight: bold;
  180. color: #ff0000;
  181. }
  182. strong.important_text {
  183. color: red;
  184. font-weight: bold;
  185. }
  186. strong.important_text_alt {
  187. color: green;
  188. font-weight: bold;
  189. }
  190. .invalid, .warning, .error, .new {
  191. color: #ff0000;
  192. }
  193. /* Make [+] on add multiple artists stay at the bottom (on torrent details page) */
  194. div#AddArtists {
  195. position: relative;
  196. display: inline-block;
  197. }
  198. div#AddArtists a {
  199. position: absolute;
  200. right: 0pt;
  201. bottom: 0pt;
  202. }
  203. .clear:after {
  204. content: ".";
  205. display: block;
  206. height: 0;
  207. clear: both;
  208. visibility: hidden;
  209. }
  210. .new-subscriptions {
  211. font-weight: bold;
  212. }
  213. #forums #quickpost {
  214. width: 95%;
  215. }
  216. .bbcode_bar {
  217. list-style: none;
  218. margin: 0px 0px -4px;
  219. box-sizing: border-box;
  220. text-align: center;
  221. display: inline-block;
  222. }
  223. .bbcode_bar > li {
  224. display: inline-block;
  225. margin: 0px;
  226. }
  227. .bbcode_bar > li > a {
  228. display: inline-block;
  229. height: 26px;
  230. line-height: 26px;
  231. cursor: pointer;
  232. min-width: 20px;
  233. margin: 0px 4px;
  234. }
  235. td.label, .valign_top {
  236. vertical-align: top;
  237. }
  238. span.rbt {
  239. display: block;
  240. padding: 8px 0 0;
  241. background: url('../rippy/rippy_top.gif') no-repeat top;
  242. }
  243. span.rbm {
  244. display: block;
  245. background: url('../rippy/rippy_middle.gif') repeat bottom;
  246. padding: 0 5px;
  247. }
  248. span.rbb {
  249. display: block;
  250. padding: 4px 0px 18px;
  251. margin-bottom: 5px;
  252. background: url('../rippy/rippy_bottom.gif') no-repeat bottom;
  253. }
  254. span.secondary_class {
  255. font-size: 85%;
  256. font-weight: bold;
  257. }
  258. .breadcrumbs {
  259. font-weight: bold;
  260. text-align: right;
  261. }
  262. .paranoia_override {
  263. font-style: italic;
  264. }
  265. #manage_collage_table.ui-sortable .drag {
  266. cursor: n-resize;
  267. }
  268. #manage_collage_table.ui-sortable .ui-sortable-helper.drag {
  269. cursor: grabbing;
  270. cursor: -moz-grabbing;
  271. cursor: -webkit-grabbing;
  272. }
  273. #manage_collage_table .ui-sortable-helper td, #manage_collage_table .ui-sortable-placeholder {
  274. border: 0;
  275. }
  276. .drag_drop_save {
  277. padding: 6px 0;
  278. overflow: hidden;
  279. }
  280. .headerSort {
  281. cursor: pointer;
  282. }
  283. .headerSort span {
  284. background: url("../common/table-order.png") no-repeat scroll right -38px transparent;
  285. padding: 0px 20px 0 0;
  286. }
  287. .headerSortDown span {
  288. background: url("../common/table-order.png") no-repeat scroll right 4px transparent;
  289. }
  290. .headerSortUp span {
  291. background: url("../common/table-order.png") no-repeat scroll right -79px transparent;
  292. }
  293. .headerSort.sorter-false,
  294. .headerSort.sorter-false span {
  295. background-image: none;
  296. cursor: default;
  297. }
  298. .album_votes {
  299. text-align: center;
  300. }
  301. .favoritecount {
  302. font-size: 150%;
  303. font-weight: bold;
  304. }
  305. .favoritecount_small {
  306. font-size: 110%;
  307. font-weight: bold;
  308. }
  309. ul.votedalbums li {
  310. list-style: none;
  311. list-style-type: none;
  312. margin: 0;
  313. }
  314. tr.torrent .bookmark>a:before {
  315. text-decoration: none;
  316. font-weight: normal;
  317. }
  318. tr.torrent .bookmark>a:after {
  319. text-decoration: none;
  320. font-weight: normal;
  321. }
  322. #sortable {
  323. list-style-type: none;
  324. margin: 0;
  325. padding: 0;
  326. width: 50%;
  327. }
  328. #sortable li {
  329. padding: 0px;
  330. font-size: 1.2em;
  331. height: 1.5em;
  332. }
  333. .ui-state-highlight {
  334. background: #007DC6 /*{bgColorHighlight}*/;
  335. opacity: 0.15;
  336. width: 50%;
  337. }
  338. .navigation_list, .navigation_list ol {
  339. list-style-position: inside;
  340. margin-top: 10px;
  341. margin-bottom: 20px;
  342. }
  343. .navigation_list > li {
  344. list-style-type: upper-roman !important;
  345. }
  346. .navigation_list li li {
  347. list-style-type: decimal;
  348. }
  349. .navigation_list li li li {
  350. list-style-type: lower-roman;
  351. }
  352. .navigation_list li li li li {
  353. list-style-type: lower-alpha;
  354. }
  355. .voted_type {
  356. font-weight: bold;
  357. }
  358. .torrent_table .group .votes_info_td strong {
  359. font-size: inherit;
  360. }
  361. .invite_table td {
  362. min-width: 55px;
  363. }
  364. .preview_wrap {
  365. text-align: left;
  366. }
  367. .text_preview {
  368. min-height: 100px
  369. }
  370. .brackets {
  371. text-indent: 0px;
  372. white-space: nowrap;
  373. cursor: pointer;
  374. }
  375. .votespan.brackets:before {
  376. content: "( ";
  377. }
  378. .votespan.brackets:after {
  379. content: " )";
  380. }
  381. .brackets:before {
  382. content: "[";
  383. }
  384. .brackets:after {
  385. content: "]";
  386. }
  387. #userinfo .brackets:before, #userinfo .brackets:after {
  388. content: "";
  389. }
  390. .group_image {
  391. overflow: hidden;
  392. }
  393. .float_left {
  394. float: left;
  395. }
  396. .float_right {
  397. float: right;
  398. }
  399. .float_clear {
  400. clear: both;
  401. }
  402. .group_image + .group_info {
  403. margin-left: 100px;
  404. }
  405. .group_image img {
  406. cursor: pointer;
  407. }
  408. .user_title {
  409. font-weight: normal;
  410. }
  411. /*
  412. * Fix long filename tables overflowing (Chrome only).
  413. * Stop various release page containers from overflowing with long input.
  414. * !! Be sure to test all major browsers before changing this section. !!
  415. * Fix report information tables overflowing long reports (all browsers).
  416. * Fix long release descriptions overflowing containers (all browsers).
  417. * Fix flowing issues in the report resolving pages.
  418. */
  419. .wrap_overflow, .filelist_table td, .reportinfo_table, .torrentdetails blockquote, .body, .profileinfo {
  420. word-wrap: break-word;
  421. word-break: normal;
  422. word-break: break-word;
  423. hyphens: auto;
  424. }
  425. .filelist_table td:first-child {
  426. word-break: break-all;
  427. }
  428. /* Fix long overflow for Opera (doesn't support word-break). */
  429. .reportinfo_table {
  430. table-layout: fixed;
  431. }
  432. /* Wrap release info for consistent DOM and to limit table expansion. */
  433. .no_overflow {
  434. width: 100%;
  435. overflow: hidden;
  436. }
  437. /* Stylesheet gallery in user profile editing */
  438. #css_gallery {
  439. overflow: hidden;
  440. margin-top: 10px;
  441. }
  442. .preview_wrapper {
  443. position: relative;
  444. display: inline-block;
  445. width: 40%;
  446. margin: 0 10px;
  447. }
  448. .preview_image {
  449. display: block;
  450. cursor: pointer;
  451. overflow: hidden;
  452. }
  453. .preview_image img {
  454. width: 100%;
  455. }
  456. .preview_name {
  457. text-align: center;
  458. margin-top: 5px;
  459. }
  460. .option_group {
  461. margin-bottom: 10px;
  462. }
  463. .option_group:last-child {
  464. margin-bottom: 0px;
  465. }
  466. .autocomplete-suggestions {
  467. color: #000;
  468. margin-top: 5px;
  469. border: 1px solid #999;
  470. background: #FFF;
  471. overflow: auto;
  472. }
  473. .autocomplete-suggestion {
  474. padding: 2px 5px;
  475. white-space: nowrap;
  476. overflow: hidden;
  477. cursor: pointer;
  478. }
  479. .autocomplete-selected {
  480. background: #F0F0F0;
  481. }
  482. .autocomplete-suggestions strong {
  483. font-weight: normal;
  484. color: #3399FF;
  485. }
  486. .process_info {
  487. table-layout: fixed;
  488. width: 100%;
  489. }
  490. .process_info_pid {
  491. width: 70px;
  492. }
  493. .process_info_data {
  494. overflow: auto;
  495. }
  496. .setting_description > * {
  497. margin: 1em 0 0 0;
  498. }
  499. .settings_sidebar {
  500. min-height: 385px;
  501. }
  502. #settings_sections {
  503. position: absolute;
  504. }
  505. #settings_sections.fixed {
  506. position: fixed;
  507. top: 0px;
  508. }
  509. #settings_sections #submit, #settings_sections #settings_search {
  510. box-sizing: border-box;
  511. -moz-box-sizing: border-box;
  512. width: 100%;
  513. }
  514. #settings_sections h2 {
  515. text-align: left;
  516. }
  517. .forum_post .colhead_dark div {
  518. display: flex;
  519. }
  520. .forum_post .colhead_dark div > *{
  521. margin-left: 2px;
  522. margin-right: 2px;
  523. }
  524. .donor_icon {
  525. margin-left: 2px;
  526. margin-right: 2px;
  527. max-width: 16px;
  528. max-height: 16px;
  529. position: relative;
  530. }
  531. .badge_icon {
  532. margin: 0px 2px;
  533. position: relative;
  534. }
  535. .donation_info {
  536. padding: 10px 10px 10px 20px;
  537. margin-left: 10px;
  538. margin-right: 10px;
  539. margin-bottom: 20px;
  540. }
  541. .donation_info_title {
  542. display: block;
  543. font-size: 1.75em;
  544. -webkit-margin-before: 1em;
  545. -webkit-margin-after: 1em;
  546. -webkit-margin-start: 0px;
  547. -webkit-margin-end: 0px;
  548. font-weight: bold;
  549. margin: 10px 0;
  550. }
  551. .number_column {
  552. text-align: right;
  553. }
  554. .wide_input_text {
  555. width: 95%;
  556. }
  557. .top_artist_list li {
  558. margin-left: 25px;
  559. margin-bottom: 5px;
  560. list-style-type: decimal;
  561. font-size: 150%;
  562. }
  563. .permission_subcontainer {
  564. margin-bottom: 10px;
  565. }
  566. .noborder {
  567. border: none;
  568. }
  569. .two_columns {
  570. float: left;
  571. width: 50%;
  572. box-sizing: border-box;
  573. -moz-box-sizing: border-box;
  574. -webkit-box-sizing: border-box;
  575. }
  576. .field_div {
  577. margin-bottom: 10px;
  578. }
  579. .field_div:last-of-type {
  580. margin-bottom: 0;
  581. }
  582. .field_div .label,
  583. .submit_div .label {
  584. float: left;
  585. padding: 0 5px;
  586. text-align: right;
  587. width: 150px;
  588. }
  589. .field_div .input,
  590. .submit_div .input {
  591. padding: 0 5px;
  592. }
  593. .small_label {
  594. text-align: right;
  595. width: auto;
  596. }
  597. .scale_image {
  598. max-width: 500px;
  599. }
  600. .display_block {
  601. display: block;
  602. }
  603. .sidebar img {
  604. max-width: 100%;
  605. width: initial;
  606. }
  607. .forum_post td img {
  608. max-width: 100%;
  609. }
  610. .avatar > a > img {
  611. display: block;
  612. }
  613. #collage #reply_box img,
  614. #forums #reply_box img {
  615. max-width: 650px;
  616. }
  617. #artistcomments #reply_box img,
  618. #request_comments #reply_box img,
  619. #torrent_comments #reply_box img {
  620. max-width: 400px;
  621. }
  622. #artistcomments img,
  623. #request_comments img,
  624. #torrent_comments img {
  625. max-width: 417px;
  626. }
  627. .blog_post img {
  628. max-width: 825px;
  629. }
  630. .torrent_description blockquote img.scale_image {
  631. max-width: 100%;
  632. }
  633. #artist_information img,
  634. .box_request_desc img,
  635. .news_post img,
  636. .torrent_description img,
  637. .wiki_article img {
  638. max-width: 570px;
  639. }
  640. .torrentdetails img {
  641. max-width: 100%;
  642. }
  643. #inbox #preview img,
  644. #staffpm #reply_box img,
  645. #wiki .create_form img,
  646. #wiki .edit_form img {
  647. max-width: 805px;
  648. }
  649. #inbox .body img {
  650. max-width: 830px;
  651. }
  652. #inbox .search_form input[type="search"] {
  653. width: 100%;
  654. margin: 10px 0px 0px;
  655. }
  656. #inbox .manage_form input[type="submit"] {
  657. margin: 10px 7px 10px 0px;
  658. }
  659. #userform img {
  660. max-width: 490px;
  661. }
  662. video, .profileinfo img {
  663. max-width: 100%;
  664. }
  665. #reportsv2 .manage_form img {
  666. max-width: 616px;
  667. }
  668. .friends_table textarea {
  669. max-width: 540px;
  670. }
  671. div.torrent_artists {
  672. display: inline-block;
  673. }
  674. .torrent_screenshots > img {
  675. width: 50%;
  676. border: 1px solid transparent;
  677. box-sizing: border-box;
  678. vertical-align: top;
  679. }
  680. /* Ratio Colors */
  681. .r00 { color: #FF0000; }
  682. .r01,.r02 { color: #FF1300; }
  683. .r03 { color: #b70000; }
  684. .r04 { color: #a20000; }
  685. .r05,.r06 { color: #8e0000; }
  686. .r07 { color: #983100; }
  687. .r08 { color: #8c4802; }
  688. .r09 { color: #7b5200; }
  689. #coverCont.left {
  690. left: 20px;
  691. right: initial;
  692. }
  693. #coverCont {
  694. position: fixed;
  695. right: 20px;
  696. left: initial;
  697. top: 20px;
  698. max-width: 30%;
  699. background-size: contain;
  700. background-repeat: no-repeat;
  701. z-index: 9999;
  702. }
  703. #coverCont img {
  704. max-width: 100%;
  705. }
  706. #covers img {
  707. display: block;
  708. margin-left: auto;
  709. margin-right: auto;
  710. }
  711. .search_warning {
  712. position: absolute;
  713. }
  714. #admincommentlinks {
  715. max-height: 300px;
  716. overflow-y: scroll;
  717. }
  718. .poll_your_answer {
  719. font-weight: bold;
  720. }
  721. .net_box {
  722. display: inline-block;
  723. width: calc(20% - 4px);
  724. margin: 2px;
  725. vertical-align: top;
  726. font-size: 10pt;
  727. }
  728. .net_box > .box {
  729. min-height: 60px;
  730. display: flex;
  731. align-items: center;
  732. }
  733. .net_box > .box > span {
  734. width: 100%;
  735. }
  736. .mediainfo td {
  737. vertical-align: top;
  738. }
  739. .flex {
  740. display: flex;
  741. }
  742. .flex > .grow {
  743. flex-grow: 1
  744. }
  745. .flex > .shrink {
  746. flex-shrink: 1
  747. }
  748. input[type="search"] {
  749. -webkit-appearance: textfield;
  750. }
  751. #lightbox > img {
  752. max-width: 100%;
  753. }
  754. .filter_torrents #ft_basic > .clickable, .filter_torrents #ft_advanced > .clickable {
  755. font-weight: 100;
  756. }
  757. .sidebar .box_tags > ul.stats > li {
  758. display: flex;
  759. justify-content: space-between;
  760. }
  761. .sidebar .box_tags > ul.stats > li > a {
  762. word-break: break-all;
  763. }
  764. .edit_tags_votes {
  765. display: flex;
  766. }
  767. #publickey {
  768. width: initial;
  769. font-family: monospace;
  770. }
  771. .hidden {
  772. display: none;
  773. }
  774. form.edit_form[name=screenshots_form] input[type=text], form.edit_form[name=screenshots_form] img {
  775. width: 400px;
  776. }
  777. #dbcrypt {
  778. position: fixed;
  779. top: 10px;
  780. right: 10px;
  781. }
  782. #dbcrypt:after {
  783. content: "!";
  784. display: block;
  785. width: 20px;
  786. height: 20px;
  787. text-align: center;
  788. line-height: 20px;
  789. font-size: 20px;
  790. font-weight: 600;
  791. color: black;
  792. background: red;
  793. border-radius: 100px;
  794. }