home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / transmission / web / stylesheets / common.css next >
Encoding:
Cascading Style Sheet File  |  2009-03-30  |  19.5 KB  |  989 lines

  1. /*--------------------------------------
  2.  *
  3.  * G L O B A L
  4.  *
  5.  *--------------------------------------*/
  6.  
  7. html {
  8.     margin: 0;
  9. /* setting border: 0 hoses ie6 win window inner well border */
  10.     padding: 0;
  11.     height: 100%;
  12. }
  13.  
  14. body {
  15.     font: 62.5% "lucida grande", Tahoma, Verdana, Arial, Helvetica, sans-serif; /* Resets 1em to 10px */
  16.     color: #222 !important;
  17.     background: #FFF;
  18.     text-align: center;
  19.     margin: 0 0 30px;
  20.     overflow: hidden;
  21.     z-index: 1;
  22. }
  23.  
  24. img {
  25.     border: none;
  26. }
  27.  
  28. a {
  29.     outline: 0;
  30.     -moz-outline: none;
  31. }
  32.  
  33. /*--------------------------------------
  34.  *
  35.  * T O P   M E N U
  36.  *
  37.  *--------------------------------------*/
  38.  
  39. div.torrent_global_menu {
  40.     width: 100%;
  41.     height: 75px;
  42.     margin: 0;
  43.     background: transparent url('../images/graphics/chrome.png') left top repeat-x;
  44.     position: fixed;
  45.     left: 0;
  46.     right: 0;
  47.     top: 0;
  48.     border-bottom: 1px solid #888;
  49.     z-index: 3;
  50.     overflow: hidden;
  51.     -moz-user-select: none;
  52.     -webkit-user-select: none;
  53. }
  54.  
  55. div.torrent_global_menu h1 {
  56.     height: inherit;
  57.     width: 205px;
  58.     text-indent: -9000px !important;
  59.     padding: 0;
  60.     margin: 0 0 0 5px;
  61. }
  62.  
  63. div.torrent_global_menu ul {
  64.     height: 50px;
  65.     margin: 0;
  66.     padding: 0 7px;
  67.     text-align: center;
  68. }
  69.  
  70. div.torrent_global_menu ul li {
  71.     list-style-type: none;
  72.     list-style-image: none;
  73.     float: left;
  74.     padding: 0;
  75.     margin: 13px 0 0 0;
  76.     vertical-align: middle;
  77.     height: 50px;
  78. }
  79.  
  80. div.torrent_global_menu ul li#filter,
  81. div.torrent_global_menu ul li#inspector {
  82.     float: right;
  83. }
  84.  
  85. div.torrent_global_menu ul li > div {
  86.     color: #000;
  87.     font-size: 1.1em;
  88.     text-decoration: none;
  89.     padding: 0 8px;
  90.     display: block;
  91.     margin: 0;
  92.     text-shadow: 0 1px 0 #ccc;
  93.     min-width: 32px;
  94.     cursor: pointer;
  95. }
  96.  
  97. div.torrent_global_menu ul li div.toolbar_image {
  98.     width: 32px;
  99.     height: 32px;
  100.     margin: 0 auto 5px;
  101.     background-image: url('../images/buttons/toolbar_buttons.png');
  102. }
  103.  
  104. li#open div div.toolbar_image, li#open.disabled div:active div.toolbar_image {
  105.     background-position: left 0;
  106. }
  107.  
  108. li#open div:active div.toolbar_image {
  109.     background-position: right 0;
  110. }
  111.  
  112. li#remove div div.toolbar_image, li#remove.disabled div:active div.toolbar_image {
  113.     background-position: left -32px;
  114. }
  115.  
  116. li#removedata div div.toolbar_image, li#removedata.disabled div:active div.toolbar_image {
  117.     background-position: left -32px;
  118. }
  119.  
  120. li#remove div:active div.toolbar_image {
  121.     background-position: right -32px;
  122. }
  123.  
  124. li#removedata div:active div.toolbar_image {
  125.     background-position: right -32px;
  126. }
  127.  
  128. li#resume_selected div div.toolbar_image, li#resume_selected.disabled div:active div.toolbar_image {
  129.     background-position: left -96px;
  130. }
  131.  
  132. li#resume_selected div:active div.toolbar_image {
  133.     background-position: right -96px;
  134. }
  135.  
  136. li#pause_selected div div.toolbar_image, li#pause_selected.disabled div:active div.toolbar_image {
  137.     background-position: left -64px;
  138. }
  139.  
  140. li#pause_selected div:active div.toolbar_image {
  141.     background-position: right -64px;
  142. }
  143.  
  144. li#pause_all div div.toolbar_image, li#pause_all.disabled div:active div.toolbar_image {
  145.     background-position: left -128px;
  146. }
  147.  
  148. li#pause_all div:active div.toolbar_image {
  149.     background-position: right -128px;
  150. }
  151.  
  152. li#resume_all div div.toolbar_image, li#resume_all.disabled div:active div.toolbar_image {
  153.     background-position: left -160px;
  154. }
  155.  
  156. li#resume_all div:active div.toolbar_image {
  157.     background-position: right -160px;
  158. }
  159.  
  160. li#filter div div.toolbar_image, li#filter.disabled div:active div.toolbar_image {
  161.     background-position: left -192px;
  162. }
  163.  
  164. li#filter div:active div.toolbar_image {
  165.     background-position: right -192px;
  166. }
  167.  
  168. li#inspector div div.toolbar_image, li#inspector.disabled div:active div.toolbar_image {
  169.     background-position: left -224px;
  170. }
  171.  
  172. li#inspector div:active div.toolbar_image {
  173.     background-position: right -224px;
  174. }
  175.  
  176. div.torrent_global_menu ul li.disabled > div {
  177.     text-shadow: 0 1px 0 #fff;
  178.     opacity: 0.25;
  179.     cursor: default;
  180. }
  181.  
  182. div.torrent_global_menu ul li.divider {
  183.     width: 0;
  184.     border-right: 1px dotted black;
  185.     opacity: 0.2;
  186.     margin: 14px 4px 0;
  187.     height: 49px;
  188. }
  189.  
  190. /*--------------------------------------
  191.  *
  192.  * G L O B A L   D E T A I L S
  193.  *
  194.  *--------------------------------------*/
  195.  
  196. div.torrent_global_details {
  197.     width: 100%;
  198.     height: 20px;
  199.     margin: 0;
  200.     background: #ddd url('../images/graphics/filter_bar.png') repeat-x left -51px;
  201.     font-size: 1.1em;
  202.     font-weight: normal;
  203.     border-bottom: 1px solid #888;
  204.     position: fixed;
  205.     left: 0;
  206.     right: 0;
  207.     top: 76px;
  208.     z-index: 2;
  209.     color: #000;
  210.     text-shadow: 0 1px 0 #f4f4f4;
  211. }
  212.  
  213. div.torrent_global_details div {
  214.     padding: 0 10px 1px 10px;
  215.     margin: 3px 0 0 0;
  216. }
  217.  
  218. div.torrent_global_details div#torrent_global_transfer {
  219.     clear: left;
  220.     float: left;
  221. }
  222.  
  223. div.torrent_global_details div#torrent_global_upload, 
  224. div.torrent_global_details div#torrent_global_download {
  225.     float: right;
  226.     padding-left: 13px;
  227. }
  228.  
  229. div.torrent_global_details div#torrent_global_upload {
  230.     background: url('../images/graphics/transfer_arrows.png') left -11px no-repeat;
  231. }
  232.  
  233. div.torrent_global_details div#torrent_global_download {
  234.     background: url('../images/graphics/transfer_arrows.png') left 2px no-repeat;
  235. }
  236.  
  237. /*--------------------------------------
  238.  *
  239.  * T O R R E N T   F I L T E R   B A R
  240.  *
  241.  *--------------------------------------*/
  242.  
  243. div#torrent_filter_bar {
  244.     margin: 0;
  245.     height: 24px;
  246.     background: #ddd url('../images/graphics/filter_bar.png') repeat-x bottom left;
  247.     border-bottom: 1px solid #888;
  248.     position: fixed;
  249.     left: 0;
  250.     right: 0px;
  251.     top: 97px;
  252.     z-index: 2;
  253.     display: none;
  254.     overflow: hidden;
  255. }
  256.  
  257. div#torrent_filter_bar ul {
  258.     height: 17px;
  259.     margin: 0;
  260.     padding: 0;
  261.     text-align: left;
  262.     display: inline;
  263. }
  264.  
  265. div#torrent_filter_bar ul li {
  266.     list-style-type: none;
  267.     list-style-image: none;
  268.     float: left;
  269.     padding: 0;
  270.     margin: 4px 0 0 5px;
  271.     vertical-align: middle;
  272.     height: 17px;
  273. }
  274.  
  275. div#torrent_filter_bar ul li a {
  276.     font-size: 1.2em;
  277.     color: #222;
  278.     text-shadow: 0 1px 0 #fff;
  279.     text-decoration: none;
  280.     font-weight: bold;
  281.     padding: 0 7px 0 0;
  282.     margin: 0 0 0 7px;
  283.     height: 17px;
  284.     display: block;
  285.     cursor: default;
  286. }
  287.  
  288. div#torrent_filter_bar ul li.selected, div#torrent_filter_bar ul li.selected a, div#torrent_filter_bar ul li:hover, div#torrent_filter_bar ul li:hover a, div#torrent_filter_bar ul li:active, div#torrent_filter_bar ul li:active a {
  289.     background-image: url('../images/graphics/filter_bar.png');
  290.     background-repeat: no-repeat;
  291.     text-shadow: 0 1px 0 #444;
  292.     color: #fff !important;
  293. }
  294.  
  295. div#torrent_filter_bar ul li:hover {
  296.     background-position: left -17px;
  297. }
  298.  
  299. div#torrent_filter_bar ul li:hover a {
  300.     background-position: right -17px;
  301. }
  302.  
  303. div#torrent_filter_bar ul li:active {
  304.     background-position: left -34px;
  305. }
  306.  
  307. div#torrent_filter_bar ul li:active a {
  308.     background-position: right -34px;
  309. }
  310.  
  311. div#torrent_filter_bar ul li.selected {
  312.     background-position: left top;
  313. }
  314.  
  315. div#torrent_filter_bar ul li.selected a {
  316.     background-position: right top;
  317. }
  318.  
  319. div#torrent_filter_bar input#torrent_search {
  320.     float: right;
  321.     height: 15px;
  322.     width: 100px;
  323.     border: solid 0 #fff;
  324.     padding: 0 2px;
  325.     margin: 4px 5px 0 0;
  326. }
  327. /* Safari-look filter input for Firefox */
  328. @-moz-document url-prefix() {
  329.     div#torrent_filter_bar input#torrent_search {
  330.         background: #FFF url('../images/graphics/filter_icon.png') top left no-repeat;
  331.         border: 1px solid #5D80A1;
  332.         margin-top: 3px;
  333.         padding: 1px 10px 1px 18px;
  334.         width: 76px;
  335.         -moz-border-radius: 10px;
  336.     }
  337.     div#torrent_filter_bar input#torrent_search.blur {
  338.         border-color: #CCC;
  339.     }
  340.  
  341. div#torrent_filter_bar input#torrent_search.blur {
  342.     color: #999;
  343. }
  344.  
  345. /*--------------------------------------
  346.  *
  347.  * T O R R E N T   C O N T A I N E R
  348.  *
  349.  *--------------------------------------*/
  350.  
  351. div#torrent_container {
  352.     position: fixed;
  353.     top: 97px;
  354.     bottom: 22px;
  355.     right: 0px;
  356.     left: 0px;
  357.     padding: 0px;
  358.     margin: 0px;
  359.     overflow: auto;
  360.     z-index: 1;
  361. }
  362.  
  363. ul.torrent_list {
  364.     width: 100%;
  365.     margin: 0;
  366.     padding: 0;
  367.     text-align: left;
  368.     z-index: 1;
  369.     cursor: default;
  370. }
  371.  
  372. ul.torrent_list li {
  373.     list-style-type: none;
  374.     list-style-image: none;
  375.     clear: both;
  376.     display: block;
  377.     vertical-align: middle;
  378.     -moz-user-select: none;
  379.     -webkit-user-select: none;
  380. }
  381.  
  382. ul.torrent_list li.torrent {
  383.     border-bottom: 1px solid #ccc;
  384.     padding: 4px 30px 5px 10px; /* Make space for buttons on the right */
  385.     margin: 0 !important;
  386.     color: #666;
  387. }
  388.  
  389. ul.torrent_list li.torrent a img {
  390.     position: relative;
  391.     right: -10px;
  392. }
  393.  
  394. ul.torrent_list li.torrent.even {
  395.     background-color: #EDF3FE;
  396. }
  397.  
  398. ul.torrent_list li.torrent.selected {
  399.     background-color: #3879D7;
  400.     color: #FFF;
  401. }
  402.  
  403. ul.torrent_list li.torrent div.torrent_name {
  404.     font-size: 1.3em;
  405.     font-weight: bold;
  406.     word-wrap: break-word;
  407.     overflow: hidden;
  408.     color: #222;
  409.     margin-bottom: 2px;
  410. }
  411.  
  412. ul.torrent_list li.torrent.selected div.torrent_name {
  413.     color: #fff;
  414. }
  415.  
  416. ul.torrent_list li.torrent div.torrent_progress_details,
  417. ul.torrent_list li.torrent div.torrent_peer_details {
  418.     font-size: 1em;
  419. }
  420.  
  421. ul.torrent_list li.torrent div.torrent_progress_bar {
  422.     height: 10px;
  423.     margin: 3px 0;
  424.     float: left;
  425.     line-height: 1px;
  426.     font-size: 1px;
  427.     width: 100%;
  428.     background-image: url('../images/progress/progress.png');
  429.     background-repeat: repeat-x;
  430.     background-color: transparent;
  431. }
  432.  
  433. ul.torrent_list li.torrent div.torrent_progress_bar.complete {
  434.     background-position: left -10px;
  435.     border: 1px solid #29AD35;
  436. }
  437.  
  438. ul.torrent_list li.torrent div.torrent_progress_bar.in_progress {
  439.     background-position: left 0px;
  440.     border: 1px solid #3F79EE;
  441.     border-right: none;
  442. }
  443.  
  444. ul.torrent_list li.torrent div.torrent_progress_bar.incomplete {
  445.     margin-right: -10px;
  446.     background-position: left -20px;
  447.     border: 1px solid #C8CACD;
  448.     border-left: none;
  449. }
  450.  
  451. ul.torrent_list li.torrent div.torrent_progress_bar.incomplete_stopped {
  452.     background-position: left -30px;
  453.     border: 1px solid #939393;
  454.     border-right: none;
  455. }
  456.  
  457. ul.torrent_list li.torrent div.torrent_progress_bar.complete_stopped {
  458.     background-position: left -30px;
  459.     border: 1px solid #939393;
  460. }
  461.  
  462. ul.torrent_list li.torrent div.torrent_progress_bar.empty {
  463.     border-color: #c8cacd;
  464. }
  465.  
  466. li.torrent a div {
  467.     float: right;
  468.     position: relative;
  469.     right: -22px;
  470.     top: -16px;
  471.     background: url('../images/buttons/torrent_buttons.png');
  472.     height: 14px;
  473.     width: 14px;
  474. }
  475.  
  476. li.torrent a div.torrent_pause {
  477.     background-position: left top;
  478. }
  479.  
  480. li.torrent a:hover div.torrent_pause {
  481.     background-position: left center;
  482. }
  483.  
  484. li.torrent a:active div.torrent_pause {
  485.     background-position: left bottom;
  486. }
  487.  
  488. li.torrent a div.torrent_resume {
  489.     background-position: center top;
  490. }
  491.  
  492. li.torrent a:hover div.torrent_resume {
  493.     background-position: center center;
  494. }
  495.  
  496. li.torrent a:active div.torrent_resume {
  497.     background-position: center bottom;
  498. }
  499.  
  500. /*--------------------------------------
  501.  *
  502.  * T O R R E N T   I N S P E C T O R
  503.  *
  504.  *--------------------------------------*/
  505.  
  506. div#torrent_inspector {
  507.     position: fixed;
  508.     top: 97px;
  509.     bottom: 22px;
  510.     right: 0px;
  511.     width: 350px;
  512.     background-color: #ddd;
  513.     border-left: 1px solid #888;
  514.     z-index: 2;
  515.     text-align: left;
  516. }
  517. div#torrent_inspector #torrent_inspector_name {
  518.     margin: 0;
  519.     overflow: hidden;
  520. }
  521. div#torrent_inspector #torrent_inspector_size {
  522.     font-size: 1.2em;
  523.     margin: 3;
  524.     display: block;
  525.     padding-top: 2px;
  526. }
  527. div#inspector_header {
  528.     clear: both;
  529.     padding-top: 10px;
  530.     padding-left: 10px;
  531.     padding-right: 10px;
  532. }
  533. div#inspector_tabs {
  534.     margin: 0 auto;
  535.     padding-top: 10px;
  536.     width: 140px;
  537. }
  538. .inspector_tab {
  539.     float: left;
  540.     background: transparent url('../images/buttons/tab_backgrounds.png') left -1px repeat-x;
  541.     border: 1px solid #888;
  542.     margin: 0px 1px;
  543.     padding: 3px 15px; /* 3px == ((bg image height - fg image height) / 2) */
  544.     cursor: pointer;
  545. }
  546. #inspector_tabs > .selected {
  547.     background-position: left -26px; /* the highlighted part of the image */
  548. }
  549. .inspector_container {
  550.     margin: 10px;
  551.     width: 330px; /* inspector_width==350 - ((margin==10)*2) */
  552. }
  553. .inspector_group {
  554.     display: table;
  555.     width: 100%;
  556.     border-top: 1px solid #888;
  557.     margin: 10px 0px;
  558.     padding: 10px 0px;
  559. }
  560. .inspector_group_label {
  561.     display: table-header-group;
  562.     font-weight: bold;
  563. }
  564. .inspector_row {
  565.     display: table-row;
  566. }
  567. .inspector_row > .inspector_label {
  568.     display: table-cell;
  569.     width: 100px; /* this + the next 230 == inspector_container_with */
  570. }
  571. .inspector_row > div {
  572.     display: table-cell;
  573.     padding-top: 10px;
  574.     width: 230px; /* inspector_container_width==330 - inspector_label_width==100 */
  575. }
  576.  
  577. /*--------------------------------------
  578.  *
  579.  * T O R R E N T   F O O T E R
  580.  *
  581.  *--------------------------------------*/
  582.  
  583. div.torrent_footer {
  584.     width: 100%;
  585.     height: 22px;
  586.     margin: 0;
  587.     padding: 0;
  588.     border-top: 1px solid #555;
  589.     background: #aaa url('../images/graphics/chrome.png') left bottom repeat-x;
  590.     position: fixed;
  591.     left: 0px;
  592.     right: 0px;
  593.     bottom: 0;
  594.     z-index: 2;
  595.     color: #000;
  596.     text-shadow: 0 1px 0 #ccc;
  597. }
  598.  
  599. div.torrent_footer ul#settings_menu li#button {
  600.     height: 22px;
  601.     width: 32px !important;
  602.     background: transparent url('../images/graphics/chrome.png') left -75px no-repeat;
  603.     margin: 0 0 0 3px;
  604.     padding: 0;
  605.     float: left;
  606.     position: relative;
  607.     -moz-user-select: none;
  608.     -webkit-user-select: none;
  609. }
  610.  
  611. div.torrent_footer ul#settings_menu li#button:active {
  612.     /background: transparent url('../images/graphics/chrome.png') -32px -75px no-repeat;
  613. }
  614.  
  615. div.torrent_footer ul#settings_menu li#button:hover {
  616.     /background: transparent url('../images/graphics/chrome.png') -32px -75px no-repeat;
  617. }
  618.  
  619. div.torrent_footer div#disk_space_container {
  620.     float: right;
  621.     font-size: 1.1em;
  622.     line-height: 22px;
  623.     vertical-align: middle;
  624.     margin: 0 20px 0 0;
  625.     padding: 0px;
  626. }
  627.  
  628. /*--------------------------------------
  629.  *
  630.  * D I A L O G S
  631.  *
  632.  *--------------------------------------*/
  633.  
  634. div.dialog_container {
  635.     position: absolute;
  636.     top: 0;
  637.     left: 0px;
  638.     margin: 0px;
  639.     width: 100%;
  640.     height: 100%;
  641.     z-index: 2;
  642.     text-align: center;
  643.     color: black;
  644.     font-size: 1.1em;
  645. }
  646.  
  647. div.dialog_container div.dialog_window {
  648.     background-color: #eee;
  649.     margin: -210px auto 0;
  650.     filter: alpha(opacity=95);
  651.     -moz-opacity: .95;
  652.     opacity: .95;
  653.     border-top: none;
  654.     text-align: left;
  655.     width: 420px;
  656.     height: 145px;
  657.     position: relative;
  658.     -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.7);
  659.     top: 50%;
  660. }
  661. @media screen and (-webkit-min-device-pixel-ratio:0) {
  662.     div.dialog_container div.dialog_window {
  663.         top: 0;
  664.         margin-top: 71px;
  665.     }
  666.  
  667. div#prefs_container div.dialog_window {
  668.     width: 410px;
  669.     height: 420px;
  670.     padding: 0 15px;
  671.     line-height: 14pt;
  672. }
  673.  
  674. div.dialog_container div.dialog_window img {
  675.     margin: 20px 20px 0 20px;
  676.     float: left;
  677. }
  678.  
  679. div.dialog_container div.dialog_window h2.dialog_heading {
  680.     display: block;
  681.     float: left;
  682.     width: 305px;
  683.     font-size: 1.2em;
  684.     color: black;
  685.     margin-top: 20px;
  686. }
  687.  
  688. div.dialog_container div.dialog_window div.dialog_message {
  689.     float: left;
  690.     padding-left: 3px;
  691.     margin-left: -3px;
  692.     width: 305px;
  693.     height: 55px;
  694.     overflow: hidden;
  695. }
  696.  
  697. div.dialog_container div.dialog_window a {
  698.     display: block;
  699.     float: right;
  700.     margin: 10px 20px 0 -8px;
  701.     padding: 5px;
  702.     background-color: #EEE;
  703.     border: 1px solid #787878;
  704.     width: 50px;
  705.     text-align: center;
  706.     font-weight: bold;
  707.     text-decoration: none;
  708.     color: #323232;
  709.     -webkit-appearance: button;
  710.     font: -webkit-control;
  711.     cursor: default;
  712. }
  713.  
  714. div.dialog_container div.dialog_window a:hover,
  715. div.dialog_container div.dialog_window a:active {
  716.     background: #C0C8D6 url('../images/graphics/filter_bar_bg.png') repeat-x;
  717. }
  718.  
  719. div#upload_container div.dialog_window {
  720.     height: 200px !important;
  721.     position: relative;
  722. }
  723.  
  724. div#upload_container div.dialog_window div.dialog_message {
  725.     height: 110px;
  726. }
  727.  
  728. div#upload_container div.dialog_window div.dialog_message label {
  729.     margin-top: 15px;
  730.     display: block;
  731. }
  732.  
  733. div#upload_container div.dialog_window div.dialog_message input {
  734.     width: 249px;
  735.     margin: 3px 0 0 0;
  736.     display: block;
  737. }
  738.  
  739. div#upload_container div.dialog_window div.dialog_message input[type=text] {
  740.     width: 245px;
  741.     padding: 2px;
  742. }
  743.  
  744. div.dialog_container div.dialog_window form {
  745.     margin: 0;
  746.     padding: 0px;
  747. }
  748.  
  749. iframe#torrent_upload_frame {
  750.     display: block; /* Don't change this : safari forms won't target hidden frames (they open a new window) */
  751.     position: absolute;
  752.     top: -1000px;
  753.     left: -1000px;
  754.     width: 0px;
  755.     height: 0px;
  756.     border: none;
  757.     padding: 0;
  758.     margin: 0;
  759. }
  760.  
  761. div#prefs_container label {
  762.     display: block;
  763. }
  764.  
  765. div#prefs_container label.category {
  766.     clear: both;
  767.     font-size: 1.2em;
  768.     margin: 0 0 0 2px;
  769. }
  770.  
  771. div#prefs_container label.item {
  772.     font-size: 11px !important;
  773.     margin: 0 5px 0 20px;
  774.     float: left;
  775. }
  776.  
  777. div#prefs_container label.suffix {
  778.     margin: 0 5px 0 10px;
  779.     float: left;
  780. }
  781.  
  782. div#prefs_container div.formdiv.checkbox label.item {
  783.     margin: 0 5px 0 2px;
  784. }
  785.  
  786. div#prefs_container div.limit_total label.item {
  787.     width: 91px;
  788. }
  789.  
  790. div#prefs_container div.preference input[type=checkbox] {
  791.     float: left;
  792.     margin-left: 20px;
  793.     margin-top: 9px;
  794. }
  795. @-moz-document url-prefix() {
  796.     div#prefs_container div.preference input[type=checkbox] {
  797.         margin-top: 8px;
  798.     }
  799. }
  800.  
  801. div#prefs_container div.preference input[type=text] {
  802.     width: 50px;
  803.     padding: 0px !important;
  804.     height: 18px;
  805.     margin-top: 2px;
  806. }
  807.  
  808. div#prefs_container div.preference input {
  809.     float: left;
  810. }
  811.  
  812. div#prefs_container div.download_location input {
  813.     width: 256px !important;
  814. }
  815. div#prefs_container div.download_location .checkbox input {
  816.     width: auto !important;
  817. }
  818.  
  819. div#prefs_container div.formdiv {
  820.     clear: both;
  821.     line-height: 30px;
  822. }
  823.  
  824. div#prefs_container a {
  825.     clear: left;
  826.     margin: 10px 5px 10px 7px;
  827. }
  828.  
  829. div#prefs_container h2.dialog_heading {
  830.     display: none;
  831. }
  832.  
  833. div#prefs_container div#pref_error {
  834.     display: none;
  835.     width: 395px;
  836.     margin: 6px auto 6px auto;
  837.     padding: 3px 0 3px 0;
  838.     border: 2px solid #cc3333;
  839.     color: #cc3333;
  840.     font-size: 1.2em;
  841.     vertical-align: middle;
  842.     text-align: center;
  843.     height: 20px;
  844.     line-height: 20px;
  845.     background-color: #FFEFEF;
  846. }
  847.  
  848. /*--------------------------------------
  849.  *
  850.  * T R A N S   M E N U
  851.  *
  852.  *--------------------------------------*/
  853.  
  854. .trans_menu {
  855.     margin: 0;
  856.     padding: 0;
  857.     cursor: default;
  858. }
  859.  
  860. .trans_menu, .trans_menu ul {
  861.     list-style: none;
  862. }
  863.  
  864. .trans_menu ul {
  865.     min-width: 210px;
  866.     background-color: #fff;
  867.     filter: alpha(opacity=98);
  868.     -moz-opacity: .98;
  869.     opacity: .98;
  870.     padding: 5px 0;
  871.     text-align: left;
  872.     list-style: none;
  873.     -webkit-border-radius: 5px;
  874.     -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  875. }
  876.  
  877. .trans_menu ul ul {
  878.     min-width: 150px;
  879. }
  880.  
  881. .trans_menu ul ul#footer_sort_menu {
  882.     min-width: 175px;
  883. }
  884.  
  885. .trans_menu li {
  886.     margin: 0;
  887.     padding: 0 10px 2px 20px !important;
  888.     color: #000;
  889.     font-size: 14px;
  890.     cursor: default;
  891.     text-indent: auto !important;
  892.     width: inherit;
  893. }
  894.  
  895. .trans_menu li.hover {
  896.     z-index: 1 !important; /* the hover z-index has to be below the normal one the hovering items may be drawn over a submenu */
  897.     background-color: #24e;
  898.     color: #fff;
  899.     text-shadow: none;
  900. }
  901.  
  902. .trans_menu li.separator, .trans_menu li.separator.hover {
  903.     border-top: 1px solid #ddd;
  904.     margin: 5px 0;
  905.     padding: 0px;
  906.     background: transparent;
  907. }
  908.  
  909. .trans_menu li span.arrow {
  910.     float: right;
  911.     margin: 3px 0 0;
  912.     font-size: 11px;
  913.     color: #333;
  914.     text-shadow: none;
  915. }
  916.  
  917. .trans_menu li.hover li.hover span.arrow, .trans_menu li.hover li.hover li.hover span.selected {
  918.     color: #fff;
  919. }
  920.  
  921. .trans_menu span.selected {
  922.     margin: 0 3px 0 -15px;
  923.     font-size: 14px;
  924.     color: #666;
  925.     float: left;
  926. }
  927.  
  928. .trans_menu div.outerbox {
  929.     display: none;
  930.     background: transparent;
  931.     border: 1px solid rgba(0,0,0,0.1);
  932.     -webkit-border-radius: 5px;
  933. }
  934.  
  935. .trans_menu div.inner {
  936.     left: 0;
  937.     margin: 0;
  938. }
  939.  
  940. .trans_menu li.main {
  941.     float: left;
  942.     padding: 0 !important;
  943.     width: 30px !important;
  944. }
  945.  
  946. .trans_menu li.main li {
  947.     z-index: 2;
  948.     min-width: 78px;
  949. }
  950.  
  951. .trans_menu li.main.active {
  952.     background: transparent url('../images/graphics/chrome.png') right -75px no-repeat !important;
  953. }
  954.  
  955. .trans_menu a {
  956.     text-decoration: none;
  957.     cursor: default;
  958. }
  959.  
  960. /*--------------------------------------
  961.  *
  962.  * C O N T E X T   M E N U
  963.  *
  964.  *--------------------------------------*/
  965.  
  966. div#jqContextMenu {
  967.     -webkit-border-radius: 5px;
  968.     border: 1px solid rgba(0,0,0,0.1);
  969.     -moz-user-select: none;
  970.     -webkit-user-select: none;
  971. }
  972.  
  973. div#jqContextMenu ul {
  974.     filter: alpha(opacity=98);
  975.     -moz-opacity: .98;
  976.     opacity: .98;
  977.     -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  978.     -webkit-border-radius: 5px;
  979. }
  980.  
  981. div#jqContextMenu li.separator, div#jqContextMenu li.separator:hover {
  982.     background: inherit !important;
  983.     border-top: 1px solid #ddd !important;
  984.     margin: 5px 0 !important;
  985.     padding: 0px;
  986. }
  987.