Skip to content

Commit 588f0e8

Browse files
committed
Compliance fixes for gtk-3.20, gtk-4.0, and gnome-shell
This commit fixes all immediate errors that would cause `dart-sass` to error out.
1 parent 484b940 commit 588f0e8

30 files changed

+105690
-20136
lines changed

Gulpfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ gulp.task('shell-style', function(done) {
2424
.pipe(exec('gsettings set org.gnome.shell.extensions.user-theme name "Dracula"'))
2525
done();
2626
});
27-
2827
gulp.task('cinnamon-style', function(done) {
2928
gulp.src('cinnamon/**/*.scss')
3029
.pipe(sass().on('error', sass.logError))

gnome-shell/_drawing.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
// $tc is the text color
8080
// $bg is the background color
8181
//
82-
$_lbg: lightness($bg)/100%;
82+
$_lbg: calc(lightness($bg) / 100%);
8383
@if lightness($tc)<50% { @return transparentize(white,1-$_lbg/($_lbg*1.3)); }
8484
@else { @return transparentize(black,$_lbg*0.8); }
8585
}

0 commit comments

Comments
 (0)