|
@@ -48,16 +48,18 @@
|
48
|
48
|
<input type="file" id="file-load" name="files[]" multiple class="form-control" style="display:none" />
|
49
|
49
|
<a href="" id="file-save-link" style="display:none">Hidden download link</a>
|
50
|
50
|
<button type="button" class="btn btn-info btn-block" id="button-help">Open Help</button>
|
|
51
|
+ <button type="button" class="btn btn-danger btn-block" id="button-clear">Delete all cards</button>
|
51
|
52
|
<button type="button" class="btn btn-primary btn-block" id="button-load-sample">Load sample cards (discards current data)</button>
|
52
|
53
|
<button type="button" class="btn btn-primary btn-block" id="button-load">Load cards from file</button>
|
53
|
54
|
<button type="button" class="btn btn-primary btn-block" id="button-save">Save cards to file</button>
|
|
55
|
+ <button type="button" class="btn btn-primary btn-block" id="button-sort-name">Sort cards by name</button>
|
54
|
56
|
<button type="button" class="btn btn-success btn-block" id="button-generate">Generate cards</button>
|
55
|
|
- <span class="help-block">Note: generated cards open in a new tab or window.</span>
|
|
57
|
+ <span class="help-block">Generated cards open in a new tab or window.</span>
|
56
|
58
|
</form>
|
57
|
59
|
<h3>Default values</h3>
|
58
|
60
|
<form role="form" class="form-horizontal">
|
59
|
61
|
<div class="form-group">
|
60
|
|
- <label for="small-icons" class="col-sm-3 control-label">Small icon</label>
|
|
62
|
+ <label for="small-icons" class="col-sm-3 control-label">Icon</label>
|
61
|
63
|
<div class="col-sm-9">
|
62
|
64
|
<div class="checkbox">
|
63
|
65
|
<label>
|
|
@@ -75,6 +77,12 @@
|
75
|
77
|
</div>
|
76
|
78
|
</div>
|
77
|
79
|
</div>
|
|
80
|
+ <div class="form-group">
|
|
81
|
+ <label class="col-sm-3 control-label"></label>
|
|
82
|
+ <div class="col-sm-9">
|
|
83
|
+ <button type="button" class="btn btn-primary btn-block" id="button-apply-color">Apply color to all cards</button>
|
|
84
|
+ </div>
|
|
85
|
+ </div>
|
78
|
86
|
<div class="form-group">
|
79
|
87
|
<label for="default-icon" class="col-sm-3 control-label">Icon</label>
|
80
|
88
|
<div class="col-sm-9">
|
|
@@ -87,14 +95,26 @@
|
87
|
95
|
</div>
|
88
|
96
|
</div>
|
89
|
97
|
<div class="form-group">
|
90
|
|
- <label for="default-title-size" class="col-sm-3 control-label">Title size</label>
|
|
98
|
+ <label class="col-sm-3 control-label"></label>
|
|
99
|
+ <div class="col-sm-9">
|
|
100
|
+ <button type="button" class="btn btn-primary btn-block" id="button-apply-icon">Apply icon to all cards</button>
|
|
101
|
+ </div>
|
|
102
|
+ </div>
|
|
103
|
+ <div class="form-group">
|
|
104
|
+ <label class="col-sm-3 control-label"></label>
|
|
105
|
+ <div class="col-sm-9">
|
|
106
|
+ <button type="button" class="btn btn-primary btn-block" id="button-apply-icon-back">Apply icon to all backs</button>
|
|
107
|
+ </div>
|
|
108
|
+ </div>
|
|
109
|
+ <div class="form-group">
|
|
110
|
+ <label for="default-title-size" class="col-sm-3 control-label">Title</label>
|
91
|
111
|
<div class="col-sm-9">
|
92
|
112
|
<div class="input-group">
|
93
|
113
|
<select class="form-control" id="default-title-size">
|
94
|
|
- <option value="big">big</option>
|
95
|
|
- <option value="normal" selected>normal</option>
|
96
|
|
- <option value="small">small</option>
|
97
|
|
- <option value="tiny">tiny</option>
|
|
114
|
+ <option value="big">big font</option>
|
|
115
|
+ <option value="normal" selected>normal font</option>
|
|
116
|
+ <option value="small">small font</option>
|
|
117
|
+ <option value="tiny">tiny font</option>
|
98
|
118
|
</select>
|
99
|
119
|
</div>
|
100
|
120
|
</div>
|