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