Skip to content

Commit 199aca0

Browse files
committed
use azure-storage credentials
1 parent 0a004ee commit 199aca0

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

build/upload.js

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require('../../credentials/dlx-js');
1+
require('../../credentials/azure-storage');
22

33
const contentSetings = {
44
contentEncoding: `utf8`,
@@ -16,13 +16,3 @@ storage.createBlockBlobFromLocalFile(`css`, `flexbox-reset.css`, `flexbox-reset.
1616
if (err) console.error(err);
1717
else console.log(`"flexbox-reset.css" uploaded to CDN`);
1818
});
19-
20-
storage.createBlockBlobFromLocalFile(`less`, `reset.less`, `flexbox-reset.less`, { contentSetings }, err => {
21-
if (err) console.error(err);
22-
else console.log(`"reset.less" uploaded to CDN`);
23-
});
24-
25-
storage.createBlockBlobFromLocalFile(`less`, `reset.css`, `flexbox-reset.css`, { contentSetings }, err => {
26-
if (err) console.error(err);
27-
else console.log(`"reset.css" uploaded to CDN`);
28-
});

flexbox-reset.less

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ b, u, i,
1111
// lists
1212
dl, dt, dd, ol, ul, li,
1313
// forms and tables
14-
button, caption, input, fieldset, form, label, legend, table, textarea, tbody, tfoot, thead, tr, th, td,
14+
button, caption, input, fieldset, form, label, legend, output, table, textarea, tbody, tfoot, thead, tr, th, td,
1515
// semantic elements
1616
article, aside, audio, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, mark, menu, nav, option, output, ruby, section, select, summary, time, video {
1717
border: 0;
@@ -32,7 +32,7 @@ a, abbr, acronym, b, bdo, big, br, cite, code, del, dfn, em, i, ins, kbd, mark,
3232
}
3333

3434
// set elements whose contents are typically inline to display: block
35-
blockquote, button, caption, dd, dt, figcaption, h1, h2, h3, h4, h5, h6, input, legend, option, output, p, pre, select, summary, textarea {
35+
blockquote, button, caption, dd, dt, figcaption, h1, h2, h3, h4, h5, h6, input, legend, option, output, p, pre, select, textarea {
3636
display: block;
3737
}
3838

@@ -107,3 +107,7 @@ thead {
107107
tr {
108108
display: table-row;
109109
}
110+
111+
[hidden] {
112+
display: none;
113+
}

0 commit comments

Comments
 (0)