GPQAPP
822 строки · 22.9 Кб
1/*!
2*
3* Super simple WYSIWYG editor v0.8.20
4* https://summernote.org
5*
6*
7* Copyright 2013- Alan Hong and contributors
8* Summernote may be freely distributed under the MIT license.
9*
10* Date: 2021-10-14T21:15Z
11*
12*/
13@font-face {14font-family: "summernote";15font-style: normal;16font-weight: 400;17font-display: auto;18src: url("./font/summernote.eot?#iefix") format("embedded-opentype"), url("./font/summernote.woff2") format("woff2"), url("./font/summernote.woff") format("woff"), url("./font/summernote.ttf") format("truetype");19}
20[class^=note-icon]:before,
21[class*=" note-icon"]:before {22display: inline-block;23font-family: "summernote";24font-style: normal;25font-size: inherit;26text-decoration: inherit;27text-rendering: auto;28text-transform: none;29vertical-align: middle;30-moz-osx-font-smoothing: grayscale;31-webkit-font-smoothing: antialiased;32speak: none;33}
34
35.note-icon-fw {36text-align: center;37width: 1.25em;38}
39
40.note-icon-border {41border: solid 0.08em #eee;42border-radius: 0.1em;43padding: 0.2em 0.25em 0.15em;44}
45
46.note-icon-pull-left {47float: left;48}
49
50.note-icon-pull-right {51float: right;52}
53
54.note-icon.note-icon-pull-left {55margin-right: 0.3em;56}
57.note-icon.note-icon-pull-right {58margin-left: 0.3em;59}
60
61.note-icon-align::before {62content: "\ea01";63}
64
65.note-icon-align-center::before {66content: "\ea02";67}
68
69.note-icon-align-indent::before {70content: "\ea03";71}
72
73.note-icon-align-justify::before {74content: "\ea04";75}
76
77.note-icon-align-left::before {78content: "\ea05";79}
80
81.note-icon-align-outdent::before {82content: "\ea06";83}
84
85.note-icon-align-right::before {86content: "\ea07";87}
88
89.note-icon-arrow-circle-down::before {90content: "\ea08";91}
92
93.note-icon-arrow-circle-left::before {94content: "\ea09";95}
96
97.note-icon-arrow-circle-right::before {98content: "\ea0a";99}
100
101.note-icon-arrow-circle-up::before {102content: "\ea0b";103}
104
105.note-icon-arrows-alt::before {106content: "\ea0c";107}
108
109.note-icon-arrows-h::before {110content: "\ea0d";111}
112
113.note-icon-arrows-v::before {114content: "\ea0e";115}
116
117.note-icon-bold::before {118content: "\ea0f";119}
120
121.note-icon-caret::before {122content: "\ea10";123}
124
125.note-icon-chain-broken::before {126content: "\ea11";127}
128
129.note-icon-circle::before {130content: "\ea12";131}
132
133.note-icon-close::before {134content: "\ea13";135}
136
137.note-icon-code::before {138content: "\ea14";139}
140
141.note-icon-col-after::before {142content: "\ea15";143}
144
145.note-icon-col-before::before {146content: "\ea16";147}
148
149.note-icon-col-remove::before {150content: "\ea17";151}
152
153.note-icon-eraser::before {154content: "\ea18";155}
156
157.note-icon-float-left::before {158content: "\ea19";159}
160
161.note-icon-float-none::before {162content: "\ea1a";163}
164
165.note-icon-float-right::before {166content: "\ea1b";167}
168
169.note-icon-font::before {170content: "\ea1c";171}
172
173.note-icon-frame::before {174content: "\ea1d";175}
176
177.note-icon-italic::before {178content: "\ea1e";179}
180
181.note-icon-link::before {182content: "\ea1f";183}
184
185.note-icon-magic::before {186content: "\ea20";187}
188
189.note-icon-menu-check::before {190content: "\ea21";191}
192
193.note-icon-minus::before {194content: "\ea22";195}
196
197.note-icon-orderedlist::before {198content: "\ea23";199}
200
201.note-icon-pencil::before {202content: "\ea24";203}
204
205.note-icon-picture::before {206content: "\ea25";207}
208
209.note-icon-question::before {210content: "\ea26";211}
212
213.note-icon-redo::before {214content: "\ea27";215}
216
217.note-icon-rollback::before {218content: "\ea28";219}
220
221.note-icon-row-above::before {222content: "\ea29";223}
224
225.note-icon-row-below::before {226content: "\ea2a";227}
228
229.note-icon-row-remove::before {230content: "\ea2b";231}
232
233.note-icon-special-character::before {234content: "\ea2c";235}
236
237.note-icon-square::before {238content: "\ea2d";239}
240
241.note-icon-strikethrough::before {242content: "\ea2e";243}
244
245.note-icon-subscript::before {246content: "\ea2f";247}
248
249.note-icon-summernote::before {250content: "\ea30";251}
252
253.note-icon-superscript::before {254content: "\ea31";255}
256
257.note-icon-table::before {258content: "\ea32";259}
260
261.note-icon-text-height::before {262content: "\ea33";263}
264
265.note-icon-trash::before {266content: "\ea34";267}
268
269.note-icon-underline::before {270content: "\ea35";271}
272
273.note-icon-undo::before {274content: "\ea36";275}
276
277.note-icon-unorderedlist::before {278content: "\ea37";279}
280
281.note-icon-video::before {282content: "\ea38";283}
284
285/* Theme Variables
286------------------------------------------ */
287/* Layout
288------------------------------------------ */
289.note-editor {290position: relative;291}
292.note-editor .note-dropzone {293position: absolute;294display: none;295z-index: 100;296color: lightskyblue;297background-color: #fff;298opacity: 0.95;299}
300.note-editor .note-dropzone .note-dropzone-message {301display: table-cell;302vertical-align: middle;303text-align: center;304font-size: 28px;305font-weight: 700;306}
307.note-editor .note-dropzone.hover {308color: #098ddf;309}
310.note-editor.dragover .note-dropzone {311display: table;312}
313.note-editor .note-editing-area {314position: relative;315}
316.note-editor .note-editing-area .note-editable {317outline: none;318}
319.note-editor .note-editing-area .note-editable sup {320vertical-align: super;321}
322.note-editor .note-editing-area .note-editable sub {323vertical-align: sub;324}
325.note-editor .note-editing-area .note-editable img.note-float-left {326margin-right: 10px;327}
328.note-editor .note-editing-area .note-editable img.note-float-right {329margin-left: 10px;330}
331
332/* Frame mode layout
333------------------------------------------ */
334.note-editor.note-frame,
335.note-editor.note-airframe {336border: 1px solid #00000032;337}
338.note-editor.note-frame.codeview .note-editing-area .note-editable,
339.note-editor.note-airframe.codeview .note-editing-area .note-editable {340display: none;341}
342.note-editor.note-frame.codeview .note-editing-area .note-codable,
343.note-editor.note-airframe.codeview .note-editing-area .note-codable {344display: block;345}
346.note-editor.note-frame .note-editing-area,
347.note-editor.note-airframe .note-editing-area {348overflow: hidden;349}
350.note-editor.note-frame .note-editing-area .note-editable,
351.note-editor.note-airframe .note-editing-area .note-editable {352padding: 10px;353overflow: auto;354word-wrap: break-word;355}
356.note-editor.note-frame .note-editing-area .note-editable[contenteditable=false],
357.note-editor.note-airframe .note-editing-area .note-editable[contenteditable=false] {358background-color: #8080801d;359}
360.note-editor.note-frame .note-editing-area .note-codable,
361.note-editor.note-airframe .note-editing-area .note-codable {362display: none;363width: 100%;364padding: 10px;365border: none;366box-shadow: none;367font-family: Menlo, Monaco, monospace, sans-serif;368font-size: 14px;369color: #ccc;370background-color: #222;371resize: none;372outline: none;373-ms-box-sizing: border-box;374box-sizing: border-box;375border-radius: 0;376margin-bottom: 0;377}
378.note-editor.note-frame.fullscreen,
379.note-editor.note-airframe.fullscreen {380position: fixed;381top: 0;382left: 0;383width: 100% !important;384z-index: 1050;385}
386.note-editor.note-frame.fullscreen .note-resizebar,
387.note-editor.note-airframe.fullscreen .note-resizebar {388display: none;389}
390.note-editor.note-frame .note-status-output,
391.note-editor.note-airframe .note-status-output {392display: block;393width: 100%;394font-size: 14px;395line-height: 1.42857143;396height: 20px;397margin-bottom: 0;398color: #000;399border: 0;400border-top: 1px solid #e2e2e2;401}
402.note-editor.note-frame .note-status-output:empty,
403.note-editor.note-airframe .note-status-output:empty {404height: 0;405border-top: 0 solid transparent;406}
407.note-editor.note-frame .note-status-output .pull-right,
408.note-editor.note-airframe .note-status-output .pull-right {409float: right !important;410}
411.note-editor.note-frame .note-status-output .text-muted,
412.note-editor.note-airframe .note-status-output .text-muted {413color: #777;414}
415.note-editor.note-frame .note-status-output .text-primary,
416.note-editor.note-airframe .note-status-output .text-primary {417color: #286090;418}
419.note-editor.note-frame .note-status-output .text-success,
420.note-editor.note-airframe .note-status-output .text-success {421color: #3c763d;422}
423.note-editor.note-frame .note-status-output .text-info,
424.note-editor.note-airframe .note-status-output .text-info {425color: #31708f;426}
427.note-editor.note-frame .note-status-output .text-warning,
428.note-editor.note-airframe .note-status-output .text-warning {429color: #8a6d3b;430}
431.note-editor.note-frame .note-status-output .text-danger,
432.note-editor.note-airframe .note-status-output .text-danger {433color: #a94442;434}
435.note-editor.note-frame .note-status-output .alert,
436.note-editor.note-airframe .note-status-output .alert {437margin: -7px 0 0 0;438padding: 7px 10px 2px 10px;439border-radius: 0;440color: #000;441background-color: #f5f5f5;442}
443.note-editor.note-frame .note-status-output .alert .note-icon,
444.note-editor.note-airframe .note-status-output .alert .note-icon {445margin-right: 5px;446}
447.note-editor.note-frame .note-status-output .alert-success,
448.note-editor.note-airframe .note-status-output .alert-success {449color: #3c763d !important;450background-color: #dff0d8 !important;451}
452.note-editor.note-frame .note-status-output .alert-info,
453.note-editor.note-airframe .note-status-output .alert-info {454color: #31708f !important;455background-color: #d9edf7 !important;456}
457.note-editor.note-frame .note-status-output .alert-warning,
458.note-editor.note-airframe .note-status-output .alert-warning {459color: #8a6d3b !important;460background-color: #fcf8e3 !important;461}
462.note-editor.note-frame .note-status-output .alert-danger,
463.note-editor.note-airframe .note-status-output .alert-danger {464color: #a94442 !important;465background-color: #f2dede !important;466}
467.note-editor.note-frame .note-statusbar,
468.note-editor.note-airframe .note-statusbar {469background-color: #8080801d;470border-bottom-left-radius: 4px;471border-bottom-right-radius: 4px;472border-top: 1px solid #00000032;473}
474.note-editor.note-frame .note-statusbar .note-resizebar,
475.note-editor.note-airframe .note-statusbar .note-resizebar {476padding-top: 1px;477height: 9px;478width: 100%;479cursor: ns-resize;480}
481.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar,
482.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar {483width: 20px;484margin: 1px auto;485border-top: 1px solid #00000032;486}
487.note-editor.note-frame .note-statusbar.locked .note-resizebar,
488.note-editor.note-airframe .note-statusbar.locked .note-resizebar {489cursor: default;490}
491.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar,
492.note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar {493display: none;494}
495.note-editor.note-frame .note-placeholder,
496.note-editor.note-airframe .note-placeholder {497padding: 10px;498}
499
500.note-editor.note-airframe {501border: 0;502}
503.note-editor.note-airframe .note-editing-area .note-editable {504padding: 0;505}
506
507/* Popover
508------------------------------------------ */
509.note-popover.popover {510display: none;511max-width: none;512}
513.note-popover.popover .popover-content a {514display: inline-block;515max-width: 200px;516overflow: hidden;517text-overflow: ellipsis;518white-space: nowrap;519vertical-align: middle;520}
521.note-popover.popover .arrow {522left: 20px !important;523}
524
525/* Popover and Toolbar (Button container)
526------------------------------------------ */
527.note-toolbar {528position: relative;529}
530
531.note-popover .popover-content, .note-editor .note-toolbar {532margin: 0;533padding: 0 0 5px 5px;534}
535.note-popover .popover-content > .note-btn-group, .note-editor .note-toolbar > .note-btn-group {536margin-top: 5px;537margin-left: 0;538margin-right: 5px;539}
540.note-popover .popover-content .note-btn-group .note-table, .note-editor .note-toolbar .note-btn-group .note-table {541min-width: 0;542padding: 5px;543}
544.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker {545font-size: 18px;546}
547.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {548position: absolute !important;549z-index: 3;550width: 10em;551height: 10em;552cursor: pointer;553}
554.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {555position: relative !important;556z-index: 1;557width: 5em;558height: 5em;559background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;560}
561.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {562position: absolute !important;563z-index: 2;564width: 1em;565height: 1em;566background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;567}
568.note-popover .popover-content .note-style .dropdown-style blockquote, .note-popover .popover-content .note-style .dropdown-style pre, .note-editor .note-toolbar .note-style .dropdown-style blockquote, .note-editor .note-toolbar .note-style .dropdown-style pre {569margin: 0;570padding: 5px 10px;571}
572.note-popover .popover-content .note-style .dropdown-style h1, .note-popover .popover-content .note-style .dropdown-style h2, .note-popover .popover-content .note-style .dropdown-style h3, .note-popover .popover-content .note-style .dropdown-style h4, .note-popover .popover-content .note-style .dropdown-style h5, .note-popover .popover-content .note-style .dropdown-style h6, .note-popover .popover-content .note-style .dropdown-style p, .note-editor .note-toolbar .note-style .dropdown-style h1, .note-editor .note-toolbar .note-style .dropdown-style h2, .note-editor .note-toolbar .note-style .dropdown-style h3, .note-editor .note-toolbar .note-style .dropdown-style h4, .note-editor .note-toolbar .note-style .dropdown-style h5, .note-editor .note-toolbar .note-style .dropdown-style h6, .note-editor .note-toolbar .note-style .dropdown-style p {573margin: 0;574padding: 0;575}
576.note-popover .popover-content .note-color-all .note-dropdown-menu, .note-editor .note-toolbar .note-color-all .note-dropdown-menu {577min-width: 337px;578}
579.note-popover .popover-content .note-color .dropdown-toggle, .note-editor .note-toolbar .note-color .dropdown-toggle {580width: 20px;581padding-left: 5px;582}
583.note-popover .popover-content .note-color .note-dropdown-menu .note-palette, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette {584display: inline-block;585margin: 0;586width: 160px;587}
588.note-popover .popover-content .note-color .note-dropdown-menu .note-palette:first-child, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette:first-child {589margin: 0 5px;590}
591.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-palette-title, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-palette-title {592font-size: 12px;593margin: 2px 7px;594text-align: center;595border-bottom: 1px solid #eee;596}
597.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset,
598.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset,
599.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select {600font-size: 11px;601margin: 3px;602padding: 0 3px;603cursor: pointer;604width: 100%;605border-radius: 5px;606}
607.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
608.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select:hover, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,
609.note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select:hover {610background: #eee;611}
612.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-row, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-row {613height: 20px;614}
615.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select-btn {616display: none;617}
618.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn {619border: 1px solid #eee;620}
621.note-popover .popover-content .note-para .note-dropdown-menu, .note-editor .note-toolbar .note-para .note-dropdown-menu {622min-width: 228px;623padding: 5px;624}
625.note-popover .popover-content .note-para .note-dropdown-menu > div + div, .note-editor .note-toolbar .note-para .note-dropdown-menu > div + div {626margin-left: 5px;627}
628.note-popover .popover-content .note-dropdown-menu, .note-editor .note-toolbar .note-dropdown-menu {629min-width: 160px;630}
631.note-popover .popover-content .note-dropdown-menu.right, .note-editor .note-toolbar .note-dropdown-menu.right {632right: 0;633left: auto;634}
635.note-popover .popover-content .note-dropdown-menu.right::before, .note-editor .note-toolbar .note-dropdown-menu.right::before {636right: 9px;637left: auto !important;638}
639.note-popover .popover-content .note-dropdown-menu.right::after, .note-editor .note-toolbar .note-dropdown-menu.right::after {640right: 10px;641left: auto !important;642}
643.note-popover .popover-content .note-dropdown-menu.note-check a i, .note-editor .note-toolbar .note-dropdown-menu.note-check a i {644color: deepskyblue;645visibility: hidden;646}
647.note-popover .popover-content .note-dropdown-menu.note-check a.checked i, .note-editor .note-toolbar .note-dropdown-menu.note-check a.checked i {648visibility: visible;649}
650.note-popover .popover-content .note-fontsize-10, .note-editor .note-toolbar .note-fontsize-10 {651font-size: 10px;652}
653.note-popover .popover-content .note-color-palette, .note-editor .note-toolbar .note-color-palette {654line-height: 1;655}
656.note-popover .popover-content .note-color-palette div .note-color-btn, .note-editor .note-toolbar .note-color-palette div .note-color-btn {657width: 20px;658height: 20px;659padding: 0;660margin: 0;661border: 0;662border-radius: 0;663}
664.note-popover .popover-content .note-color-palette div .note-color-btn:hover, .note-editor .note-toolbar .note-color-palette div .note-color-btn:hover {665transform: scale(1.2);666transition: all 0.2s;667}
668
669/* Dialog
670------------------------------------------ */
671.note-modal .modal-dialog {672outline: 0;673border-radius: 5px;674box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);675}
676.note-modal .form-group {677margin-left: 0;678margin-right: 0;679}
680.note-modal .note-modal-form {681margin: 0;682}
683.note-modal .note-image-dialog .note-dropzone {684min-height: 100px;685font-size: 30px;686line-height: 4;687color: lightgray;688text-align: center;689border: 4px dashed lightgray;690margin-bottom: 10px;691}
692@-moz-document url-prefix() {693.note-modal .note-image-input {694height: auto;695}696}
697
698/* Placeholder
699------------------------------------------ */
700.note-placeholder {701position: absolute;702display: none;703color: gray;704}
705
706/* Handle
707------------------------------------------ */
708.note-handle .note-control-selection {709position: absolute;710display: none;711border: 1px solid #000;712}
713.note-handle .note-control-selection > div {714position: absolute;715}
716.note-handle .note-control-selection .note-control-selection-bg {717width: 100%;718height: 100%;719background-color: #000;720-webkit-opacity: 0.3;721-khtml-opacity: 0.3;722-moz-opacity: 0.3;723opacity: 0.3;724-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);725filter: alpha(opacity=30);726}
727.note-handle .note-control-selection .note-control-handle, .note-handle .note-control-selection .note-control-sizing, .note-handle .note-control-selection .note-control-holder {728width: 7px;729height: 7px;730border: 1px solid #000;731}
732.note-handle .note-control-selection .note-control-sizing {733background-color: #000;734}
735.note-handle .note-control-selection .note-control-nw {736top: -5px;737left: -5px;738border-right: none;739border-bottom: none;740}
741.note-handle .note-control-selection .note-control-ne {742top: -5px;743right: -5px;744border-bottom: none;745border-left: none;746}
747.note-handle .note-control-selection .note-control-sw {748bottom: -5px;749left: -5px;750border-top: none;751border-right: none;752}
753.note-handle .note-control-selection .note-control-se {754right: -5px;755bottom: -5px;756cursor: se-resize;757}
758.note-handle .note-control-selection .note-control-se.note-control-holder {759cursor: default;760border-top: none;761border-left: none;762}
763.note-handle .note-control-selection .note-control-selection-info {764right: 0;765bottom: 0;766padding: 5px;767margin: 5px;768color: #fff;769background-color: #000;770font-size: 12px;771border-radius: 5px;772-webkit-opacity: 0.7;773-khtml-opacity: 0.7;774-moz-opacity: 0.7;775opacity: 0.7;776-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);777filter: alpha(opacity=70);778}
779
780.note-hint-popover {781min-width: 100px;782padding: 2px;783}
784.note-hint-popover .popover-content {785padding: 3px;786max-height: 150px;787overflow: auto;788}
789.note-hint-popover .popover-content .note-hint-group .note-hint-item {790display: block !important;791padding: 3px;792}
793.note-hint-popover .popover-content .note-hint-group .note-hint-item.active, .note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {794display: block;795clear: both;796font-weight: 400;797line-height: 1.4;798color: white;799white-space: nowrap;800text-decoration: none;801background-color: #428bca;802outline: 0;803cursor: pointer;804}
805
806/* Handle
807------------------------------------------ */
808html .note-fullscreen-body, body .note-fullscreen-body {809overflow: hidden !important;810}
811
812.note-toolbar {813background: #8080801d;814}
815
816.note-btn-group .note-btn {817border-color: #00000032;818padding: 0.28rem 0.65rem;819font-size: 13px;820}
821
822/*# sourceMappingURL=summernote-bs5.css.map*/