bootsteam-theme 5.3.1 → 5.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootsteam-theme.css +347 -296
- package/dist/bootsteam-theme.min.css +1 -1
- package/docs/alerts.html +9 -8
- package/docs/badges.html +19 -18
- package/docs/buttons.html +12 -8
- package/docs/carousel.html +8 -7
- package/docs/collapse.html +39 -7
- package/docs/containers.html +100 -65
- package/docs/css/bootsteam-theme.min.css +1 -1
- package/docs/dialogs.html +8 -7
- package/docs/forms.html +53 -29
- package/docs/index.html +8 -7
- package/docs/navs.html +11 -10
- package/docs/offcanvas.html +8 -7
- package/docs/plugins.html +9 -8
- package/docs/spinners.html +8 -7
- package/docs/tables.html +28 -178
- package/docs/themes.html +20 -66
- package/docs/toasts.html +12 -11
- package/docs/typography.html +50 -44
- package/docs-templates/alerts.html +1 -1
- package/docs-templates/badges.html +11 -11
- package/docs-templates/buttons.html +4 -1
- package/docs-templates/collapse.html +31 -0
- package/docs-templates/containers.html +101 -60
- package/docs-templates/forms.html +46 -23
- package/docs-templates/navs.html +3 -3
- package/docs-templates/partials/_nav.html +6 -5
- package/docs-templates/partials/_scripts.html +3 -2
- package/docs-templates/plugins.html +1 -1
- package/docs-templates/tables.html +20 -171
- package/docs-templates/themes.html +12 -3
- package/docs-templates/toasts.html +4 -4
- package/docs-templates/typography.html +41 -36
- package/package.json +2 -2
- package/src/_alerts.scss +7 -7
- package/src/_buttons.scss +93 -0
- package/src/_darkThemeOverrides.scss +9 -3
- package/src/_detailsElement.scss +44 -0
- package/src/_forms.scss +1 -113
- package/src/_tables.scss +2 -1
- package/src/_text.scss +48 -0
- package/src/_twr-variables.scss +18 -9
- package/src/bootsteam.scss +5 -1
- package/src/plugins/_slimSelect.scss +1 -1
|
@@ -49,47 +49,6 @@
|
|
|
49
49
|
</tr>
|
|
50
50
|
</tbody>
|
|
51
51
|
</table>
|
|
52
|
-
|
|
53
|
-
<h4>Custom Background Color</h4>
|
|
54
|
-
<p>
|
|
55
|
-
The class <code>table-bg-tertiary</code> is a custom class that
|
|
56
|
-
uses a background color that is slightly darker than the normal
|
|
57
|
-
and auto adjusts with the light and dark.
|
|
58
|
-
</p>
|
|
59
|
-
|
|
60
|
-
<table class="table table-bordered">
|
|
61
|
-
<thead class="table-bg-tertiary">
|
|
62
|
-
<tr>
|
|
63
|
-
<th scope="col">#</th>
|
|
64
|
-
<th scope="col">First</th>
|
|
65
|
-
<th scope="col">Last</th>
|
|
66
|
-
<th scope="col">Handle</th>
|
|
67
|
-
</tr>
|
|
68
|
-
</thead>
|
|
69
|
-
<tbody>
|
|
70
|
-
<tr>
|
|
71
|
-
<th scope="row">1</th>
|
|
72
|
-
<td>Mark</td>
|
|
73
|
-
<td>Otto</td>
|
|
74
|
-
<td>@mdo</td>
|
|
75
|
-
</tr>
|
|
76
|
-
<tr>
|
|
77
|
-
<th scope="row">2</th>
|
|
78
|
-
<td>Jacob</td>
|
|
79
|
-
<td>Thornton</td>
|
|
80
|
-
<td>@fat</td>
|
|
81
|
-
</tr>
|
|
82
|
-
<tr>
|
|
83
|
-
<th scope="row">3</th>
|
|
84
|
-
<td>Larry</td>
|
|
85
|
-
<td>the Bird</td>
|
|
86
|
-
<td>@twitter</td>
|
|
87
|
-
</tr>
|
|
88
|
-
</tbody>
|
|
89
|
-
</table>
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
52
|
<h4>Dark</h4>
|
|
94
53
|
<table class="table table-dark">
|
|
95
54
|
<thead>
|
|
@@ -121,11 +80,9 @@
|
|
|
121
80
|
</tr>
|
|
122
81
|
</tbody>
|
|
123
82
|
</table>
|
|
124
|
-
|
|
125
|
-
|
|
126
83
|
<h4>Header Options</h4>
|
|
127
84
|
<table class="table">
|
|
128
|
-
<thead class="
|
|
85
|
+
<thead class="thead-dark">
|
|
129
86
|
<tr>
|
|
130
87
|
<th scope="col">#</th>
|
|
131
88
|
<th scope="col">First</th>
|
|
@@ -156,7 +113,7 @@
|
|
|
156
113
|
</table>
|
|
157
114
|
|
|
158
115
|
<table class="table">
|
|
159
|
-
<thead class="
|
|
116
|
+
<thead class="thead-light">
|
|
160
117
|
<tr>
|
|
161
118
|
<th scope="col">#</th>
|
|
162
119
|
<th scope="col">First</th>
|
|
@@ -185,39 +142,6 @@
|
|
|
185
142
|
</tr>
|
|
186
143
|
</tbody>
|
|
187
144
|
</table>
|
|
188
|
-
|
|
189
|
-
<table class="table">
|
|
190
|
-
<thead class="bg-body-tertiary">
|
|
191
|
-
<tr>
|
|
192
|
-
<th scope="col">#</th>
|
|
193
|
-
<th scope="col">First</th>
|
|
194
|
-
<th scope="col">Last</th>
|
|
195
|
-
<th scope="col">Handle</th>
|
|
196
|
-
</tr>
|
|
197
|
-
</thead>
|
|
198
|
-
<tbody>
|
|
199
|
-
<tr>
|
|
200
|
-
<th scope="row">1</th>
|
|
201
|
-
<td>Mark</td>
|
|
202
|
-
<td>Otto</td>
|
|
203
|
-
<td>@mdo</td>
|
|
204
|
-
</tr>
|
|
205
|
-
<tr>
|
|
206
|
-
<th scope="row">2</th>
|
|
207
|
-
<td>Jacob</td>
|
|
208
|
-
<td>Thornton</td>
|
|
209
|
-
<td>@fat</td>
|
|
210
|
-
</tr>
|
|
211
|
-
<tr>
|
|
212
|
-
<th scope="row">3</th>
|
|
213
|
-
<td>Larry</td>
|
|
214
|
-
<td>the Bird</td>
|
|
215
|
-
<td>@twitter</td>
|
|
216
|
-
</tr>
|
|
217
|
-
</tbody>
|
|
218
|
-
</table>
|
|
219
|
-
|
|
220
|
-
|
|
221
145
|
<h4>Striped Light</h4>
|
|
222
146
|
<table class="table table-striped">
|
|
223
147
|
<thead>
|
|
@@ -400,7 +324,7 @@
|
|
|
400
324
|
</tbody>
|
|
401
325
|
</table>
|
|
402
326
|
<h4>Theme Colors</h4>
|
|
403
|
-
<table class="table table-hover
|
|
327
|
+
<table class="table table-hover">
|
|
404
328
|
<thead>
|
|
405
329
|
<tr>
|
|
406
330
|
<th scope="col">Type</th>
|
|
@@ -461,7 +385,7 @@
|
|
|
461
385
|
</tr>
|
|
462
386
|
</tbody>
|
|
463
387
|
</table>
|
|
464
|
-
<table class="table table-hover table-
|
|
388
|
+
<table class="table table-hover table-dark">
|
|
465
389
|
<thead>
|
|
466
390
|
<tr>
|
|
467
391
|
<th scope="col">Type</th>
|
|
@@ -475,16 +399,6 @@
|
|
|
475
399
|
<td>Cell</td>
|
|
476
400
|
<td>Cell</td>
|
|
477
401
|
</tr>
|
|
478
|
-
<tr class="table-active">
|
|
479
|
-
<th scope="row">Active</th>
|
|
480
|
-
<td>Cell</td>
|
|
481
|
-
<td>Cell</td>
|
|
482
|
-
</tr>
|
|
483
|
-
<tr>
|
|
484
|
-
<th scope="row">Default</th>
|
|
485
|
-
<td>Cell</td>
|
|
486
|
-
<td>Cell</td>
|
|
487
|
-
</tr>
|
|
488
402
|
<tr>
|
|
489
403
|
<th scope="row">Default</th>
|
|
490
404
|
<td>Cell</td>
|
|
@@ -495,125 +409,45 @@
|
|
|
495
409
|
<td>Cell</td>
|
|
496
410
|
<td>Cell</td>
|
|
497
411
|
</tr>
|
|
498
|
-
<tr class="table-primary">
|
|
499
|
-
<th scope="row">Primary</th>
|
|
500
|
-
<td>Cell</td>
|
|
501
|
-
<td>Cell</td>
|
|
502
|
-
</tr>
|
|
503
|
-
<tr class="table-primary table-active">
|
|
504
|
-
<th scope="row">Primary</th>
|
|
505
|
-
<td>Cell</td>
|
|
506
|
-
<td>Cell</td>
|
|
507
|
-
</tr>
|
|
508
|
-
<tr class="table-secondary">
|
|
509
|
-
<th scope="row">Secondary</th>
|
|
510
|
-
<td>Cell</td>
|
|
511
|
-
<td>Cell</td>
|
|
512
|
-
</tr>
|
|
513
412
|
<tr class="table-secondary">
|
|
514
413
|
<th scope="row">Secondary</th>
|
|
515
414
|
<td>Cell</td>
|
|
516
415
|
<td>Cell</td>
|
|
517
416
|
</tr>
|
|
518
|
-
<tr class="table-secondary table-active">
|
|
519
|
-
<th scope="row">Secondary</th>
|
|
520
|
-
<td>Cell</td>
|
|
521
|
-
<td>Cell</td>
|
|
522
|
-
</tr>
|
|
523
|
-
<tr class="table-success">
|
|
524
|
-
<th scope="row">Success</th>
|
|
525
|
-
<td>Cell</td>
|
|
526
|
-
<td>Cell</td>
|
|
527
|
-
</tr>
|
|
528
417
|
<tr class="table-success">
|
|
529
418
|
<th scope="row">Success</th>
|
|
530
419
|
<td>Cell</td>
|
|
531
420
|
<td>Cell</td>
|
|
532
421
|
</tr>
|
|
533
|
-
<tr class="table-success table-active">
|
|
534
|
-
<th scope="row">Success</th>
|
|
535
|
-
<td>Cell</td>
|
|
536
|
-
<td>Cell</td>
|
|
537
|
-
</tr>
|
|
538
|
-
<tr class="table-danger">
|
|
539
|
-
<th scope="row">Danger</th>
|
|
540
|
-
<td>Cell</td>
|
|
541
|
-
<td>Cell</td>
|
|
542
|
-
</tr>
|
|
543
422
|
<tr class="table-danger">
|
|
544
423
|
<th scope="row">Danger</th>
|
|
545
424
|
<td>Cell</td>
|
|
546
425
|
<td>Cell</td>
|
|
547
426
|
</tr>
|
|
548
|
-
<tr class="table-danger table-active">
|
|
549
|
-
<th scope="row">Danger</th>
|
|
550
|
-
<td>Cell</td>
|
|
551
|
-
<td>Cell</td>
|
|
552
|
-
</tr>
|
|
553
|
-
<tr class="table-warning">
|
|
554
|
-
<th scope="row">Warning</th>
|
|
555
|
-
<td>Cell</td>
|
|
556
|
-
<td>Cell</td>
|
|
557
|
-
</tr>
|
|
558
427
|
<tr class="table-warning">
|
|
559
428
|
<th scope="row">Warning</th>
|
|
560
429
|
<td>Cell</td>
|
|
561
430
|
<td>Cell</td>
|
|
562
431
|
</tr>
|
|
563
|
-
<tr class="table-warning table-active">
|
|
564
|
-
<th scope="row">Warning</th>
|
|
565
|
-
<td>Cell</td>
|
|
566
|
-
<td>Cell</td>
|
|
567
|
-
</tr>
|
|
568
|
-
<tr class="table-info">
|
|
569
|
-
<th scope="row">Info</th>
|
|
570
|
-
<td>Cell</td>
|
|
571
|
-
<td>Cell</td>
|
|
572
|
-
</tr>
|
|
573
432
|
<tr class="table-info">
|
|
574
433
|
<th scope="row">Info</th>
|
|
575
434
|
<td>Cell</td>
|
|
576
435
|
<td>Cell</td>
|
|
577
436
|
</tr>
|
|
578
|
-
<tr class="table-info table-active">
|
|
579
|
-
<th scope="row">Info</th>
|
|
580
|
-
<td>Cell</td>
|
|
581
|
-
<td>Cell</td>
|
|
582
|
-
</tr>
|
|
583
437
|
<tr class="table-light">
|
|
584
438
|
<th scope="row">Light</th>
|
|
585
439
|
<td>Cell</td>
|
|
586
440
|
<td>Cell</td>
|
|
587
441
|
</tr>
|
|
588
|
-
<tr class="table-light">
|
|
589
|
-
<th scope="row">Light</th>
|
|
590
|
-
<td>Cell</td>
|
|
591
|
-
<td>Cell</td>
|
|
592
|
-
</tr>
|
|
593
|
-
<tr class="table-light table-active">
|
|
594
|
-
<th scope="row">Light</th>
|
|
595
|
-
<td>Cell</td>
|
|
596
|
-
<td>Cell</td>
|
|
597
|
-
</tr>
|
|
598
442
|
<tr class="table-dark">
|
|
599
443
|
<th scope="row">Dark</th>
|
|
600
444
|
<td>Cell</td>
|
|
601
445
|
<td>Cell</td>
|
|
602
446
|
</tr>
|
|
603
|
-
<tr class="table-dark">
|
|
604
|
-
<th scope="row">Dark</th>
|
|
605
|
-
<td>Cell</td>
|
|
606
|
-
<td>Cell</td>
|
|
607
|
-
</tr>
|
|
608
|
-
<tr class="table-dark table-active">
|
|
609
|
-
<th scope="row">Dark</th>
|
|
610
|
-
<td>Cell</td>
|
|
611
|
-
<td>Cell</td>
|
|
612
|
-
</tr>
|
|
613
447
|
</tbody>
|
|
614
448
|
</table>
|
|
615
449
|
|
|
616
|
-
<table class="table table-striped table-
|
|
450
|
+
<table class="table table-striped table-success table-hover">
|
|
617
451
|
<thead>
|
|
618
452
|
<tr>
|
|
619
453
|
<th scope="col">Type</th>
|
|
@@ -622,6 +456,21 @@
|
|
|
622
456
|
</tr>
|
|
623
457
|
</thead>
|
|
624
458
|
<tbody>
|
|
459
|
+
<tr class="table-active">
|
|
460
|
+
<td>Active Row</td>
|
|
461
|
+
<td>2</td>
|
|
462
|
+
<td>3</td>
|
|
463
|
+
</tr>
|
|
464
|
+
<tr class="table-active">
|
|
465
|
+
<td>Active Row 2</td>
|
|
466
|
+
<td>2</td>
|
|
467
|
+
<td>3</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td>1</td>
|
|
471
|
+
<td>2</td>
|
|
472
|
+
<td>3</td>
|
|
473
|
+
</tr>
|
|
625
474
|
<tr>
|
|
626
475
|
<td>1</td>
|
|
627
476
|
<td>2</td>
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
|
|
31
31
|
<h5>ThemeHandler Javascript</h5>
|
|
32
32
|
<div class="card mb-3">
|
|
33
|
-
<div class="card-body bg-
|
|
34
|
-
<pre><code
|
|
33
|
+
<div class="card-body bg-body-tertiary">
|
|
34
|
+
<pre><code id="javascript-code"></code></pre>
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
37
|
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
|
|
47
47
|
<h5>Navbar Theme Selector HTML</h5>
|
|
48
48
|
<div class="card mb-3">
|
|
49
|
-
<div class="card-body bg-
|
|
49
|
+
<div class="card-body bg-body-tertiary">
|
|
50
50
|
<pre><code><li class="nav-item dropdown">
|
|
51
51
|
<button type="button" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">
|
|
52
52
|
<span id="current-theme"></span> <span class="d-md-none">Switch Themes</span>
|
|
@@ -64,5 +64,14 @@
|
|
|
64
64
|
|
|
65
65
|
@@include('./partials/_footer.html')
|
|
66
66
|
@@include('./partials/_scripts.html')
|
|
67
|
+
<script>
|
|
68
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
69
|
+
fetch('themeHandler.js')
|
|
70
|
+
.then(response => response.text())
|
|
71
|
+
.then(data => {
|
|
72
|
+
document.getElementById('javascript-code').innerHTML = data;
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
</script>
|
|
67
76
|
</body>
|
|
68
77
|
</html>
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
</div>
|
|
42
42
|
</div>
|
|
43
43
|
<div class="col-md-6 mb-4">
|
|
44
|
-
<button type="button" class="btn btn-primary
|
|
45
|
-
<button type="button" class="btn btn-success
|
|
46
|
-
<button type="button" class="btn btn-info
|
|
47
|
-
<button type="button" class="btn btn-danger
|
|
44
|
+
<button type="button" class="btn btn-primary" onclick="toast('Default')">Toast Test</button>
|
|
45
|
+
<button type="button" class="btn btn-success" onclick="toast('bg-success', 'bg-success')">Toast Test</button>
|
|
46
|
+
<button type="button" class="btn btn-info" onclick="toast('bg-into', 'bg-info')">Toast Test</button>
|
|
47
|
+
<button type="button" class="btn btn-danger" onclick="toast('bg-danger', 'bg-danger')">Toast Test</button>
|
|
48
48
|
</div>
|
|
49
49
|
</div>
|
|
50
50
|
<br />
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
@@include('./partials/_head.html', {
|
|
5
|
-
|
|
5
|
+
"title": "Typography | Tower Bootstrap Theme"
|
|
6
6
|
})
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
<p class="lead">Lead Paragraph. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p>
|
|
33
33
|
</div>
|
|
34
34
|
|
|
35
|
-
<div class="col-12 col-sm-4">
|
|
35
|
+
<div class="col-12 col-sm-4 mb-4">
|
|
36
36
|
<h4>Inline text elements</h4>
|
|
37
37
|
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
|
|
38
38
|
<p><del>This line of text is meant to be treated as deleted text.</del></p>
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
<p><em>This line rendered as italicized text.</em></p>
|
|
46
46
|
</div>
|
|
47
47
|
|
|
48
|
-
<div class="col-12 col-sm-4 mb-
|
|
49
|
-
<h4>
|
|
48
|
+
<div class="col-12 col-sm-4 mb-4">
|
|
49
|
+
<h4>Emphasis classes</h4>
|
|
50
50
|
<p class="text-primary">text-primary - Lorem ipsum dolor sit amet</p>
|
|
51
51
|
<p class="text-secondary">text-secondary - Lorem ipsum dolor sit amet</p>
|
|
52
52
|
<p class="text-success">text-success - Lorem ipsum dolor sit amet</p>
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
<p class="text-faded">text-faded - Custom class that uses opacity instead of changing the font color</p>
|
|
60
60
|
</div>
|
|
61
61
|
|
|
62
|
-
<div class="col-12 col-sm-4
|
|
62
|
+
<div class="col-12 col-sm-4">
|
|
63
63
|
<h4>Display Headings</h4>
|
|
64
64
|
<div class="display-1">Display 1</div>
|
|
65
65
|
<div class="display-2">Display 2</div>
|
|
@@ -67,22 +67,19 @@
|
|
|
67
67
|
<div class="display-4">Display 4</div>
|
|
68
68
|
<div class="display-5">Display 5</div>
|
|
69
69
|
<div class="display-6">Display 6</div>
|
|
70
|
-
</div>
|
|
71
70
|
|
|
72
|
-
|
|
73
|
-
<h4>Link Colors</h4>
|
|
74
|
-
<p><a href="#" class="link-primary">link-primary</a></p>
|
|
75
|
-
<p><a href="#" class="link-secondary">link-secondary</a></p>
|
|
76
|
-
<p><a href="#" class="link-success">link-success</a></p>
|
|
77
|
-
<p><a href="#" class="link-info">link-info</a></p>
|
|
78
|
-
<p><a href="#" class="link-warning">link-warning</a></p>
|
|
79
|
-
<p><a href="#" class="link-danger">link-danger</a></p>
|
|
80
|
-
<p><a href="#" class="link-light">link-light</a></p>
|
|
81
|
-
<p><a href="#" class="link-dark">link-dark</a></p>
|
|
82
|
-
<p><a href="#" class="link-body-emphasis">link-body-emphasis</a></p>
|
|
71
|
+
<!--<em class="mt-2 d-block small">display-5 and display-6 are custom classes and are not normally in Bootstrap</em>-->
|
|
83
72
|
</div>
|
|
84
73
|
|
|
85
74
|
<div class="col-12 col-sm-4">
|
|
75
|
+
|
|
76
|
+
<div class="mb-5">
|
|
77
|
+
<h4>Abbreviations</h4>
|
|
78
|
+
<p><abbr title="attribute">attr</abbr></p>
|
|
79
|
+
<p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr></p>
|
|
80
|
+
|
|
81
|
+
</div>
|
|
82
|
+
|
|
86
83
|
<h4>Lead</h4>
|
|
87
84
|
<p class="lead">
|
|
88
85
|
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
|
|
@@ -90,30 +87,38 @@
|
|
|
90
87
|
</div>
|
|
91
88
|
|
|
92
89
|
<div class="col-12 col-sm-4">
|
|
93
|
-
<
|
|
94
|
-
|
|
95
|
-
<
|
|
96
|
-
<
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
90
|
+
<div class="mb-5">
|
|
91
|
+
<h4>Blockquote</h4>
|
|
92
|
+
<figure>
|
|
93
|
+
<blockquote class="blockquote">
|
|
94
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
|
|
95
|
+
</blockquote>
|
|
96
|
+
<figcaption class="blockquote-footer">
|
|
97
|
+
Someone famous in <cite title="Source Title">Source Title</cite>
|
|
98
|
+
</figcaption>
|
|
99
|
+
</figure>
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
<div>
|
|
103
|
+
<h4>Definition List</h4>
|
|
104
|
+
|
|
105
|
+
<dl>
|
|
106
|
+
<dt>Beast of Bodmin</dt>
|
|
107
|
+
<dd>A large feline inhabiting Bodmin Moor.</dd>
|
|
108
|
+
|
|
109
|
+
<dt>Morgawr</dt>
|
|
110
|
+
<dd>A sea serpent.</dd>
|
|
111
|
+
|
|
112
|
+
<dt>Owlman</dt>
|
|
113
|
+
<dd>A giant owl-like creature.</dd>
|
|
114
|
+
</dl>
|
|
115
|
+
|
|
116
|
+
</div>
|
|
102
117
|
</div>
|
|
103
118
|
</div>
|
|
104
119
|
|
|
105
120
|
<hr />
|
|
106
121
|
|
|
107
|
-
|
|
108
|
-
<h4>Fieldset</h4>
|
|
109
|
-
<fieldset>
|
|
110
|
-
<legend>Legend</legend>
|
|
111
|
-
<p>Content</p>
|
|
112
|
-
<div>More Content</div>
|
|
113
|
-
</fieldset>
|
|
114
|
-
|
|
115
|
-
<hr />
|
|
116
|
-
|
|
117
122
|
<h4>Code Elements</h4>
|
|
118
123
|
<h5>Inline Code</h5>
|
|
119
124
|
<p>
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.3.
|
|
2
|
+
"version": "5.3.2",
|
|
3
3
|
"name": "bootsteam-theme",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"bootstrap": "5.3.8"
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"gulp": "
|
|
9
|
+
"gulp": "5.0.1",
|
|
10
10
|
"gulp-clean-css": "4.3.0",
|
|
11
11
|
"gulp-dart-sass": "1.1.0",
|
|
12
12
|
"gulp-concat": "2.6.1",
|
package/src/_alerts.scss
CHANGED
|
@@ -28,21 +28,21 @@
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
@include color-mode(dark) {
|
|
32
32
|
.alert {
|
|
33
33
|
&.alert-success a {
|
|
34
|
-
color:
|
|
34
|
+
color: lighten($success, 5);
|
|
35
35
|
|
|
36
36
|
&:hover {
|
|
37
|
-
color:
|
|
37
|
+
color: lighten($success, 10);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
&.alert-danger a {
|
|
42
|
-
color:
|
|
42
|
+
color: lighten($danger, 10);
|
|
43
43
|
|
|
44
44
|
&:hover {
|
|
45
|
-
color:
|
|
45
|
+
color: lighten($danger, 15);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
&.alert-info a {
|
|
58
|
-
color: $info;
|
|
58
|
+
color: lighten($info, 5);
|
|
59
59
|
|
|
60
60
|
&:hover {
|
|
61
|
-
color:
|
|
61
|
+
color: lighten($info, 10);
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
///<reference path="../node_modules/bootstrap/scss/variables.scss" />
|
|
2
|
+
|
|
3
|
+
@property --accent-gradient-percentage {
|
|
4
|
+
syntax: "<length-percentage>";
|
|
5
|
+
inherits: false;
|
|
6
|
+
initial-value: 0%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.btn:focus-visible {
|
|
10
|
+
outline: 1px solid white;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.btn-accent {
|
|
14
|
+
--accent-gradient-percentage: 0%;
|
|
15
|
+
transition: --accent-gradient-percentage 0.2s;
|
|
16
|
+
color: white;
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
background: linear-gradient(90deg, #05b1ed var(--accent-gradient-percentage), #2D73FF 100%);
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
&:hover, &:focus {
|
|
22
|
+
--accent-gradient-percentage: 40%;
|
|
23
|
+
color: white;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.disabled, &:disabled {
|
|
27
|
+
color: #ddd;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.btn-primary:hover {
|
|
32
|
+
background: lighten($primary, 5);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.btn-secondary {
|
|
36
|
+
background: #2b475e;
|
|
37
|
+
|
|
38
|
+
&:hover {
|
|
39
|
+
background: linear-gradient(135deg, #67c1f5 0%,#417a9b 100%);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.disabled, &:disabled {
|
|
43
|
+
background: darken(#2b475e, 5);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.btn-success:hover {
|
|
48
|
+
background: #6c9018;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.btn-warning {
|
|
52
|
+
color: $black;
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
color: $black;
|
|
56
|
+
background: darken($warning, 5);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.disabled, &:disabled {
|
|
60
|
+
color: $black;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.btn.btn-outline-primary,
|
|
65
|
+
.btn.btn-outline-secondary,
|
|
66
|
+
.btn.btn-outline-success,
|
|
67
|
+
.btn.btn-outline-info,
|
|
68
|
+
.btn.btn-outline-danger,
|
|
69
|
+
.btn.btn-outline-dark {
|
|
70
|
+
color: light-dark($body-color, $body-color-dark);
|
|
71
|
+
border-width: 1px;
|
|
72
|
+
|
|
73
|
+
&:hover {
|
|
74
|
+
color: $white;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.btn.btn-outline-warning,
|
|
79
|
+
.btn.btn-outline-light {
|
|
80
|
+
color: light-dark($body-color, $body-color-dark);
|
|
81
|
+
border-width: 1px;
|
|
82
|
+
|
|
83
|
+
&:hover {
|
|
84
|
+
color: $black;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
@media screen and (prefers-reduced-motion: reduce) {
|
|
90
|
+
.btn-accent {
|
|
91
|
+
transition: --accent-gradient-percentage 0.001ms;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -54,6 +54,14 @@ $input-bg-dark: lighten($body-bg-dark, 3);
|
|
|
54
54
|
.input-group-text {
|
|
55
55
|
border-color: $input-border-color-dark;
|
|
56
56
|
}
|
|
57
|
+
|
|
58
|
+
.blockquote-footer {
|
|
59
|
+
color: $text-muted;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.breadcrumb-item.active {
|
|
63
|
+
color: rgba(198, 212, 223, 0.75);
|
|
64
|
+
}
|
|
57
65
|
/*
|
|
58
66
|
|
|
59
67
|
.input-group > .form-control, .input-group > .form-select {
|
|
@@ -78,8 +86,6 @@ $input-bg-dark: lighten($body-bg-dark, 3);
|
|
|
78
86
|
border-color: $input-border-color-dark;
|
|
79
87
|
}
|
|
80
88
|
|
|
81
|
-
|
|
82
|
-
color: $text-muted;
|
|
83
|
-
}
|
|
89
|
+
|
|
84
90
|
*/
|
|
85
91
|
}
|