j1-template 2023.8.2 → 2023.9.1
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.
- checksums.yaml +4 -4
- data/_includes/themes/j1/layouts/content_generator_post.html +19 -49
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +185 -192
- data/_includes/themes/j1/procedures/posts/create_series_header.proc +1 -14
- data/_includes/themes/j1/procedures/posts/pager.proc +39 -46
- data/assets/themes/j1/adapter/js/speak2me.js +1 -1
- data/assets/themes/j1/adapter/js/translator.js +4 -2
- data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.css +31 -26
- data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +2 -2
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +31 -26
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +2 -2
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +37 -29
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +3 -3
- data/assets/themes/j1/core/js/template.js +58 -43
- data/assets/themes/j1/core/js/template.min.js +7 -7
- data/assets/themes/j1/core/js/template.min.js.map +1 -1
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +2 -2
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/blocks/footer.yml +6 -4
- data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +89 -135
- data/lib/starter_web/_data/modules/defaults/speak2me.yml +1 -0
- data/lib/starter_web/_data/modules/justifiedGallery.yml +3 -3
- data/lib/starter_web/_data/modules/navigator_menu.yml +14 -7
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +74 -70
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +110 -84
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-static-site-generators.adoc +49 -33
- data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +47 -26
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +66 -63
- data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +76 -77
- data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +63 -64
- data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +79 -64
- data/lib/starter_web/pages/public/blog/navigator/index.html +55 -99
- data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +6 -2
- data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +59 -35
- data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +4 -4
- data/lib/starter_web/pages/public/learn/roundtrip/highlghter_rouge.adoc +1 -1
- data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +28 -12
- data/lib/starter_web/pages/public/learn/roundtrip/lunr_search.adoc +12 -4
- data/lib/starter_web/pages/public/learn/roundtrip/modal_extentions.adoc +5 -1
- data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +512 -470
- data/lib/starter_web/pages/public/learn/roundtrip/present_videos.adoc +20 -6
- data/lib/starter_web/pages/public/learn/roundtrip/responsive_tables.adoc +5 -2
- data/lib/starter_web/pages/public/learn/where_to_go.adoc +24 -13
- data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +4 -1
- data/lib/starter_web/pages/public/legal/en/200_impress.adoc +4 -1
- data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +632 -595
- data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +12 -3
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +2 -2
@@ -42,61 +42,30 @@
|
|
42
42
|
-------------------------------------------------------------------------------- {% endcomment %}
|
43
43
|
{% assign blog_navigator_options = blog_navigator_defaults | merge: blog_navigator_settings %}
|
44
44
|
|
45
|
-
|
46
|
-
{% comment %} Language detection
|
47
|
-
-------------------------------------------------------------------------------- {% endcomment %}
|
48
|
-
{% if {{site.language}} == "en" %}
|
49
|
-
{% assign language = "en" %}
|
50
|
-
{% elsif {{site.language}} == "de"%}
|
51
|
-
{% assign language = "de" %}
|
52
|
-
{% else %}
|
53
|
-
{% assign language = "en" %}
|
54
|
-
{% endif %}
|
55
|
-
|
56
|
-
{% comment %} Set language specific button text
|
45
|
+
{% comment %} Set button text
|
57
46
|
-------------------------------------------------------------------------------- {% endcomment %}
|
58
|
-
{%
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
{%
|
65
|
-
|
66
|
-
{% if language == "de" %}
|
67
|
-
{% assign pager_previous_button_text = blog_navigator_options.button_text.pager.previous.de %}
|
68
|
-
{% assign pager_next_button_text = blog_navigator_options.button_text.pager.next.de %}
|
69
|
-
{% assign pager_back_button_text = blog_navigator_options.button_text.pager.back.de %}
|
70
|
-
{% assign pager_first_button_text = blog_navigator_options.button_text.pager.first.de %}
|
71
|
-
{% assign pager_last_button_text = blog_navigator_options.button_text.pager.last.de %}
|
72
|
-
{% endif %}
|
47
|
+
{% assign pager_home_button_text = blog_navigator_options.button_text.post_pager.home %}
|
48
|
+
{% assign pager_series_button_text = blog_navigator_options.button_text.post_pager.series %}
|
49
|
+
{% assign pager_back_button_text = blog_navigator_options.button_text.post_pager.back %}
|
50
|
+
{% assign pager_previous_button_text = blog_navigator_options.button_text.post_pager.previous %}
|
51
|
+
{% assign pager_next_button_text = blog_navigator_options.button_text.post_pager.next %}
|
52
|
+
{% assign pager_first_button_text = blog_navigator_options.button_text.post_pager.first %}
|
53
|
+
{% assign pager_last_button_text = blog_navigator_options.button_text.post_pager.last %}
|
73
54
|
|
74
55
|
|
75
56
|
{% comment %} Main
|
76
57
|
-------------------------------------------------------------------------------- {% endcomment %}
|
77
58
|
|
78
59
|
<div class="paginator" data-speak2me-ignore>
|
79
|
-
<ul class="pagination raised-z0">
|
80
60
|
|
81
|
-
|
82
|
-
|
83
|
-
<li class="page-item"><a class="page-link" href="/" title="Home">Home</a></li>
|
61
|
+
{% comment %} Generate posts pager
|
62
|
+
------------------------------------------------------------------------------ {% endcomment %}
|
84
63
|
|
85
|
-
|
86
|
-
---------------------------------------------------------------------------- {% endcomment %}
|
87
|
-
{% if page.previous %}
|
88
|
-
<li class="page-item"><a class="page-link" href="{{page.previous.url | absolute_url}}" title="{{page.previous.title}}">{{pager_previous_button_text}}</a></li>
|
89
|
-
{% else %}
|
90
|
-
<li class="page-item disabled"><a class="page-link">{{pager_first_button_text}}</a></li>
|
91
|
-
{% endif %}
|
64
|
+
<ul class="pagination raised-z0">
|
92
65
|
|
93
|
-
{% comment %} Set
|
66
|
+
{% comment %} Set HOME page BUTTON (always)
|
94
67
|
---------------------------------------------------------------------------- {% endcomment %}
|
95
|
-
|
96
|
-
<li class="page-item"><a class="page-link" href="{{page.next.url | absolute_url}}" title="{{page.next.title}}">{{pager_next_button_text}}</a></li>
|
97
|
-
{% else %}
|
98
|
-
<li class="page-item disabled"><a class="page-link" href="#void">{{pager_last_button_text}}</a></li>
|
99
|
-
{% endif %}
|
68
|
+
<li class="page-item"><a class="page-link" href="/" title="Back to {{pager_home_button_text}}">{{pager_home_button_text}}</a></li>
|
100
69
|
|
101
70
|
{% comment %} Set BACK page (PagerURL) BUTTON
|
102
71
|
---------------------------------------------------------------------------- {% endcomment %}
|
@@ -111,15 +80,39 @@
|
|
111
80
|
|
112
81
|
<!-- [INFO ] [procedures.global.pager.proc ] [Calculate BackURL from User State Cookie for page: {{page.title}}] -->
|
113
82
|
if (re.test(last_pager)) {
|
114
|
-
last_pager_url = '<li class="page-item"><a class="page-link" href="' + last_pager + '"
|
83
|
+
last_pager_url = '<li class="page-item"><a class="page-link" href="' + last_pager + '"title="Back to {{pager_back_button_text}}">{{pager_back_button_text}}</a></li>';
|
115
84
|
} else {
|
116
|
-
last_pager_url = '<li class="page-item
|
85
|
+
last_pager_url = '<li class="page-item"><a class="page-link disabled" title="Back to {{pager_back_button_text}}">{{pager_back_button_text}}</a></li>';
|
117
86
|
}
|
87
|
+
|
118
88
|
document.write( last_pager_url );
|
119
89
|
j1.writeCookie({
|
120
90
|
name: user_state_cookie_name,
|
121
91
|
data: user_state
|
122
92
|
});
|
123
93
|
</script>
|
94
|
+
|
95
|
+
{% comment %} Set SERIES Button
|
96
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
97
|
+
{% if page.series %}
|
98
|
+
<a class="page-link" href="#offcanvasPostSeriesNavigation" title="Show Article {{pager_series_button_text}}" data-bs-toggle="offcanvas">{{pager_series_button_text}}</a>
|
99
|
+
{% endif %}
|
100
|
+
|
101
|
+
{% comment %} Set PREVIOUS page BUTTON
|
102
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
103
|
+
{% if page.previous %}
|
104
|
+
<li class="page-item"><a class="page-link" href="{{page.previous.url}}" title="Show {{pager_previous_button_text}} Article">{{pager_previous_button_text}}</a></li>
|
105
|
+
{% else %}
|
106
|
+
<li class="page-item"><a class="page-link disabled">{{pager_first_button_text}}</a></li>
|
107
|
+
{% endif %}
|
108
|
+
|
109
|
+
{% comment %} Set NEXT page BUTTON
|
110
|
+
---------------------------------------------------------------------------- {% endcomment %}
|
111
|
+
{% if page.next %}
|
112
|
+
<li class="page-item"><a class="page-link" href="{{page.next.url}}" title="Show Next Article">{{pager_next_button_text}}</a></li>
|
113
|
+
{% else %}
|
114
|
+
<li class="page-item"><a class="page-link disabled" href="#" title="{{pager_last_button_text}} Article">{{pager_last_button_text}}</a></li>
|
115
|
+
{% endif %}
|
116
|
+
|
124
117
|
</ul>
|
125
118
|
</div>
|
@@ -479,6 +479,10 @@ j1.adapter.translator = (function (j1, window) {
|
|
479
479
|
Cookies.remove('googtrans', { domain: hostname });
|
480
480
|
Cookies.remove('googtrans');
|
481
481
|
|
482
|
+
// set googtrans cookie for all sites
|
483
|
+
//
|
484
|
+
Cookies.set('googtrans', transCode);
|
485
|
+
|
482
486
|
// -----------------------------------------------------------------------
|
483
487
|
// NOTE: googtrans cookie will be rewritten (by Google!?) for
|
484
488
|
// attributes 'SameSite' and 'Domain'. This results for 'SameSite'
|
@@ -487,8 +491,6 @@ j1.adapter.translator = (function (j1, window) {
|
|
487
491
|
// -----------------------------------------------------------------------
|
488
492
|
if (isSubDomain) {
|
489
493
|
Cookies.set('googtrans', transCode, { domain: domain });
|
490
|
-
} else {
|
491
|
-
Cookies.set('googtrans', transCode);
|
492
494
|
}
|
493
495
|
|
494
496
|
// reload current page
|
@@ -16,7 +16,7 @@
|
|
16
16
|
# -----------------------------------------------------------------------------
|
17
17
|
*/
|
18
18
|
/*!
|
19
|
-
* Bootstrap v5.3.
|
19
|
+
* Bootstrap v5.3.2 (https://getbootstrap.com/)
|
20
20
|
* Copyright 2011-2023 The Bootstrap Authors
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
*/
|
@@ -115,6 +115,7 @@
|
|
115
115
|
--bs-link-hover-color: #0a58ca;
|
116
116
|
--bs-link-hover-color-rgb: 10, 88, 202;
|
117
117
|
--bs-code-color: #d63384;
|
118
|
+
--bs-highlight-color: #212529;
|
118
119
|
--bs-highlight-bg: #fff3cd;
|
119
120
|
--bs-border-width: 1px;
|
120
121
|
--bs-border-style: solid;
|
@@ -185,6 +186,8 @@
|
|
185
186
|
--bs-link-color-rgb: 110, 168, 254;
|
186
187
|
--bs-link-hover-color-rgb: 139, 185, 254;
|
187
188
|
--bs-code-color: #e685b5;
|
189
|
+
--bs-highlight-color: #dee2e6;
|
190
|
+
--bs-highlight-bg: #664d03;
|
188
191
|
--bs-border-color: #495057;
|
189
192
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
190
193
|
--bs-form-valid-color: #75b798;
|
@@ -306,6 +309,7 @@ small, .small {
|
|
306
309
|
|
307
310
|
mark, .mark {
|
308
311
|
padding: 0.1875em;
|
312
|
+
color: var(--bs-highlight-color);
|
309
313
|
background-color: var(--bs-highlight-bg); }
|
310
314
|
|
311
315
|
sub,
|
@@ -1472,16 +1476,16 @@ progress {
|
|
1472
1476
|
--bs-table-bg-type: initial;
|
1473
1477
|
--bs-table-color-state: initial;
|
1474
1478
|
--bs-table-bg-state: initial;
|
1475
|
-
--bs-table-color: var(--bs-
|
1479
|
+
--bs-table-color: var(--bs-emphasis-color);
|
1476
1480
|
--bs-table-bg: var(--bs-body-bg);
|
1477
1481
|
--bs-table-border-color: var(--bs-border-color);
|
1478
1482
|
--bs-table-accent-bg: transparent;
|
1479
|
-
--bs-table-striped-color: var(--bs-
|
1480
|
-
--bs-table-striped-bg: rgba(
|
1481
|
-
--bs-table-active-color: var(--bs-
|
1482
|
-
--bs-table-active-bg: rgba(
|
1483
|
-
--bs-table-hover-color: var(--bs-
|
1484
|
-
--bs-table-hover-bg: rgba(
|
1483
|
+
--bs-table-striped-color: var(--bs-emphasis-color);
|
1484
|
+
--bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
|
1485
|
+
--bs-table-active-color: var(--bs-emphasis-color);
|
1486
|
+
--bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
|
1487
|
+
--bs-table-hover-color: var(--bs-emphasis-color);
|
1488
|
+
--bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
|
1485
1489
|
width: 100%;
|
1486
1490
|
margin-bottom: 1rem;
|
1487
1491
|
vertical-align: top;
|
@@ -1536,7 +1540,7 @@ progress {
|
|
1536
1540
|
.table-primary {
|
1537
1541
|
--bs-table-color: #000;
|
1538
1542
|
--bs-table-bg: #cfe2ff;
|
1539
|
-
--bs-table-border-color: #
|
1543
|
+
--bs-table-border-color: #a6b5cc;
|
1540
1544
|
--bs-table-striped-bg: #c5d7f2;
|
1541
1545
|
--bs-table-striped-color: #000;
|
1542
1546
|
--bs-table-active-bg: #bacbe6;
|
@@ -1549,7 +1553,7 @@ progress {
|
|
1549
1553
|
.table-secondary {
|
1550
1554
|
--bs-table-color: #000;
|
1551
1555
|
--bs-table-bg: #e2e3e5;
|
1552
|
-
--bs-table-border-color: #
|
1556
|
+
--bs-table-border-color: #b5b6b7;
|
1553
1557
|
--bs-table-striped-bg: #d7d8da;
|
1554
1558
|
--bs-table-striped-color: #000;
|
1555
1559
|
--bs-table-active-bg: #cbccce;
|
@@ -1562,7 +1566,7 @@ progress {
|
|
1562
1566
|
.table-success {
|
1563
1567
|
--bs-table-color: #000;
|
1564
1568
|
--bs-table-bg: #d1e7dd;
|
1565
|
-
--bs-table-border-color: #
|
1569
|
+
--bs-table-border-color: #a7b9b1;
|
1566
1570
|
--bs-table-striped-bg: #c7dbd2;
|
1567
1571
|
--bs-table-striped-color: #000;
|
1568
1572
|
--bs-table-active-bg: #bcd0c7;
|
@@ -1575,7 +1579,7 @@ progress {
|
|
1575
1579
|
.table-info {
|
1576
1580
|
--bs-table-color: #000;
|
1577
1581
|
--bs-table-bg: #cff4fc;
|
1578
|
-
--bs-table-border-color: #
|
1582
|
+
--bs-table-border-color: #a6c3ca;
|
1579
1583
|
--bs-table-striped-bg: #c5e8ef;
|
1580
1584
|
--bs-table-striped-color: #000;
|
1581
1585
|
--bs-table-active-bg: #badce3;
|
@@ -1588,7 +1592,7 @@ progress {
|
|
1588
1592
|
.table-warning {
|
1589
1593
|
--bs-table-color: #000;
|
1590
1594
|
--bs-table-bg: #fff3cd;
|
1591
|
-
--bs-table-border-color: #
|
1595
|
+
--bs-table-border-color: #ccc2a4;
|
1592
1596
|
--bs-table-striped-bg: #f2e7c3;
|
1593
1597
|
--bs-table-striped-color: #000;
|
1594
1598
|
--bs-table-active-bg: #e6dbb9;
|
@@ -1601,7 +1605,7 @@ progress {
|
|
1601
1605
|
.table-danger {
|
1602
1606
|
--bs-table-color: #000;
|
1603
1607
|
--bs-table-bg: #f8d7da;
|
1604
|
-
--bs-table-border-color: #
|
1608
|
+
--bs-table-border-color: #c6acae;
|
1605
1609
|
--bs-table-striped-bg: #eccccf;
|
1606
1610
|
--bs-table-striped-color: #000;
|
1607
1611
|
--bs-table-active-bg: #dfc2c4;
|
@@ -1614,7 +1618,7 @@ progress {
|
|
1614
1618
|
.table-light {
|
1615
1619
|
--bs-table-color: #000;
|
1616
1620
|
--bs-table-bg: #f8f9fa;
|
1617
|
-
--bs-table-border-color: #
|
1621
|
+
--bs-table-border-color: #c6c7c8;
|
1618
1622
|
--bs-table-striped-bg: #ecedee;
|
1619
1623
|
--bs-table-striped-color: #000;
|
1620
1624
|
--bs-table-active-bg: #dfe0e1;
|
@@ -1627,7 +1631,7 @@ progress {
|
|
1627
1631
|
.table-dark {
|
1628
1632
|
--bs-table-color: #fff;
|
1629
1633
|
--bs-table-bg: #212529;
|
1630
|
-
--bs-table-border-color: #
|
1634
|
+
--bs-table-border-color: #4d5154;
|
1631
1635
|
--bs-table-striped-bg: #2c3034;
|
1632
1636
|
--bs-table-striped-color: #fff;
|
1633
1637
|
--bs-table-active-bg: #373b3e;
|
@@ -1883,6 +1887,7 @@ textarea.form-control-lg {
|
|
1883
1887
|
|
1884
1888
|
.form-check-input {
|
1885
1889
|
--bs-form-check-bg: var(--bs-body-bg);
|
1890
|
+
flex-shrink: 0;
|
1886
1891
|
width: 1em;
|
1887
1892
|
height: 1em;
|
1888
1893
|
margin-top: 0.25em;
|
@@ -1998,7 +2003,7 @@ textarea.form-control-lg {
|
|
1998
2003
|
height: 0.5rem;
|
1999
2004
|
color: transparent;
|
2000
2005
|
cursor: pointer;
|
2001
|
-
background-color: var(--bs-
|
2006
|
+
background-color: var(--bs-secondary-bg);
|
2002
2007
|
border-color: transparent;
|
2003
2008
|
border-radius: 1rem; }
|
2004
2009
|
.form-range::-moz-range-thumb {
|
@@ -2019,7 +2024,7 @@ textarea.form-control-lg {
|
|
2019
2024
|
height: 0.5rem;
|
2020
2025
|
color: transparent;
|
2021
2026
|
cursor: pointer;
|
2022
|
-
background-color: var(--bs-
|
2027
|
+
background-color: var(--bs-secondary-bg);
|
2023
2028
|
border-color: transparent;
|
2024
2029
|
border-radius: 1rem; }
|
2025
2030
|
.form-range:disabled {
|
@@ -2750,7 +2755,7 @@ textarea.form-control-lg {
|
|
2750
2755
|
--bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
|
2751
2756
|
--bs-dropdown-divider-bg: var(--bs-border-color-translucent);
|
2752
2757
|
--bs-dropdown-divider-margin-y: 0.5rem;
|
2753
|
-
--bs-dropdown-box-shadow:
|
2758
|
+
--bs-dropdown-box-shadow: var(--bs-box-shadow);
|
2754
2759
|
--bs-dropdown-link-color: var(--bs-body-color);
|
2755
2760
|
--bs-dropdown-link-hover-color: var(--bs-body-color);
|
2756
2761
|
--bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
|
@@ -4457,7 +4462,7 @@ textarea.form-control-lg {
|
|
4457
4462
|
--bs-modal-border-color: var(--bs-border-color-translucent);
|
4458
4463
|
--bs-modal-border-width: var(--bs-border-width);
|
4459
4464
|
--bs-modal-border-radius: var(--bs-border-radius-lg);
|
4460
|
-
--bs-modal-box-shadow:
|
4465
|
+
--bs-modal-box-shadow: var(--bs-box-shadow-sm);
|
4461
4466
|
--bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
|
4462
4467
|
--bs-modal-header-padding-x: 1rem;
|
4463
4468
|
--bs-modal-header-padding-y: 1rem;
|
@@ -4577,7 +4582,7 @@ textarea.form-control-lg {
|
|
4577
4582
|
@media (min-width: 576px) {
|
4578
4583
|
.modal {
|
4579
4584
|
--bs-modal-margin: 1.75rem;
|
4580
|
-
--bs-modal-box-shadow:
|
4585
|
+
--bs-modal-box-shadow: var(--bs-box-shadow); }
|
4581
4586
|
.modal-dialog {
|
4582
4587
|
max-width: var(--bs-modal-width);
|
4583
4588
|
margin-right: auto;
|
@@ -4787,7 +4792,7 @@ textarea.form-control-lg {
|
|
4787
4792
|
--bs-popover-border-color: var(--bs-border-color-translucent);
|
4788
4793
|
--bs-popover-border-radius: var(--bs-border-radius-lg);
|
4789
4794
|
--bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
|
4790
|
-
--bs-popover-box-shadow:
|
4795
|
+
--bs-popover-box-shadow: var(--bs-box-shadow);
|
4791
4796
|
--bs-popover-header-padding-x: 1rem;
|
4792
4797
|
--bs-popover-header-padding-y: 0.5rem;
|
4793
4798
|
--bs-popover-header-font-size: 1rem;
|
@@ -5160,7 +5165,7 @@ textarea.form-control-lg {
|
|
5160
5165
|
--bs-offcanvas-bg: var(--bs-body-bg);
|
5161
5166
|
--bs-offcanvas-border-width: var(--bs-border-width);
|
5162
5167
|
--bs-offcanvas-border-color: var(--bs-border-color-translucent);
|
5163
|
-
--bs-offcanvas-box-shadow:
|
5168
|
+
--bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
|
5164
5169
|
--bs-offcanvas-transition: transform 0.3s ease-in-out;
|
5165
5170
|
--bs-offcanvas-title-line-height: 1.5; }
|
5166
5171
|
|
@@ -6005,13 +6010,13 @@ textarea.form-control-lg {
|
|
6005
6010
|
display: none !important; }
|
6006
6011
|
|
6007
6012
|
.shadow {
|
6008
|
-
box-shadow:
|
6013
|
+
box-shadow: var(--bs-box-shadow) !important; }
|
6009
6014
|
|
6010
6015
|
.shadow-sm {
|
6011
|
-
box-shadow:
|
6016
|
+
box-shadow: var(--bs-box-shadow-sm) !important; }
|
6012
6017
|
|
6013
6018
|
.shadow-lg {
|
6014
|
-
box-shadow:
|
6019
|
+
box-shadow: var(--bs-box-shadow-lg) !important; }
|
6015
6020
|
|
6016
6021
|
.shadow-none {
|
6017
6022
|
box-shadow: none !important; }
|