Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 KB | None | 0 0
  1. /* This style is part of the Maroon Project to make Firefox more like Opera */
  2. /* Homepage: http://www.maroonproject.wordpress.com */
  3. /* modified by Arty2 */
  4.  
  5. @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
  6. @-moz-document url("chrome://speeddial/content/speeddial.xul"){
  7.  
  8. .sd-tab {
  9. border: 1px solid #999999 !important;
  10. border-radius: 15px !important;
  11. font-weight: normal !important;
  12. height: 30px !important;
  13. padding-left: 12px !important;
  14. padding-right: 12px !important;
  15. padding-top: 3px !important;
  16. margin: 10px !important;
  17. padding-bottom: 3px !important;
  18. text-align: center !important;
  19. transition: all 0.5s;
  20. }
  21. .sd-tab:not([selected="true"]) {
  22. background: #f2f2f2 !important;
  23. color: #444444 !important;
  24. }
  25. .sd-tab[selected="true"] {
  26. background: #ffffff !important;
  27. color: #333333 !important;
  28. border: 1px solid #999999 !important;
  29. box-shadow: 0 0 5px rgba(0,0,0,0.3);
  30. }
  31. .sd-tabs {
  32. background: transparent !important;
  33. padding: 20px !important;
  34. margin-bottom: -90px !important;
  35. z-index: 1000 !important;
  36. opacity: 1 !important;
  37. position: absolute !important;
  38. }
  39. .sd-tabs-left,
  40. .sd-tabs-right {
  41. border: 0px !important;
  42. }
  43. .sd-tabpanel {
  44. background: #f6f6f6 !important;
  45. padding: 100px !important;
  46. }
  47. .thumbnail{
  48. opacity: 1 !important;
  49. margin: 2px !important;
  50. }
  51. .speeddial-container[assigned="f"] {
  52. opacity: 0.05 !important;
  53. /*display: none !important;*/
  54. }
  55. .speeddial-container[assigned="f"]:hover {
  56. opacity: 1 !important;
  57. }
  58. .speeddial-container {
  59. border-width: 1px !important;
  60. border-radius: 9px !important;
  61. border-color: #999999 !important;
  62. transition: all 0.5s;
  63. }
  64.  
  65. .speeddial-container:hover {
  66. box-shadow: 0 0 10px rgba(0,0,0,0.3);
  67. }
  68.  
  69. .thumbnail-title,
  70. .speeddial-top-middle,
  71. .speeddial-bottom-middle,
  72. .speeddial-top-middle,
  73. .speeddial-middle-left,
  74. .speeddial-middle-right,
  75. .speeddial-bottom-middle,
  76. .speeddial-top-left,
  77. .speeddial-top-right,
  78. .speeddial-bottom-left,
  79. .speeddial-bottom-right{
  80. display: none;
  81. }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement