Skip to content

Commit ea9d839

Browse files
Restore build artifacts to match base commit
Co-authored-by: aarongustafson <75736+aarongustafson@users.noreply.github.com>
1 parent 92795be commit ea9d839

12 files changed

Lines changed: 9748 additions & 0 deletions

src/temp/c/advanced.css

Lines changed: 1298 additions & 0 deletions
Large diffs are not rendered by default.

src/temp/c/advanced.min.css

Lines changed: 891 additions & 0 deletions
Large diffs are not rendered by default.

src/temp/c/default.css

Lines changed: 3225 additions & 0 deletions
Large diffs are not rendered by default.

src/temp/c/default.min.css

Lines changed: 2375 additions & 0 deletions
Large diffs are not rendered by default.

src/temp/c/dialog-polyfill.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
dialog {
2+
position: absolute;
3+
left: 0;
4+
right: 0;
5+
width: -moz-fit-content;
6+
width: -webkit-fit-content;
7+
width: fit-content;
8+
height: -moz-fit-content;
9+
height: -webkit-fit-content;
10+
height: fit-content;
11+
margin: auto;
12+
border: solid;
13+
padding: 1em;
14+
background: white;
15+
color: black;
16+
display: block;
17+
}
18+
19+
dialog:not([open]) {
20+
display: none;
21+
}
22+
23+
dialog + .backdrop {
24+
position: fixed;
25+
top: 0;
26+
right: 0;
27+
bottom: 0;
28+
left: 0;
29+
background: rgba(0, 0, 0, 0.1);
30+
}
31+
32+
._dialog_overlay {
33+
position: fixed;
34+
top: 0;
35+
right: 0;
36+
bottom: 0;
37+
left: 0;
38+
}
39+
40+
dialog.fixed {
41+
position: fixed;
42+
top: 50%;
43+
-webkit-transform: translate(0, -50%);
44+
transform: translate(0, -50%);
45+
}

src/temp/c/dialog-polyfill.min.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
._dialog_overlay,
2+
dialog + .backdrop {
3+
right: 0;
4+
bottom: 0;
5+
left: 0;
6+
position: fixed;
7+
}
8+
dialog {
9+
position: absolute;
10+
left: 0;
11+
right: 0;
12+
width: -moz-fit-content;
13+
width: -webkit-fit-content;
14+
width: fit-content;
15+
height: -moz-fit-content;
16+
height: -webkit-fit-content;
17+
height: fit-content;
18+
margin: auto;
19+
border: solid;
20+
padding: 1em;
21+
background: #fff;
22+
color: #000;
23+
display: block;
24+
}
25+
dialog:not([open]) {
26+
display: none;
27+
}
28+
dialog + .backdrop {
29+
top: 0;
30+
background: rgba(0, 0, 0, 0.1);
31+
}
32+
._dialog_overlay {
33+
top: 0;
34+
}
35+
dialog.fixed {
36+
position: fixed;
37+
top: 50%;
38+
-webkit-transform: translate(0, -50%);
39+
transform: translate(0, -50%);
40+
}

src/temp/c/feed.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
* {
2+
display: block;
3+
}
4+
5+
feed {
6+
margin: 2em;
7+
background: #fff;
8+
border: 1px solid #ddd;
9+
padding: 1em;
10+
font-family: "Lucida Grande", helvetica, arial, sans-serif;
11+
}
12+
13+
title {
14+
font-size: x-large;
15+
}
16+
17+
entry {
18+
margin: 25px 0 20px 0;
19+
}
20+
21+
entry > title {
22+
font-size: medium;
23+
}
24+
25+
entry > link::after {
26+
content: attr(href);
27+
color: grey;
28+
font-size: small;
29+
margin-top: 6px;
30+
margin-bottom: 6px;
31+
}
32+
33+
generator,
34+
updated,
35+
id,
36+
author,
37+
entry > published,
38+
entry > updated,
39+
entry > id,
40+
entry > author,
41+
entry > content {
42+
display: none;
43+
}

src/temp/c/feed.min.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
* {
2+
display: block;
3+
}
4+
feed {
5+
margin: 2em;
6+
background: #fff;
7+
border: 1px solid #ddd;
8+
padding: 1em;
9+
font-family: "Lucida Grande", helvetica, arial, sans-serif;
10+
}
11+
title {
12+
font-size: x-large;
13+
}
14+
entry {
15+
margin: 25px 0 20px;
16+
}
17+
entry > title {
18+
font-size: medium;
19+
}
20+
entry > link::after {
21+
content: attr(href);
22+
color: grey;
23+
font-size: small;
24+
margin-top: 6px;
25+
margin-bottom: 6px;
26+
}
27+
author,
28+
entry > author,
29+
entry > content,
30+
entry > id,
31+
entry > published,
32+
entry > updated,
33+
generator,
34+
id,
35+
updated {
36+
display: none;
37+
}

0 commit comments

Comments
 (0)