Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Commit bc4e172

Browse files
committed
update built files
1 parent 7847054 commit bc4e172

32 files changed

+859
-64
lines changed

build/css/admin.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/css/vendors.css

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/js/vendors.min.js

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

styleguide/README.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9420,5 +9420,33 @@ <h2>Revision and Further Development of the Confederation Web Guidelines</h2>
94209420

94219421
<script type="text/javascript" src="js/main.min.js"></script>
94229422

9423+
9424+
<script>
9425+
if ($(window).width() > 767) {
9426+
9427+
$('[type=date]').each(function(){
9428+
9429+
// we need to change to type text to be able to write in another format
9430+
// Just uncomment the following line:
9431+
9432+
// $(this).prop('type', 'text');
9433+
9434+
var picker = new Pikaday({
9435+
field: $(this)[0],
9436+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
9437+
firstDay: 1, // sets monday as first day
9438+
theme: 'admin-theme',
9439+
i18n: {
9440+
previousMonth : 'Previous Month',
9441+
nextMonth : 'Next Month',
9442+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
9443+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
9444+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
9445+
}
9446+
});
9447+
});
9448+
9449+
}
9450+
</script>
94239451
</body>
94249452
</html>

styleguide/base_layout_-_forms_elements.html

Lines changed: 129 additions & 42 deletions
Large diffs are not rendered by default.

styleguide/base_layout_-_general.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9870,5 +9870,33 @@ <h2 id="form-icons">Form icons</h2>
98709870

98719871
<script type="text/javascript" src="js/main.min.js"></script>
98729872

9873+
9874+
<script>
9875+
if ($(window).width() > 767) {
9876+
9877+
$('[type=date]').each(function(){
9878+
9879+
// we need to change to type text to be able to write in another format
9880+
// Just uncomment the following line:
9881+
9882+
// $(this).prop('type', 'text');
9883+
9884+
var picker = new Pikaday({
9885+
field: $(this)[0],
9886+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
9887+
firstDay: 1, // sets monday as first day
9888+
theme: 'admin-theme',
9889+
i18n: {
9890+
previousMonth : 'Previous Month',
9891+
nextMonth : 'Next Month',
9892+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
9893+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
9894+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
9895+
}
9896+
});
9897+
});
9898+
9899+
}
9900+
</script>
98739901
</body>
98749902
</html>

styleguide/base_layout_-_tables.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12291,5 +12291,33 @@ <h1 id="g-unruled-table">Unruled Table</h1>
1229112291

1229212292
<script type="text/javascript" src="js/main.min.js"></script>
1229312293

12294+
12295+
<script>
12296+
if ($(window).width() > 767) {
12297+
12298+
$('[type=date]').each(function(){
12299+
12300+
// we need to change to type text to be able to write in another format
12301+
// Just uncomment the following line:
12302+
12303+
// $(this).prop('type', 'text');
12304+
12305+
var picker = new Pikaday({
12306+
field: $(this)[0],
12307+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
12308+
firstDay: 1, // sets monday as first day
12309+
theme: 'admin-theme',
12310+
i18n: {
12311+
previousMonth : 'Previous Month',
12312+
nextMonth : 'Next Month',
12313+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
12314+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
12315+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
12316+
}
12317+
});
12318+
});
12319+
12320+
}
12321+
</script>
1229412322
</body>
1229512323
</html>

styleguide/base_layout_-_typography.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9652,5 +9652,33 @@ <h2>End Page Link</h2>
96529652

96539653
<script type="text/javascript" src="js/main.min.js"></script>
96549654

9655+
9656+
<script>
9657+
if ($(window).width() > 767) {
9658+
9659+
$('[type=date]').each(function(){
9660+
9661+
// we need to change to type text to be able to write in another format
9662+
// Just uncomment the following line:
9663+
9664+
// $(this).prop('type', 'text');
9665+
9666+
var picker = new Pikaday({
9667+
field: $(this)[0],
9668+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
9669+
firstDay: 1, // sets monday as first day
9670+
theme: 'admin-theme',
9671+
i18n: {
9672+
previousMonth : 'Previous Month',
9673+
nextMonth : 'Next Month',
9674+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
9675+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
9676+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
9677+
}
9678+
});
9679+
});
9680+
9681+
}
9682+
</script>
96559683
</body>
96569684
</html>

styleguide/content_modules_-_content_containers.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9771,5 +9771,33 @@ <h1 id="c-dropdown-box">Collapsible Panel</h1>
97719771

97729772
<script type="text/javascript" src="js/main.min.js"></script>
97739773

9774+
9775+
<script>
9776+
if ($(window).width() > 767) {
9777+
9778+
$('[type=date]').each(function(){
9779+
9780+
// we need to change to type text to be able to write in another format
9781+
// Just uncomment the following line:
9782+
9783+
// $(this).prop('type', 'text');
9784+
9785+
var picker = new Pikaday({
9786+
field: $(this)[0],
9787+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
9788+
firstDay: 1, // sets monday as first day
9789+
theme: 'admin-theme',
9790+
i18n: {
9791+
previousMonth : 'Previous Month',
9792+
nextMonth : 'Next Month',
9793+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
9794+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
9795+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
9796+
}
9797+
});
9798+
});
9799+
9800+
}
9801+
</script>
97749802
</body>
97759803
</html>

styleguide/content_modules_-_functions.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9531,5 +9531,33 @@ <h3>Download list (General document)</h3>
95319531

95329532
<script type="text/javascript" src="js/main.min.js"></script>
95339533

9534+
9535+
<script>
9536+
if ($(window).width() > 767) {
9537+
9538+
$('[type=date]').each(function(){
9539+
9540+
// we need to change to type text to be able to write in another format
9541+
// Just uncomment the following line:
9542+
9543+
// $(this).prop('type', 'text');
9544+
9545+
var picker = new Pikaday({
9546+
field: $(this)[0],
9547+
format: 'YYYY-MM-DD', // must be a input[type=text] to change this, see above
9548+
firstDay: 1, // sets monday as first day
9549+
theme: 'admin-theme',
9550+
i18n: {
9551+
previousMonth : 'Previous Month',
9552+
nextMonth : 'Next Month',
9553+
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
9554+
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
9555+
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
9556+
}
9557+
});
9558+
});
9559+
9560+
}
9561+
</script>
95349562
</body>
95359563
</html>

0 commit comments

Comments
 (0)