Skip to content

Commit 97e2015

Browse files
committed
1 parent 30a7fea commit 97e2015

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

Diff for: packages/uikit-default/dist/styleguide/bower_components/prism.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/uikit-default/dist/styleguide/css/pattern-lab.css

+8-5
Original file line numberDiff line numberDiff line change
@@ -1006,9 +1006,9 @@
10061006
display: -ms-inline-flexbox;
10071007
display: inline-flex;
10081008
/* 1 */
1009-
-webkit-box-align: center;
1010-
-ms-flex-align: center;
1011-
align-items: center;
1009+
-webkit-box-align: start;
1010+
-ms-flex-align: start;
1011+
align-items: flex-start;
10121012
/* 1 */
10131013
padding: 1rem 0 0.3rem;
10141014
color: #808080 !important;
@@ -1309,11 +1309,14 @@
13091309
display: inline-block;
13101310
width: 5px;
13111311
height: 5px;
1312-
margin-left: 5px;
1312+
margin-left: 10px;
13131313
position: relative;
1314-
top: 1px;
1314+
top: 5px;
1315+
left: 0;
13151316
border-radius: 50%;
13161317
background: #02A4D5;
1318+
line-height: 4px;
1319+
text-indent: 10px;
13171320
}
13181321
.pl-c-pattern-state--complete {
13191322
background: #03790F;

Diff for: packages/uikit-default/dist/styleguide/js/patternlab-pattern.js

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ function receiveIframeMessage(event) {
9292

9393
}
9494
window.addEventListener("message", receiveIframeMessage, false);
95+
// jshint ignore: start
96+
9597
/*!
9698
* clipboard.js v1.7.1
9799
* https://zenorocha.github.io/clipboard.js

Diff for: packages/uikit-default/dist/styleguide/js/patternlab-viewer.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// jshint ignore: start
2+
13
/*!
24
* clipboard.js v1.7.1
35
* https://zenorocha.github.io/clipboard.js

Diff for: packages/uikit-default/src/js/clipboard.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/uikit-default/src/sass/scss/components/_pattern-states.scss

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@
1010
display: inline-block;
1111
width: 5px;
1212
height: 5px;
13-
margin-left: 5px;
13+
margin-left: 10px;
1414
position: relative;
15-
top: 1px;
15+
top: 5px;
16+
left: 0;
1617
border-radius: 50%;
1718
background: $pl-color-state-info;
19+
line-height: 4px;
20+
text-indent: 10px;
1821

1922
&--complete {
2023
background: $pl-color-state-complete;
@@ -34,4 +37,4 @@
3437
*/
3538
.complete:before {
3639
color: #03790F !important;
37-
}
40+
}

Diff for: packages/uikit-default/src/sass/scss/components/_pattern.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
*/
5353
.pl-c-pattern__title-link {
5454
display: inline-flex; /* 1 */
55-
align-items: center; /* 1 */
55+
align-items: flex-start; /* 1 */
5656
padding: $pl-pad 0 0.3rem;
5757
color: $pl-color-gray-50 !important;
5858
text-decoration: none;
@@ -128,4 +128,4 @@
128128
border-top-right-radius: 0;
129129
max-height: 150rem;
130130
}
131-
}
131+
}

0 commit comments

Comments
 (0)