From 46c6fd780a4a1f5a88cbe8065549403d3aa837cb Mon Sep 17 00:00:00 2001 From: Megax <megax@yeahunter.hu> Date: Tue, 19 Apr 2016 18:11:26 +0200 Subject: [PATCH] * Code style fix 2... --- gtk-3.20/scss/_functions.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk-3.20/scss/_functions.scss b/gtk-3.20/scss/_functions.scss index 16260cd..74dc76a 100755 --- a/gtk-3.20/scss/_functions.scss +++ b/gtk-3.20/scss/_functions.scss @@ -85,10 +85,10 @@ $modules: () !default; // $tc is the text color // $bg is the background color // - $_lbg: lightness($bg)/100%; + $_lbg: lightness($bg) / 100%; @if lightness($tc) < 50% { - @return transparentize(white, 1 - $_lbg/($_lbg * 1.3)); + @return transparentize(white, 1 - $_lbg / ($_lbg * 1.3)); } @else { @return transparentize(black, $_lbg * .8); }