From 5437bbab04035ca015adf5962fe02e3b4db09bb3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Tue, 20 Sep 2016 10:19:42 +0200 Subject: [PATCH] Add margins on wysiwyg buttons --- app/static/src/sass/global/_wysiwyg.scss | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/app/static/src/sass/global/_wysiwyg.scss b/app/static/src/sass/global/_wysiwyg.scss index 72211202..eb7318fb 100644 --- a/app/static/src/sass/global/_wysiwyg.scss +++ b/app/static/src/sass/global/_wysiwyg.scss @@ -4,10 +4,12 @@ a.wys-button { .page__block--black & { color: $color-black; &:hover { - color: $color-main; + color: white; } } + @include margin(1); + } a.wys-button-small { @@ -17,10 +19,12 @@ a.wys-button-small { .page__block--black & { color: $color-black; &:hover { - color: $color-main; + color: white; } } + @include margin(1); + } a.wys-button-xsmall { @@ -30,10 +34,12 @@ a.wys-button-xsmall { .page__block--black & { color: $color-black; &:hover { - color: $color-main; + color: white; } } + @include margin(1); + } a.wys-button-black { @@ -48,6 +54,8 @@ a.wys-button-black { } } + @include margin(1); + } a.wys-button-black-small { @@ -63,6 +71,8 @@ a.wys-button-black-small { } } + @include margin(1); + } a.wys-button-black-xsmall { @@ -78,4 +88,6 @@ a.wys-button-black-xsmall { } } + @include margin(1); + } -- 2.39.5