mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
27 lines
662 B
SCSS
27 lines
662 B
SCSS
/*********
|
|
* 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;
|
|
}
|