Advertisement
Guest User

Untitled

a guest
Mar 28th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.40 KB | None | 0 0
  1. diff --git a/browser/base/content/browser.css b/browser/base/content/browser.css
  2. --- a/browser/base/content/browser.css
  3. +++ b/browser/base/content/browser.css
  4. @@ -917,21 +917,21 @@ chatbox:-moz-full-screen-ancestor > .cha
  5.  }
  6.  
  7.  /* Give this menupopup an arrow panel styling */
  8.  #BMB_bookmarksPopup {
  9.    -moz-appearance: none;
  10.    -moz-binding: url("chrome://browser/content/places/menu.xml#places-popup-arrow");
  11.    background: transparent;
  12.    border: none;
  13. -  transform: scale(.1);
  14. +  transform: scale(.7);
  15.    opacity: 0;
  16.    transition-property: transform, opacity;
  17. -  transition-duration: 0.25s;
  18. -  transition-timing-function: cubic-bezier(.6, 1.0, .65, 1.0), ease;
  19. +  transition-duration: 0.15s;
  20. +  transition-timing-function: ease;
  21.    /* The popup inherits -moz-image-region from the button, must reset it */
  22.    -moz-image-region: auto;
  23.  }
  24.  
  25.  #BMB_bookmarksPopup[animate="open"] {
  26.    transform: none;
  27.    opacity: 1.0;
  28.  }
  29. @@ -949,22 +949,22 @@ chatbox:-moz-full-screen-ancestor > .cha
  30.  }
  31.  
  32.  #BMB_bookmarksPopup[arrowposition="before_end"] {
  33.    transform-origin: calc(100% - 20px) bottom;
  34.  }
  35.  
  36.  #BMB_bookmarksPopup[arrowposition="after_start"][animate="cancel"],
  37.  #BMB_bookmarksPopup[arrowposition="before_end"][animate="cancel"] {
  38. -  transform: scale(.1) skew(30deg, 20deg);
  39. +  transform: scale(.7) skew(10deg, 10deg);
  40.  }
  41.  
  42.  #BMB_bookmarksPopup[arrowposition="after_end"][animate="cancel"],
  43.  #BMB_bookmarksPopup[arrowposition="before_start"][animate="cancel"] {
  44. -  transform: scale(.1) skew(-30deg, -20deg);
  45. +  transform: scale(.7) skew(-10deg, -10deg);
  46.  }
  47.  
  48.  /* Customize mode */
  49.  #navigator-toolbox,
  50.  #content-deck {
  51.    transition-property: margin-left, margin-right;
  52.    transition-duration: 200ms;
  53.    transition-timing-function: linear;
  54. diff --git a/toolkit/content/xul.css b/toolkit/content/xul.css
  55. --- a/toolkit/content/xul.css
  56. +++ b/toolkit/content/xul.css
  57. @@ -422,21 +422,21 @@ tooltip {
  58.    margin-top: 21px;
  59.  }
  60.  
  61.  panel[type="arrow"] {
  62.    -moz-binding: url("chrome://global/content/bindings/popup.xml#arrowpanel");
  63.  }
  64.  
  65.  panel[type="arrow"]:not([animate="false"]) {
  66. -  transform: scale(.1);
  67. +  transform: scale(.8);
  68.    opacity: 0;
  69.    transition-property: transform, opacity;
  70. -  transition-duration: 0.25s;
  71. -  transition-timing-function: cubic-bezier(.6, 1.0, .65, 1.0), ease;
  72. +  transition-duration: 0.15s;
  73. +  transition-timing-function: ease;
  74.  }
  75.  
  76.  panel[type="arrow"][animate="open"] {
  77.    transform: none;
  78.    opacity: 1.0;
  79.  }
  80.  
  81.  panel[arrowposition="after_start"] {
  82. @@ -470,24 +470,24 @@ panel[arrowposition="end_before"] {
  83.  panel[arrowposition="end_after"] {
  84.    transform-origin: left calc(100% - 20px);
  85.  }
  86.  
  87.  panel[arrowposition="after_start"][animate="cancel"],
  88.  panel[arrowposition="before_end"][animate="cancel"],
  89.  panel[arrowposition="end_before"][animate="cancel"],
  90.  panel[arrowposition="start_after"][animate="cancel"] {
  91. -  transform: scale(.1) skew(30deg, 20deg);
  92. +  transform: scale(.6) skew(10deg, 10deg);
  93.  }
  94.  
  95.  panel[arrowposition="after_end"][animate="cancel"],
  96.  panel[arrowposition="before_start"][animate="cancel"],
  97.  panel[arrowposition="start_before"][animate="cancel"],
  98.  panel[arrowposition="end_after"][animate="cancel"] {
  99. -  transform: scale(.1) skew(-30deg, -20deg);
  100. +  transform: scale(.6) skew(-10deg, -10deg);
  101.  }
  102.  
  103.  %ifdef XP_MACOSX
  104.  .statusbar-resizerpanel {
  105.    display: none;
  106.  }
  107.  %else
  108.  window[sizemode="maximized"] statusbarpanel.statusbar-resizerpanel {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement