Advertisement
Guest User

userContent.css

a guest
May 13th, 2015
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4.  
  5. /*
  6. * Edit this file and copy it as userContent.css into your
  7. * profile-directory/chrome/
  8. */
  9.  
  10. /*
  11. * This file can be used to apply a style to all web pages you view
  12. * Rules without !important are overruled by author rules if the
  13. * author sets any. Rules with !important overrule author rules.
  14. */
  15.  
  16. /*
  17. * example: turn off "blink" element blinking
  18. *
  19. * blink { text-decoration: none ! important; }
  20. *
  21. */
  22.  
  23. /*
  24. * example: give all tables a 2px border
  25. *
  26. * table { border: 2px solid; }
  27. */
  28.  
  29. /*
  30. * example: turn off "marquee" element
  31. *
  32. * marquee { -moz-binding: none; }
  33. *
  34. */
  35.  
  36. /*
  37. * example: make search fields on www.mozilla.org black-on-white
  38. *
  39. * @-moz-document url-prefix(http://www.mozilla.org/) {
  40. * #q { background: white ! important; color: black ! important; }
  41. * }
  42. */
  43.  
  44. /*
  45. * For more examples see http://www.mozilla.org/unix/customizing.html
  46. */
  47.  
  48. /*
  49. * Display the corresponding URL when a hyperlink is hovered, like Chrome.
  50. */
  51.  
  52. a[href]:not([content]):after {
  53. visibility : hidden;
  54. font-family : Leelawadee, "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif !important;
  55. font-size : 9pt !important;
  56. font-weight : 400 !important;
  57. font-style : normal !important;
  58. text-align : left !important;
  59. color : rgb(111, 111, 111) !important;
  60. background : rgb(223, 223, 223) !important;
  61.  
  62. position : fixed !important;
  63. top : calc(100% - 1rem - 4px) !important;
  64. bottom : 0px !important;
  65. left : 0px !important;
  66. padding : 2px 9pt !important;
  67.  
  68.  
  69. content : attr(href) !important;
  70. white-space : nowrap !important;
  71. opacity : 0;
  72. z-index : 999999999 !important;
  73. height : 1rem !important;
  74. line-height : normal !important;
  75.  
  76. -moz-transition : all 0.4s ease;
  77. -moz-transition-delay :0.10s;
  78.  
  79.  
  80. }
  81. a[href]:hover:after {
  82. visibility: visible;
  83. opacity : 1;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement