@ckeditor/ckeditor5-theme-lark 43.3.1 → 44.0.0-alpha.0

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.
package/README.md CHANGED
@@ -3,20 +3,26 @@ CKEditor 5 lark theme
3
3
 
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-theme-lark.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
- [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
6
+ [![CircleCI](https://circleci.com/gh/ckeditor/ckeditor5.svg?style=shield)](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
7
7
 
8
8
  This package implements lark theme – the default CKEditor 5 theme.
9
9
 
10
- ## Documentation
11
-
12
- See the [`@ckeditor/ckeditor5-theme-lark` package](https://ckeditor.com/docs/ckeditor5/latest/api/theme-lark.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
13
-
14
10
  ## Installation
15
11
 
12
+ This plugin is part of the `ckeditor5` package. Install the whole package to use it.
13
+
16
14
  ```bash
17
15
  npm install ckeditor5
18
16
  ```
19
17
 
18
+ ## Create free account
19
+
20
+ If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/signup).
21
+
22
+ ## Documentation
23
+
24
+ See the [`@ckeditor/ckeditor5-theme-lark` package](https://ckeditor.com/docs/ckeditor5/latest/api/theme-lark.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
25
+
20
26
  ## License
21
27
 
22
28
  Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
@@ -1383,6 +1383,7 @@ a.ck.ck-button-bold{
1383
1383
  .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button .ck-button__label{
1384
1384
  width:unset;
1385
1385
  line-height:unset;
1386
+ overflow:visible;
1386
1387
  }
1387
1388
  .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button.ck-on{
1388
1389
  border-bottom-left-radius:0;
@@ -2022,6 +2023,15 @@ a.ck.ck-button-bold{
2022
2023
  .ck.ck-editor__main > .ck-editor__editable:not(.ck-focused){
2023
2024
  border-color:var(--ck-color-base-border);
2024
2025
  }
2026
+ .ck .ck-fake-bookmark-selection{
2027
+ background:var(--ck-color-link-fake-selection);
2028
+ }
2029
+ .ck .ck-fake-bookmark-selection_collapsed{
2030
+ height:100%;
2031
+ border-right:1px solid var(--ck-color-base-text);
2032
+ margin-right:-1px;
2033
+ outline:solid 1px hsla(0, 0%, 100%, .5);
2034
+ }
2025
2035
  :root{
2026
2036
  --ck-clipboard-drop-target-dot-width:12px;
2027
2037
  --ck-clipboard-drop-target-dot-height:8px;
package/dist/index.css CHANGED
@@ -2205,6 +2205,12 @@ of the component, floating–point numbers have been used which, for the default
2205
2205
  .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button .ck-button__label {
2206
2206
  width: unset;
2207
2207
  line-height: unset;
2208
+
2209
+ /*
2210
+ * Top-level buttons don't use ellipsis and overflow: hidden clips descenders.
2211
+ * See https://github.com/ckeditor/ckeditor5/issues/17422.
2212
+ */
2213
+ overflow: visible;
2208
2214
  }
2209
2215
  .ck.ck-menu-bar__menu.ck-menu-bar__menu_top-level > .ck-menu-bar__menu__button.ck-on {
2210
2216
  border-bottom-left-radius: 0;
@@ -3113,6 +3119,24 @@ of the component, floating–point numbers have been used which, for the default
3113
3119
  }
3114
3120
 
3115
3121
  /* Plugins */
3122
+ /*
3123
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3124
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
3125
+ */
3126
+ /*
3127
+ * Classes used by the "fake visual selection" displayed in the content when an input
3128
+ * in the bookmark UI has focus (the browser does not render the native selection in this state).
3129
+ */
3130
+ .ck .ck-fake-bookmark-selection {
3131
+ background: var(--ck-color-link-fake-selection);
3132
+ }
3133
+ /* A collapsed fake visual selection. */
3134
+ .ck .ck-fake-bookmark-selection_collapsed {
3135
+ height: 100%;
3136
+ border-right: 1px solid var(--ck-color-base-text);
3137
+ margin-right: -1px;
3138
+ outline: solid 1px hsla(0, 0%, 100%, .5);
3139
+ }
3116
3140
  /*
3117
3141
  * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3118
3142
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license