Skip to content

Commit f0afee6

Browse files
Merge branch 'master' into lazy-contribs
2 parents 9444bdc + 198c534 commit f0afee6

40 files changed

+1010
-657
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
"tap-spot": "^1.1.1",
131131
"through2": "^2.0.3",
132132
"uglifyjs-webpack-plugin": "^1.1.6",
133-
"webpack": "^4.29.6",
133+
"webpack": "^4.30.0",
134134
"webpack-cli": "^3.2.3",
135135
"webpack-dev-server": "^3.2.1",
136136
"webpack-merge": "^4.1.0"

repositories/loaders.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"webpack-contrib/cache-loader",
3838
"webpack-contrib/thread-loader",
3939
"webpack-contrib/polymer-webpack-loader",
40-
"webpack-contrib/config-loader",
4140
"babel/babel-loader",
4241
"postcss/postcss-loader",
4342
"peerigon/extract-loader"

src/components/Contributors/Contributors.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
height: 45px;
1818
width: 45px;
1919
border-radius: 50%;
20-
box-shadow: 0 0 2px rgba(0,0,0,0.3);
20+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
2121
}
2222

2323
.contributor__name {
@@ -30,7 +30,7 @@
3030
overflow-wrap: break-word;
3131
hyphens: auto;
3232
color: getColor(fiord);
33-
box-shadow: 0 0 2px rgba(0,0,0,0.3);
33+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
3434
background: transparentize(getColor(white), 0.05);
3535
transition: color 0.1s;
3636
}

src/components/Dropdown/Dropdown.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@
2121
}
2222

2323
.dropdown__arrow {
24-
2524
&:before {
26-
content: "\25be";
25+
content: '\25be';
2726
}
2827
}
2928

@@ -34,7 +33,7 @@
3433
right: 0;
3534
font-size: getFontSize(-1);
3635
margin: auto;
37-
background-color: #2B3A42;
36+
background-color: #2b3a42;
3837
z-index: 1;
3938

4039
ul {
@@ -47,7 +46,9 @@
4746
color: #fff;
4847
transition: all 250ms;
4948

50-
a:link, a:visited, a:hover {
49+
a:link,
50+
a:visited,
51+
a:hover {
5152
color: #fff;
5253
}
5354

src/components/Footer/Footer.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
.footer__left {
3737
@include break {
38-
padding-left:1.5em;
38+
padding-left: 1.5em;
3939
}
4040
}
4141

@@ -55,12 +55,12 @@
5555
}
5656

5757
.footer__icon {
58-
display:inline-block;
59-
height:35px;
58+
display: inline-block;
59+
height: 35px;
6060

6161
img {
62-
width:auto;
63-
height:100%;
62+
width: auto;
63+
height: 100%;
6464
}
6565
}
6666

src/components/Logo/Logo.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.logo {
2-
float:left;
3-
width:auto;
4-
height:35px;
5-
opacity:0.9;
6-
transition:opacity 250ms;
2+
float: left;
3+
width: auto;
4+
height: 35px;
5+
opacity: 0.9;
6+
transition: opacity 250ms;
77

88
&:hover {
9-
opacity:1;
9+
opacity: 1;
1010
}
1111
}

src/components/Markdown/Markdown.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
color: inherit;
4545
}
4646

47-
a[aria-hidden="true"] {
47+
a[aria-hidden='true'] {
4848
margin-left: 8px;
4949
font-size: 0.8em;
5050
height: 1em;
@@ -53,7 +53,7 @@
5353
transition: all 250ms;
5454
}
5555

56-
&:hover a[aria-hidden="true"] {
56+
&:hover a[aria-hidden='true'] {
5757
opacity: 1;
5858
visibility: visible;
5959
}
@@ -171,7 +171,7 @@
171171
color: #907a6e;
172172

173173
.tip-content::before {
174-
content: "[TODO]: ";
174+
content: '[TODO]: ';
175175
font-style: normal;
176176
}
177177
}
@@ -275,7 +275,7 @@
275275
}
276276
}
277277

278-
img:not([class*="support__"]) {
278+
img:not([class*='support__']) {
279279
max-width: 100%;
280280
height: auto;
281281
}
@@ -329,7 +329,7 @@
329329
cursor: pointer;
330330

331331
&::after {
332-
content: "\F103";
332+
content: '\F103';
333333
float: left;
334334
position: relative;
335335
left: -2px;

src/components/Markdown/prism-theme.scss

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@import 'functions';
22
@import 'mixins';
33

4-
code[class*="lang-"],
5-
pre[class*="lang-"] {
4+
code[class*='lang-'],
5+
pre[class*='lang-'] {
66
text-align: left;
77
white-space: pre;
88
word-spacing: normal;
@@ -20,17 +20,17 @@ pre[class*="lang-"] {
2020
}
2121

2222
/* Code blocks */
23-
pre[class*="lang-"] {
24-
padding: .4em .8em;
25-
margin: .5em 0;
23+
pre[class*='lang-'] {
24+
padding: 0.4em 0.8em;
25+
margin: 0.5em 0;
2626
overflow: auto;
2727
background-color: getColor(elephant);
2828
}
2929

3030
/* Inline code */
31-
:not(pre) > code[class*="lang-"] {
32-
padding: .2em;
33-
border-radius: .3em;
31+
:not(pre) > code[class*='lang-'] {
32+
padding: 0.2em;
33+
border-radius: 0.3em;
3434
box-shadow: none;
3535
white-space: normal;
3636
}
@@ -47,7 +47,7 @@ pre[class*="lang-"] {
4747
}
4848

4949
.namespace {
50-
opacity: .7;
50+
opacity: 0.7;
5151
}
5252

5353
.token.property,
@@ -66,7 +66,7 @@ pre[class*="lang-"] {
6666
.token.regex,
6767
.token.attr-value,
6868
.token.important {
69-
color: desaturate(#2dd271, 23%)
69+
color: desaturate(#2dd271, 23%);
7070
}
7171

7272
.token.inserted {

src/components/Navigation/Navigation.scss

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
text-shadow: 0 0 0 #666;
120120
transition: all 250ms;
121121

122-
&::-webkit-input-placeholder{
122+
&::-webkit-input-placeholder {
123123
color: lighten(getColor(fiord), 15%);
124124
text-shadow: none;
125125
-webkit-text-fill-color: initial;
@@ -213,8 +213,12 @@
213213
}
214214

215215
@media (max-width: 720px) {
216-
.navigation__mobile { display: block; }
217-
.navigation__items { display: none; }
216+
.navigation__mobile {
217+
display: block;
218+
}
219+
.navigation__items {
220+
display: none;
221+
}
218222
.navigation--search .navigation__logo {
219223
pointer-events: none;
220224
overflow: hidden;

src/components/Navigation/Search.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
content: none;
1414
}
1515

16-
[class^=ds-dataset-] {
16+
[class^='ds-dataset-'] {
1717
border-radius: 0;
1818
border-color: getColor(malibu);
1919
border-width: 2px 0;
@@ -75,7 +75,7 @@
7575
padding: 8px 16px 8px 12px;
7676
}
7777

78-
.ds-suggestion:nth-child(n+2) {
78+
.ds-suggestion:nth-child(n + 2) {
7979
.algolia-docsearch-suggestion--category-header {
8080
border-top: 1px solid #dedede;
8181
}

0 commit comments

Comments
 (0)