lexxy 0.1.2.beta → 0.1.4.beta
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.
- checksums.yaml +4 -4
- data/README.md +48 -20
- data/app/assets/javascript/lexxy.js +96 -17
- data/app/assets/javascript/lexxy.js.br +0 -0
- data/app/assets/javascript/lexxy.js.gz +0 -0
- data/app/assets/javascript/lexxy.min.js +3 -3
- data/app/assets/javascript/lexxy.min.js.br +0 -0
- data/app/assets/javascript/lexxy.min.js.gz +0 -0
- data/app/assets/stylesheets/lexxy-content.css +1 -1
- data/app/assets/stylesheets/lexxy-editor.css +33 -6
- data/lib/lexxy/engine.rb +0 -1
- data/lib/lexxy/version.rb +1 -1
- metadata +2 -2
Binary file
|
Binary file
|
@@ -11,10 +11,6 @@
|
|
11
11
|
position: relative;
|
12
12
|
transition: opacity 150ms;
|
13
13
|
|
14
|
-
&:not(:has(lexxy-toolbar)) {
|
15
|
-
opacity: 0;
|
16
|
-
}
|
17
|
-
|
18
14
|
input,
|
19
15
|
button {
|
20
16
|
&:focus-visible {
|
@@ -22,7 +18,8 @@
|
|
22
18
|
}
|
23
19
|
}
|
24
20
|
|
25
|
-
button
|
21
|
+
button,
|
22
|
+
summary {
|
26
23
|
-webkit-appearance: none;
|
27
24
|
appearance: none;
|
28
25
|
background: var(--lexxy-color-canvas);
|
@@ -87,10 +84,12 @@
|
|
87
84
|
font-size: inherit;
|
88
85
|
gap: var(--lexxy-toolbar-gap);
|
89
86
|
max-inline-size: 100%;
|
87
|
+
/* overflow-x: auto; */
|
90
88
|
padding: 2px;
|
91
89
|
position: relative;
|
92
90
|
|
93
|
-
|
91
|
+
button[data-command],
|
92
|
+
summary {
|
94
93
|
aspect-ratio: 1;
|
95
94
|
block-size: 2lh;
|
96
95
|
color: currentColor;
|
@@ -116,6 +115,34 @@
|
|
116
115
|
}
|
117
116
|
}
|
118
117
|
|
118
|
+
:where(.lexxy-editor__toolbar-overflow) {
|
119
|
+
display: none;
|
120
|
+
position: relative;
|
121
|
+
z-index: 1;
|
122
|
+
|
123
|
+
summary {
|
124
|
+
list-style: none;
|
125
|
+
|
126
|
+
&::-webkit-details-marker {
|
127
|
+
display: none;
|
128
|
+
}
|
129
|
+
|
130
|
+
[open] & {
|
131
|
+
filter: brightness(0.9);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
:where(.lexxy-editor__toolbar-overflow-menu) {
|
137
|
+
background-color: var(--lexxy-color-canvas);
|
138
|
+
border-radius: calc(var(--lexxy-radius) + var(--lexxy-toolbar-gap));
|
139
|
+
box-shadow: var(--lexxy-shadow);
|
140
|
+
display: flex;
|
141
|
+
inset-inline-end: 0;
|
142
|
+
padding: var(--lexxy-toolbar-gap);
|
143
|
+
position: absolute;
|
144
|
+
}
|
145
|
+
|
119
146
|
/* Link dialog
|
120
147
|
/* -------------------------------------------------------------------------- */
|
121
148
|
|
data/lib/lexxy/engine.rb
CHANGED
data/lib/lexxy/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lexxy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4.beta
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jorge Manrubia
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-09-
|
10
|
+
date: 2025-09-07 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: rails
|