_common.scss 662 B

1234567891011121314151617181920212223242526
  1. /*********
  2. * Common *
  3. *********/
  4. @function gtkalpha($c,$a) {
  5. @return unquote("alpha(#{$c},#{$a})");
  6. }
  7. $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  8. $asset_suffix: if($variant=='dark', '-dark', '');
  9. $backdrop_transition: 200ms ease-out;
  10. $button_transition: all 200ms $ease-out-quad;
  11. * {
  12. padding: 0;
  13. // We use the outline properties to signal the focus properties
  14. // to the adwaita engine: using real CSS properties is faster,
  15. // and we don't use any outlines for now.
  16. outline-color: transparentize($fg_color, 0.7);
  17. outline-style: dashed;
  18. outline-offset: -3px;
  19. outline-width: 0px;
  20. -gtk-secondary-caret-color: $selected_bg_color;
  21. }