Advertisement
hcxangel

Untitled

Jan 3rd, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.18 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document domain("reddit.com") {
  4. /* To change the number of rows
  5.  * $n = number of rows
  6.  *
  7.  * A: Change `margin-top` to ( ($n - 1) * 18 )
  8.  * B: Change `height` to ( $n * 18 )
  9.  * B: Change `top` to ( ($n - 1) * 18 * -1 )
  10.  */
  11.  
  12. /* A */
  13. body {
  14.     margin-top:18px !Important;
  15.     position:relative !Important
  16. }
  17.  
  18. #header:before {
  19.     content:"";
  20.     display:block;
  21.     height:19px;
  22. }
  23.  
  24. /* B */
  25. #sr-header-area {
  26.     height:36px !Important;
  27.     position:absolute ;
  28.     top:-18px;
  29. }
  30.  
  31. #srLeftContainer, #RESShortcutsViewport, #RESShortcuts  {
  32.     height:100% !Important;
  33.     max-height:none !Important;
  34. }
  35.  
  36. #srLeftContainer {
  37.     border-right:1px dashed #777;
  38.     padding:0 5px !Important;
  39. }
  40.  
  41. #srDropdown, #RESStaticShortcuts {
  42.     display:block !IMportant;
  43.     float:none !Important;
  44. }
  45.  
  46. #srDropdown {
  47.     left:0;
  48.     position:absolute !Important;
  49.     text-align:center;
  50.     top:50%;
  51.     width:100%;
  52. }
  53.  
  54. #RESShortcuts {
  55.     display:block !Important;
  56.     overflow-y:auto !Important;
  57.     white-space:normal !Important;
  58.     width:100% !Important;
  59. }
  60.  
  61. #RESStaticShortcuts .separator:first-child, #sr-header-area .srSep,
  62. #RESShortcutsEditContainer {
  63.     display: none !Important;
  64. }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement