1234567891011121314151617181920212223242526 |
- /*********
- * Common *
- *********/
- @function gtkalpha($c,$a) {
- @return unquote("alpha(#{$c},#{$a})");
- }
- $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
- $asset_suffix: if($variant=='dark', '-dark', '');
- $backdrop_transition: 200ms ease-out;
- $button_transition: all 200ms $ease-out-quad;
- * {
- padding: 0;
- // We use the outline properties to signal the focus properties
- // to the adwaita engine: using real CSS properties is faster,
- // and we don't use any outlines for now.
- outline-color: transparentize($fg_color, 0.7);
- outline-style: dashed;
- outline-offset: -3px;
- outline-width: 0px;
- -gtk-secondary-caret-color: $selected_bg_color;
- }
|