Skip to content

Commit d71223c

Browse files
committed
updated to latest version of Sass, fixed deprecation warnings
1 parent 9f40242 commit d71223c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.themes/classic/sass/base/_layout.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,17 @@ body.sidebar-footer {
127127
@media only screen and (min-width: 750px) {
128128
aside.sidebar { @include collapse-sidebar; }
129129
}
130+
#main, #content, .sidebar {
131+
@extend .group;
132+
}
130133
@media only screen and (min-width: 768px) {
131134
body { -webkit-text-size-adjust: auto; }
132135
body > header { font-size: $header-font-size * 1.2; }
133136
#main {
134-
@extend .group;
135137
padding: 0;
136138
margin: 0 auto;
137139
}
138140
#content {
139-
@extend .group;
140141
overflow: visible;
141142
margin-right: $sidebar-width-medium;
142143
position: relative;
@@ -149,7 +150,6 @@ body.sidebar-footer {
149150
}
150151
}
151152
aside.sidebar {
152-
@extend .group;
153153
width: $sidebar-width-medium - $sidebar-pad-medium*2;
154154
padding: 0 $sidebar-pad-medium $sidebar-pad-medium;
155155
background: none;
@@ -180,7 +180,6 @@ body.sidebar-footer {
180180
padding: 1.2em $sidebar-pad-wide $sidebar-pad-wide;
181181
.collapse-sidebar & {
182182
padding: { left: $pad-wide; right: $pad-wide; }
183-
@extend .group;
184183
}
185184
}
186185
}
@@ -190,3 +189,4 @@ body.sidebar-footer {
190189
ul, ol { margin-left: 0; }
191190
}
192191
}
192+

.themes/classic/sass/partials/_navigation.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body > nav {
1313
.search {
1414
padding: .3em .5em 0;
1515
font-size: .85em;
16-
@extend .sans;
16+
font-family: $sans;
1717
line-height: 1.1em;
1818
width: 95%;
1919
@include border-radius(.5em);
@@ -54,7 +54,7 @@ body > nav {
5454
}
5555
a {
5656
@include link-colors($nav-color, $nav-color-hover, $visited: $nav-color);
57-
@extend .sans;
57+
font-family: $sans;
5858
text-shadow: lighten($nav-bg, 12) 0 1px;
5959
float: left;
6060
text-decoration: none;
@@ -134,3 +134,4 @@ body > nav {
134134
a[rel=subscribe-rss]{ @include mask-subscription-nav('rss.png'); }
135135
a[rel=subscribe-email]{ @include mask-subscription-nav('email.png'); }
136136
}
137+

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ GEM
3939
rubypython (0.5.1)
4040
blankslate (>= 2.1.2.3)
4141
ffi (~> 1.0.7)
42-
sass (3.1.5)
42+
sass (3.1.18)
4343
sinatra (1.2.6)
4444
rack (~> 1.1)
4545
tilt (>= 1.2.2, < 2.0)

0 commit comments

Comments
 (0)