Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

style.admin.css

.ckeditor5-toolbar-button-style {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
  color: #000;
}

.ckeditor5-toolbar-button-style::before {
  margin-left: 10px;
  /* For browsers which don't support alt content, eg FireFox */
  content: "Style";
  content: "Style" / "";
  font-size: 14px;
}

[dir="rtl"] .ckeditor5-toolbar-button-style::before {
  margin-right: 10px;
  margin-left: 0;
}

.ckeditor5-toolbar-button-style::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  content: "";
  transform: rotate(135deg);
  border-width: 2px 2px 0 0;
  border-style: solid;
}

[dir="rtl"] .ckeditor5-toolbar-button-style::after {
  margin-right: 0;
  margin-left: 10px;
}

File

core/modules/ckeditor5/css/style.admin.css

View source
  1. .ckeditor5-toolbar-button-style {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. width: 110px;
  6. color: #000;
  7. }
  8. .ckeditor5-toolbar-button-style::before {
  9. margin-left: 10px;
  10. /* For browsers which don't support alt content, eg FireFox */
  11. content: "Style";
  12. content: "Style" / "";
  13. font-size: 14px;
  14. }
  15. [dir="rtl"] .ckeditor5-toolbar-button-style::before {
  16. margin-right: 10px;
  17. margin-left: 0;
  18. }
  19. .ckeditor5-toolbar-button-style::after {
  20. display: inline-block;
  21. width: 7px;
  22. height: 7px;
  23. margin-right: 10px;
  24. content: "";
  25. transform: rotate(135deg);
  26. border-width: 2px 2px 0 0;
  27. border-style: solid;
  28. }
  29. [dir="rtl"] .ckeditor5-toolbar-button-style::after {
  30. margin-right: 0;
  31. margin-left: 10px;
  32. }
RSS feed
Powered by Drupal