Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
fixed warning $color argument for single-box-shadow
Browse files Browse the repository at this point in the history
WARNING: The $color argument for single-box-shadow is now the 5th argument instead of the 1st.
  • Loading branch information
mehulkaklotar committed Jan 6, 2015
1 parent fdcbe86 commit 9bd326a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/rtpanel/scss/_mobile-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $sidr-text-color: $white;
/* Theme Settings */
background: $sidr-background; color: $sidr-text-color; font-family: $sidr-font-family; font-size: $sidr-font-size;

@include single-box-shadow($sidr-background-shadow-color, 0, 0, 5px, 5px, inset);
@include single-box-shadow(0, 0, 5px, 5px, $sidr-background-shadow-color, inset);

ul {
display: block;
Expand All @@ -44,7 +44,7 @@ $sidr-text-color: $white;
&.sidr-class-current-menu-item {
border-top: none; line-height: 49px;
& > a, & > span {
@include single-box-shadow($sidr-background-shadow-color, 0, 0, 15px, 3px, inset);
@include single-box-shadow(0, 0, 15px, 3px, $sidr-background-shadow-color, inset);
}
}

Expand All @@ -62,7 +62,7 @@ $sidr-text-color: $white;
border-top: none; line-height: 41px;

& > a, & > span {
@include single-box-shadow($sidr-background-shadow-color, 0, 0, 15px, 3px, inset);
@include single-box-shadow(0, 0, 15px, 3px, $sidr-background-shadow-color, inset);
}
}

Expand All @@ -78,4 +78,4 @@ $sidr-text-color: $white;
// Menu Button
a.rtp-menu-icon { color: $white; font-size: rem-calc(21); display: none; float: left; margin-top: rem-calc(8); }

/* End Sidr Menu */
/* End Sidr Menu */

0 comments on commit 9bd326a

Please sign in to comment.