From 0f513850ab64820674acf727e16bfc412b05002f Mon Sep 17 00:00:00 2001 From: ines Date: Thu, 18 May 2017 22:16:51 +0200 Subject: [PATCH] Use same colour for table foot rot and infobox --- website/assets/css/_components/_tables.sass | 2 +- website/assets/css/_variables.sass | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/website/assets/css/_components/_tables.sass b/website/assets/css/_components/_tables.sass index 6ade4f6a1..cbc861803 100644 --- a/website/assets/css/_components/_tables.sass +++ b/website/assets/css/_components/_tables.sass @@ -13,7 +13,7 @@ background: rgba($color-subtle-light, 0.35) &.c-table__row--foot - background: rgba($color-theme, 0.025) + background: $color-theme-light border-top: 2px solid $color-theme .c-table__cell:first-child diff --git a/website/assets/css/_variables.sass b/website/assets/css/_variables.sass index 8f7cadb99..d6ab548b4 100644 --- a/website/assets/css/_variables.sass +++ b/website/assets/css/_variables.sass @@ -27,7 +27,6 @@ $font-code: 'Source Code Pro', Consolas, 'Andale Mono', Menlo, Monaco, Courier, // Colors $colors: ( blue: #09a3d5, red: #d9515d ) -$colors-light: (blue: #cceaf4, red: #f9d7da) $color-back: #fff !default $color-front: #1a1e23 !default @@ -35,7 +34,7 @@ $color-dark: lighten($color-front, 20) !default $color-theme: map-get($colors, $theme) $color-theme-dark: darken(map-get($colors, $theme), 5) -$color-theme-light: map-get($colors-light, $theme) +$color-theme-light: rgba($color-theme, 0.05) $color-subtle: #ddd !default $color-subtle-light: #f6f6f6 !default