Skip to content

Commit

Permalink
Compliance fixes for gtk-3.20, gtk-4.0, and gnome-shell
Browse files Browse the repository at this point in the history
This commit fixes all immediate errors that would cause `dart-sass` to error out.
  • Loading branch information
ran-dall committed Jun 2, 2022
1 parent a9794ff commit f815f2b
Show file tree
Hide file tree
Showing 28 changed files with 105,582 additions and 20,039 deletions.
1 change: 0 additions & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ gulp.task('shell-style', function(done) {
.pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Dracula"'))
done();
});

gulp.task('cinnamon-style', function(done) {
gulp.src('cinnamon/**/*.scss')
.pipe(sass().on('error', sass.logError))
Expand Down
2 changes: 1 addition & 1 deletion gnome-shell/_drawing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
// $tc is the text color
// $bg is the background color
//
$_lbg: lightness($bg)/100%;
$_lbg: calc(lightness($bg) / 100%);
@if lightness($tc)<50% { @return transparentize(white,1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black,$_lbg*0.8); }
}
Expand Down
Loading

0 comments on commit f815f2b

Please sign in to comment.