Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
fix(styling): use 'background' instead of 'background-color' on title…
Browse files Browse the repository at this point in the history
… slide
  • Loading branch information
Philipp Burgmer committed Oct 27, 2014
1 parent fcea269 commit 3871984
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ $w11k-slides-color-2: #111 !default;
* * * * * * * * * * * * * * * * * * * */

$w11k-slides-title-top-text-color: $w11k-slides-color-1 !default;
$w11k-slides-title-top-background-color: transparent !default;
$w11k-slides-title-top-background: transparent !default;
$w11k-slides-title-separator-color: darken($w11k-slides-color-1, 8%) !default;
$w11k-slides-title-bottom-text-color: $w11k-slides-color-2 !default;
$w11k-slides-title-bottom-background-color: transparent !default;
$w11k-slides-title-bottom-background: transparent !default;

$w11k-slides-slide-regular-header-background: $w11k-slides-color-1 !default;
$w11k-slides-slide-regular-header-text-color: white !default;
Expand Down
4 changes: 2 additions & 2 deletions src/slides/_types.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
height: 39.2%;
text-align: center;
color: $w11k-slides-title-top-text-color;
background-color: $w11k-slides-title-top-background-color;
background: $w11k-slides-title-top-background;
padding: 0 2em;

.content {
Expand All @@ -23,7 +23,7 @@
position: relative;
height: 62.8%;
border-top: 0.3em solid $w11k-slides-title-separator-color;
background-color: $w11k-slides-title-bottom-background-color;
background: $w11k-slides-title-bottom-background;
padding: 0 2em;

.content {
Expand Down
4 changes: 2 additions & 2 deletions src/slides/types.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
height: 39.2%;
text-align: center;
color: @w11k-slides-title-top-text-color;
background-color: @w11k-slides-title-top-background-color;
background: @w11k-slides-title-top-background;
padding: 0 2em;

.content {
Expand All @@ -23,7 +23,7 @@
position: relative;
height: 62.8%;
border-top: 0.3em solid @w11k-slides-title-separator-color;
background-color: @w11k-slides-title-bottom-background-color;
background: @w11k-slides-title-bottom-background;
padding: 0 2em;

.content {
Expand Down
4 changes: 2 additions & 2 deletions src/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
* * * * * * * * * * * * * * * * * * * */

@w11k-slides-title-top-text-color: @w11k-slides-color-1;
@w11k-slides-title-top-background-color: transparent;
@w11k-slides-title-top-background: transparent;
@w11k-slides-title-separator-color: darken(@w11k-slides-color-1, 8%);
@w11k-slides-title-bottom-text-color: @w11k-slides-color-2;
@w11k-slides-title-bottom-background-color: transparent;
@w11k-slides-title-bottom-background: transparent;

@w11k-slides-slide-regular-header-background: @w11k-slides-color-1;
@w11k-slides-slide-regular-header-text-color: white;
Expand Down

0 comments on commit 3871984

Please sign in to comment.