But there is a problem, when loading the page the font loads a little later and at first the same emojis are visible.
I tried again today and here's what happened. Installed fork ckeditor_emoji-3477116.
On Windows, emoji look like this. There are empty squares of unsupported emoji.
Then I connected the font css file in the library of my theme and in the theme styles in font-family I left only one font for emoji (this is important). And instead of empty squares, emoji from the theme appeared.
Then in the emoji.font.css file I left only one font font-family: noto color emoji; and everything works fine.
The first time I specified the path to the font in the settings and it did not work, this time I did not specify the path to the font, only edited the emoji.font.css file. Perhaps instead of specifying the path to the file, you need to add a choice or manually enter which font to use in the module's css.
Thank you very much for responding and spending your time, it inspired me to sit down again and try to figure it out.
Okay. Thanks.
Thank you!
I tested different options. As a result, in nodes, if different types of nodes have different numbers of widgets, then in nodes with one widget, the widget is duplicated to the total number of widgets of all nodes. In comments, the presentation field provides node widgets for selection, not comment widgets.
The nodes work correctly.
Comments when selecting different widgets are displayed only by one of them.
Screenshot https://drive.google.com/file/d/1tlFp8Sp8H-Q1Vp1W7ckMwAUPhNzyT5OM/view?u...
n-i → created an issue. See original summary → .
n-i → created an issue.
n-i → created an issue.
n-i → created an issue.
This solves the problem
scss:
details.card{
summary.card-header{
border-bottom: 0;
border-bottom-right-radius: $card-inner-border-radius;
border-bottom-left-radius: $card-inner-border-radius;
}
}
details.card[open]{
summary.card-header{
border-bottom: $card-border-width solid $card-border-color;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
}
Or add css to bootstrap5/css/components/details.css
details.card summary.card-header {
border-bottom: 0;
border-bottom-right-radius: 0.375rem;
border-bottom-left-radius: 0.375rem;
}
details.card[open] summary.card-header {
border-bottom: 1px solid rgba(0, 0, 0, 0.175);
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
Everything is fine. Tabs work. There are no errors. Thank you.
N-I → changed the visibility of the branch 3449528-remove-jquery-dependency to active.
N-I → changed the visibility of the branch 3449528-remove-jquery-dependency to hidden.