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

Commit

Permalink
Merge branch 'hotfix/0.8.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Burgmer committed Oct 27, 2014
2 parents ca889ad + f9bdd4c commit d5df568
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# w11k-slides Changelog

<a name="0.8.2"></a>
## 0.8.2 (2014-10-27)


### Bug Fixes

* **styling:** use 'background' instead of 'background-color' on title slide ([3871984c](https://github.com/w11k/w11k-slides/commit/3871984cbd0e33ec4c96f5e307a4a04ba1a0ce64))


<a name="0.8.1"></a>
## 0.8.1 (2014-10-24)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "w11k-slides",
"version": "0.8.1",
"version": "0.8.2",
"description": "AngularJS module to create simple slide shows",
"keywords": [ "angular", "angularjs", "slides", "slide-show", "presentation" ],

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "w11k-slides",
"version": "0.8.1",
"version": "0.8.2",

"description": "AngularJS module to create simple slide shows",
"keywords": [ "angular", "angularjs", "slides", "slide-show", "presentation" ],
Expand Down
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 d5df568

Please sign in to comment.