Safari Extension to Block Flash and load them by one click.
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.

99 lines
2.8 KiB

14 years ago
  1. .flashfireBlocked {
  2. background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.15))) !important;
  3. border:1px solid rgba(0, 0, 0, 0.5) !important;
  4. display: table !important;
  5. -webkit-user-select: none !important;
  6. font-family:"Lucida Grande", "Helvetica Neue", Helvetica, sans-serif !important;
  7. }
  8. .flashfireBlocked:active {
  9. background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0, 0, 0, 0.15)), to(rgba(255, 255, 255, 0.15))) !important;
  10. }
  11. .flashfireBlocked .container {
  12. position: relative !important;
  13. width: inherit !important;
  14. height: inherit !important;
  15. margin: 0px !important;
  16. }
  17. .flashfireBlocked .vText {
  18. display: table-cell !important;
  19. vertical-align: middle !important;
  20. width: inherit !important;
  21. height: inherit !important;
  22. }
  23. .flashfireBlocked .hText {
  24. float: left !important;
  25. position: relative !important;
  26. left: 50% !important;
  27. height: auto !important;
  28. width: auto;
  29. }
  30. .flashfireBlocked .textContainer {
  31. float: left !important;
  32. position: relative !important;
  33. left: -50% !important;
  34. width: auto !important;
  35. height: auto !important;
  36. }
  37. .flashfireBlocked .textContainer.rotate {
  38. left: -90% !important;
  39. -webkit-transform: rotate(-90deg);
  40. }
  41. .flashfireBlocked .textContainer .text {
  42. border-radius: 4.0px !important;
  43. border: 3px solid rgba(0, 0, 0, 0.3) !important;
  44. font-size: 20px !important;
  45. width: auto !important;
  46. color: rgba(0, 0, 0, 0.3) !important;
  47. font-weight: bold !important;
  48. padding: 14px 5px 7px 5px !important;
  49. -webkit-user-select: none !important;
  50. cursor: default !important;
  51. background: none !important;
  52. position: relative !important;
  53. height: auto !important;
  54. line-height: 0 !important;
  55. }
  56. .flashfireBlocked .textContainer.mini .text {
  57. border-radius: 4.0px !important;
  58. font-size: 8px !important;
  59. border: 1px solid rgba(0, 0, 0, 0.3) !important;
  60. padding: 6px 3px 4px 3px !important;
  61. }
  62. .flashfireBlocked .textContainer .textInset {
  63. border: 0px !important;
  64. font-size: 20px !important;
  65. width: auto !important;
  66. color: rgba(255, 255, 255, 0.45) !important;
  67. font-weight: bold !important;
  68. padding: 16px 7px 10px 8px !important;
  69. -webkit-user-select: none !important;
  70. cursor: default !important;
  71. background: none !important;
  72. height: auto !important;
  73. line-height: 0 !important;
  74. position: absolute !important;
  75. top: 1px !important;
  76. right: 1px !important;
  77. }
  78. .flashfireBlocked .textContainer.mini .textInset {
  79. font-size: 8px !important;
  80. padding: 6px 3px 10px 8px !important;
  81. }
  82. .flashfireBlocked .action {
  83. position: absolute !important;
  84. left: 10px !important;
  85. top: 10px !important;
  86. width: 14px !important;
  87. height: 14px !important;
  88. background: url("action.png") no-repeat !important;
  89. opacity: 0.25 !important;
  90. -webkit-transition-property: opacity;
  91. -webkit-transition-duration: 0.5s;
  92. z-index: 2 !important;
  93. }
  94. .flashfireBlocked .action:hover {
  95. opacity: 0.5 !important;
  96. }