Skip to content

Commit b89b230

Browse files
Update to v5.0.0
1 parent 64752c6 commit b89b230

File tree

162 files changed

+1644
-625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+1644
-625
lines changed

webroot/css/froala_editor.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
2+
* froala_editor v5.0.0 (https://www.froala.com/wysiwyg-editor)
33
* License https://froala.com/wysiwyg-editor/terms/
4-
* Copyright 2014-2025 Froala Labs
4+
* Copyright 2014-2026 Froala Labs
55
*/
66

77
.fr-clearfix::after {

webroot/css/froala_editor.min.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.

webroot/css/froala_editor.pkgd.css

Lines changed: 111 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
2+
* froala_editor v5.0.0 (https://www.froala.com/wysiwyg-editor)
33
* License https://froala.com/wysiwyg-editor/terms/
4-
* Copyright 2014-2025 Froala Labs
4+
* Copyright 2014-2026 Froala Labs
55
*/
66

77
@charset "UTF-8";
@@ -1620,6 +1620,112 @@ span.fr-sr-only {
16201620
clip: rect(0, 0, 0, 0);
16211621
border: 0; }
16221622

1623+
.fr-code-snippet-layer.fr-modal-wrapper .fr-modal-head {
1624+
border-bottom: unset; }
1625+
.fr-code-snippet-layer .fr-code-snippet-header {
1626+
display: flex;
1627+
line-height: 60px;
1628+
margin-left: 10px; }
1629+
.fr-code-snippet-layer .fr-code-snippet-header .fr-align-right .fr-btn {
1630+
height: 24px;
1631+
width: 24px;
1632+
margin: 0; }
1633+
.fr-code-snippet-layer .fr-code-snippet-header .fr-align-right .fr-btn .fr-svg {
1634+
margin: 0; }
1635+
.fr-code-snippet-layer .fr-active.fr-layer {
1636+
margin: 0 16px;
1637+
display: flex;
1638+
flex-direction: column; }
1639+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar {
1640+
border: none; }
1641+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar button.fr-command.fr-btn {
1642+
outline: solid 1px #999999;
1643+
color: #333333;
1644+
width: 250px; }
1645+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar .fr-dropdown-content {
1646+
width: 250px; }
1647+
.fr-code-snippet-layer .fr-active.fr-layer pre {
1648+
position: relative;
1649+
border-radius: 3px;
1650+
font-family: "Fira Code", monospace;
1651+
font-size: 14px;
1652+
height: 330px;
1653+
margin: 16px 0; }
1654+
.fr-code-snippet-layer .fr-active.fr-layer pre code {
1655+
outline: none;
1656+
display: block;
1657+
width: 100%;
1658+
height: 100%; }
1659+
.fr-code-snippet-layer .fr-active.fr-layer .fr-float-right {
1660+
align-self: flex-end; }
1661+
.fr-code-snippet-layer .fr-active.fr-layer .fr-float-right .fr-enable-accessibility.submit {
1662+
margin-left: unset;
1663+
border: 1px solid #0098F7; }
1664+
1665+
/* Froala code block styling */
1666+
.fr-view .fr-code-snippet {
1667+
margin: 1em 0;
1668+
border-radius: 4px;
1669+
overflow: hidden;
1670+
font-size: 0;
1671+
margin-bottom: 14px; }
1672+
.fr-view .fr-code-snippet .fr-code-header {
1673+
display: flex;
1674+
justify-content: space-between;
1675+
align-items: center;
1676+
background: #ECECEC;
1677+
padding: 10px 16px;
1678+
color: #000;
1679+
font-size: 14px; }
1680+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions {
1681+
display: flex;
1682+
gap: 8px; }
1683+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button {
1684+
cursor: pointer;
1685+
border: none;
1686+
width: 20px;
1687+
height: 22px;
1688+
padding: 2px;
1689+
background: transparent;
1690+
margin-left: 5px;
1691+
border-radius: 3px;
1692+
line-height: 1px; }
1693+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button:hover {
1694+
background: #cecdcd; }
1695+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button:active {
1696+
background: #b8b6b6; }
1697+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button .fr-sr-only {
1698+
display: none; }
1699+
.fr-view .fr-code-snippet pre {
1700+
margin: 0;
1701+
overflow-x: auto;
1702+
font-size: 14px; }
1703+
.fr-view .fr-code-snippet code {
1704+
font-family: "Fira Code", Consolas, monospace;
1705+
font-size: 14px;
1706+
line-height: 1.5;
1707+
background: transparent; }
1708+
1709+
.pdf-export.fr-view .fr-code-actions {
1710+
display: none;
1711+
visibility: hidden; }
1712+
1713+
.fr-clearfix::after {
1714+
clear: both;
1715+
display: block;
1716+
content: "";
1717+
height: 0; }
1718+
1719+
.fr-hide-by-clipping {
1720+
position: absolute;
1721+
width: 1px;
1722+
height: 1px;
1723+
padding: 0;
1724+
margin: -1px;
1725+
overflow: hidden;
1726+
clip: rect(0, 0, 0, 0);
1727+
border: 0; }
1728+
16231729
textarea.fr-code {
16241730
display: none;
16251731
width: 100%;
@@ -4302,7 +4408,7 @@ div.fr-modal-body {
43024408
padding: 5px 0;
43034409
position: relative;
43044410
clear: both;
4305-
break-after: page;
4411+
break-after: always;
43064412
height: 10px;
43074413
margin: 2px 0; }
43084414
.fr-view .fr-page-break:after {
@@ -4804,7 +4910,8 @@ div.fr-modal-body {
48044910
border-radius: 2px; }
48054911

48064912
.fr-table-border-container .fr-dropdown-wrapper {
4807-
width: 120px; }
4913+
width: auto;
4914+
min-width: 120px; }
48084915

48094916
.fr-table-alignment-section {
48104917
margin-left: 10px; }

webroot/css/froala_editor.pkgd.min.css

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

webroot/css/froala_style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
2+
* froala_editor v5.0.0 (https://www.froala.com/wysiwyg-editor)
33
* License https://froala.com/wysiwyg-editor/terms/
4-
* Copyright 2014-2025 Froala Labs
4+
* Copyright 2014-2026 Froala Labs
55
*/
66

77
.fr-clearfix::after {

webroot/css/froala_style.min.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.

webroot/css/plugins.pkgd.css

Lines changed: 111 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
2+
* froala_editor v5.0.0 (https://www.froala.com/wysiwyg-editor)
33
* License https://froala.com/wysiwyg-editor/terms/
4-
* Copyright 2014-2025 Froala Labs
4+
* Copyright 2014-2026 Froala Labs
55
*/
66

77
@charset "UTF-8";
@@ -65,6 +65,112 @@
6565
clip: rect(0, 0, 0, 0);
6666
border: 0; }
6767

68+
.fr-code-snippet-layer.fr-modal-wrapper .fr-modal-head {
69+
border-bottom: unset; }
70+
.fr-code-snippet-layer .fr-code-snippet-header {
71+
display: flex;
72+
line-height: 60px;
73+
margin-left: 10px; }
74+
.fr-code-snippet-layer .fr-code-snippet-header .fr-align-right .fr-btn {
75+
height: 24px;
76+
width: 24px;
77+
margin: 0; }
78+
.fr-code-snippet-layer .fr-code-snippet-header .fr-align-right .fr-btn .fr-svg {
79+
margin: 0; }
80+
.fr-code-snippet-layer .fr-active.fr-layer {
81+
margin: 0 16px;
82+
display: flex;
83+
flex-direction: column; }
84+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar {
85+
border: none; }
86+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar button.fr-command.fr-btn {
87+
outline: solid 1px #999999;
88+
color: #333333;
89+
width: 250px; }
90+
.fr-code-snippet-layer .fr-active.fr-layer .fr-code-snippet-lang.fr-toolbar .fr-dropdown-content {
91+
width: 250px; }
92+
.fr-code-snippet-layer .fr-active.fr-layer pre {
93+
position: relative;
94+
border-radius: 3px;
95+
font-family: "Fira Code", monospace;
96+
font-size: 14px;
97+
height: 330px;
98+
margin: 16px 0; }
99+
.fr-code-snippet-layer .fr-active.fr-layer pre code {
100+
outline: none;
101+
display: block;
102+
width: 100%;
103+
height: 100%; }
104+
.fr-code-snippet-layer .fr-active.fr-layer .fr-float-right {
105+
align-self: flex-end; }
106+
.fr-code-snippet-layer .fr-active.fr-layer .fr-float-right .fr-enable-accessibility.submit {
107+
margin-left: unset;
108+
border: 1px solid #0098F7; }
109+
110+
/* Froala code block styling */
111+
.fr-view .fr-code-snippet {
112+
margin: 1em 0;
113+
border-radius: 4px;
114+
overflow: hidden;
115+
font-size: 0;
116+
margin-bottom: 14px; }
117+
.fr-view .fr-code-snippet .fr-code-header {
118+
display: flex;
119+
justify-content: space-between;
120+
align-items: center;
121+
background: #ECECEC;
122+
padding: 10px 16px;
123+
color: #000;
124+
font-size: 14px; }
125+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions {
126+
display: flex;
127+
gap: 8px; }
128+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button {
129+
cursor: pointer;
130+
border: none;
131+
width: 20px;
132+
height: 22px;
133+
padding: 2px;
134+
background: transparent;
135+
margin-left: 5px;
136+
border-radius: 3px;
137+
line-height: 1px; }
138+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button:hover {
139+
background: #cecdcd; }
140+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button:active {
141+
background: #b8b6b6; }
142+
.fr-view .fr-code-snippet .fr-code-header .fr-code-actions button .fr-sr-only {
143+
display: none; }
144+
.fr-view .fr-code-snippet pre {
145+
margin: 0;
146+
overflow-x: auto;
147+
font-size: 14px; }
148+
.fr-view .fr-code-snippet code {
149+
font-family: "Fira Code", Consolas, monospace;
150+
font-size: 14px;
151+
line-height: 1.5;
152+
background: transparent; }
153+
154+
.pdf-export.fr-view .fr-code-actions {
155+
display: none;
156+
visibility: hidden; }
157+
158+
.fr-clearfix::after {
159+
clear: both;
160+
display: block;
161+
content: "";
162+
height: 0; }
163+
164+
.fr-hide-by-clipping {
165+
position: absolute;
166+
width: 1px;
167+
height: 1px;
168+
padding: 0;
169+
margin: -1px;
170+
overflow: hidden;
171+
clip: rect(0, 0, 0, 0);
172+
border: 0; }
173+
68174
textarea.fr-code {
69175
display: none;
70176
width: 100%;
@@ -2747,7 +2853,7 @@ div.fr-modal-body {
27472853
padding: 5px 0;
27482854
position: relative;
27492855
clear: both;
2750-
break-after: page;
2856+
break-after: always;
27512857
height: 10px;
27522858
margin: 2px 0; }
27532859
.fr-view .fr-page-break:after {
@@ -3249,7 +3355,8 @@ div.fr-modal-body {
32493355
border-radius: 2px; }
32503356

32513357
.fr-table-border-container .fr-dropdown-wrapper {
3252-
width: 120px; }
3358+
width: auto;
3359+
min-width: 120px; }
32533360

32543361
.fr-table-alignment-section {
32553362
margin-left: 10px; }

webroot/css/plugins.pkgd.min.css

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

webroot/css/plugins/char_counter.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
2+
* froala_editor v5.0.0 (https://www.froala.com/wysiwyg-editor)
33
* License https://froala.com/wysiwyg-editor/terms/
4-
* Copyright 2014-2025 Froala Labs
4+
* Copyright 2014-2026 Froala Labs
55
*/
66

77
.fr-clearfix::after {

webroot/css/plugins/char_counter.min.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.

0 commit comments

Comments
 (0)