Skip to content

Commit 8a9a442

Browse files
committedApr 22, 2024
maintenance update
1 parent fb561d9 commit 8a9a442

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/package-lock.json
88
/temp.zip
99
/temp/
10+
/.vscode/

‎generator/index.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ <h4 class="panel-title">
331331
<!-- PANEL BODY -->
332332
<form role="form" class="form-horizontal">
333333
<div class="form-group">
334-
<label for="small-icons" class="col-sm-2 control-label">Icon</label>
335-
<div class="col-sm-10">
334+
<label for="small-icons" class="col-sm-4 control-label">Icon</label>
335+
<div class="col-sm-8">
336336
<div class="checkbox">
337337
<label>
338338
<input type="checkbox" checked id="small-icons"> Use small front
@@ -342,8 +342,8 @@ <h4 class="panel-title">
342342
</div>
343343
</div>
344344
<div class="form-group">
345-
<label for="default-color" class="col-sm-2 control-label">Color</label>
346-
<div class="col-sm-10">
345+
<label for="default-color" class="col-sm-4 control-label">Color</label>
346+
<div class="col-sm-8">
347347
<div class="input-group">
348348
<select id="default_color_selector" class="colorselector-data"></select>
349349
<input type="text" id="default-color" class="form-control"
@@ -377,7 +377,9 @@ <h4 class="panel-title">
377377
<option value="10">10pt font</option>
378378
</select>
379379
</div>
380-
<label for="default-card-font-size" class="col-sm-4 control-label">Font Size</label>
380+
</div>
381+
<div class="form-group">
382+
<label for="default-card-font-size" class="col-sm-2 control-label">Font Size</label>
381383
<div class="col-sm-8">
382384
<select class="form-control" id="default-card-font-size">
383385
<option value="smaller">Smaller</option>
@@ -389,6 +391,7 @@ <h4 class="panel-title">
389391
<option value="8">8px font</option>
390392
</select>
391393
</div>
394+
<div class="col-sm-2"></div>
392395
</div>
393396
<div class="form-group">
394397
</div>

‎generator/output.html

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
<link rel="stylesheet" type="text/css" href="css/card-size.css">
2424
<link rel="stylesheet" type="text/css" href="css/icons.css">
2525
<link rel="stylesheet" type="text/css" href="css/custom-icons.css">
26-
<link rel="stylesheet" type="text/css" href="css/class-icons.css">
2726
<link href="css/style.css" rel="stylesheet" />
2827
</head>
2928
<body class="page-background">

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"yauzl": "^2.10.0"
1414
},
1515
"scripts": {
16+
"start": "npx http-server ./generator",
1617
"test": "echo \"Error: no test specified\" && exit 1",
1718
"build": "node resources/tools/update-icons.js && node resources/tools/update-fonts.js"
1819
},

0 commit comments

Comments
 (0)
Please sign in to comment.