halleyx-ui-framework 7.0.5 → 7.0.7
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/dist/cjs/index.css +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +2 -2
- package/dist/src/assets/styles/breadcrumb.scss +90 -12
- package/dist/src/assets/styles/colorpalette.scss +14 -10
- package/dist/src/assets/styles/texteditor.scss +71 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.js +2 -2
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
&.disabledd {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
36
|
+
// &.disabledd {
|
|
37
|
+
// color: var(--hlx-color--text);
|
|
38
|
+
// cursor: default;
|
|
39
|
+
// :hover {
|
|
40
|
+
// border: none !important;
|
|
41
|
+
// }
|
|
42
|
+
// }
|
|
43
43
|
|
|
44
|
-
&:last-child {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
44
|
+
// &:last-child {
|
|
45
|
+
// color: var(--hlx-color-text);
|
|
46
|
+
// cursor: default;
|
|
47
|
+
// pointer-events: none;
|
|
48
|
+
// }
|
|
49
49
|
> i {
|
|
50
50
|
padding-right: 5px;
|
|
51
51
|
font-size: inherit;
|
|
@@ -62,3 +62,81 @@
|
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.tooltip-container {
|
|
68
|
+
position: relative;
|
|
69
|
+
display: flex;
|
|
70
|
+
place-content: center;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* styling of the tooltip display */
|
|
74
|
+
p#tooltip-text {
|
|
75
|
+
display: none;
|
|
76
|
+
position: fixed;
|
|
77
|
+
width:150px;
|
|
78
|
+
white-space: pre-wrap;
|
|
79
|
+
word-wrap: break-word;
|
|
80
|
+
// top: 60px;
|
|
81
|
+
margin-top: -6px;
|
|
82
|
+
z-index: 100000000000000000;
|
|
83
|
+
background: #2c2c2c;
|
|
84
|
+
padding: 8px;
|
|
85
|
+
font-size: 1rem;
|
|
86
|
+
color: #fff;
|
|
87
|
+
border-radius: 6px;
|
|
88
|
+
animation: fadeIn 0.6s;
|
|
89
|
+
font-size: 11px;
|
|
90
|
+
font-family: var(--hlx-font-type-content);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
span#tooltip-text {
|
|
94
|
+
display: none;
|
|
95
|
+
position: fixed;
|
|
96
|
+
min-width: max-content;
|
|
97
|
+
max-width: 180px;
|
|
98
|
+
// width: 89px;
|
|
99
|
+
white-space: pre-wrap;
|
|
100
|
+
word-wrap: break-word;
|
|
101
|
+
margin-top: -6px;
|
|
102
|
+
z-index: 100000000000000000;
|
|
103
|
+
background: #2c2c2c;
|
|
104
|
+
padding: 8px;
|
|
105
|
+
font-size: 1rem;
|
|
106
|
+
color: #fff;
|
|
107
|
+
border-radius: 6px;
|
|
108
|
+
animation: fadeIn 0.6s;
|
|
109
|
+
font-size: 11px;
|
|
110
|
+
font-family: var(--hlx-font-type-content);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* optional styling to add a "wedge" to the tooltip */
|
|
114
|
+
p#tooltip-text:before {
|
|
115
|
+
content: "";
|
|
116
|
+
position: absolute;
|
|
117
|
+
top: 100%;
|
|
118
|
+
left: 50%;
|
|
119
|
+
margin-left: -64px;
|
|
120
|
+
border: 8px solid transparent;
|
|
121
|
+
border-top: 8px solid #2c2c2c;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
span#tooltip-text:before {
|
|
125
|
+
content: "";
|
|
126
|
+
position: absolute;
|
|
127
|
+
top: 38%;
|
|
128
|
+
// left: 300%;
|
|
129
|
+
margin-left: -26px;
|
|
130
|
+
// margin-left: -179px;
|
|
131
|
+
border: 8px solid transparent;
|
|
132
|
+
border-right: 10px solid #2c2c2c;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@keyframes fadeIn {
|
|
136
|
+
from {
|
|
137
|
+
opacity: 0;
|
|
138
|
+
}
|
|
139
|
+
to {
|
|
140
|
+
opacity: 1;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
.color-palette-container {
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: row;
|
|
4
|
-
height:
|
|
4
|
+
height: 35px;
|
|
5
5
|
width: 41px;
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
background-color: white;
|
|
6
8
|
position: relative;
|
|
7
9
|
border: 1px solid var(--hlx-border-color);
|
|
8
10
|
&:hover {
|
|
9
|
-
border: 1px solid var(--hlx-color-primary
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
11
|
+
border: 1px solid var(--hlx-color-primary);
|
|
12
|
+
// .icon-angle-down-regular {
|
|
13
|
+
// color: var(--hlx-color-primary);
|
|
14
|
+
// }
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
// background-color: aqua;
|
|
16
18
|
.color-palette-icon {
|
|
17
|
-
width: 16px;
|
|
19
|
+
// width: 16px;
|
|
18
20
|
height: 20px;
|
|
19
|
-
|
|
21
|
+
padding-left: 4px;
|
|
20
22
|
display: flex;
|
|
21
23
|
flex-direction: column;
|
|
22
|
-
margin-top:
|
|
24
|
+
margin-top: 7px;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: center;
|
|
23
27
|
}
|
|
24
28
|
.icon-color-fill {
|
|
25
29
|
font-size: 16px;
|
|
@@ -33,9 +37,9 @@
|
|
|
33
37
|
// background-color: aqua;
|
|
34
38
|
}
|
|
35
39
|
.color-palette-open-icon {
|
|
36
|
-
width: 40px;
|
|
40
|
+
// width: 40px;
|
|
37
41
|
cursor: pointer;
|
|
38
|
-
background-color: white;
|
|
42
|
+
// background-color: white;
|
|
39
43
|
border: none;
|
|
40
44
|
}
|
|
41
45
|
.color-container {
|
|
@@ -277,3 +277,74 @@
|
|
|
277
277
|
border-radius: 6px;
|
|
278
278
|
}
|
|
279
279
|
}
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
#content{
|
|
283
|
+
height:60px;
|
|
284
|
+
display: flex;
|
|
285
|
+
font-family: 'OpenSans' ;
|
|
286
|
+
// justify-content: center;
|
|
287
|
+
align-items: center;
|
|
288
|
+
.functionality{
|
|
289
|
+
height:35px;
|
|
290
|
+
width:35px;
|
|
291
|
+
margin-left: 10px;
|
|
292
|
+
margin-right:10px;
|
|
293
|
+
&:hover{
|
|
294
|
+
height:35px;
|
|
295
|
+
width:35px;
|
|
296
|
+
border-radius: 4px;
|
|
297
|
+
background: #DCF9EA;
|
|
298
|
+
cursor: pointer;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
.texteditor-active{
|
|
305
|
+
height:35px;
|
|
306
|
+
width:35px;
|
|
307
|
+
border-radius: 4px;
|
|
308
|
+
background: #54bd95;
|
|
309
|
+
color:#fbfbfb;
|
|
310
|
+
&:hover{
|
|
311
|
+
height:35px !important;
|
|
312
|
+
width:35px !important;
|
|
313
|
+
border-radius: 4px !important;
|
|
314
|
+
background: #54bd95 !important;
|
|
315
|
+
color:#fbfbfb !important;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.font-name-functionality{
|
|
320
|
+
width:160px;
|
|
321
|
+
margin-left: 10px;
|
|
322
|
+
margin-right:10px;
|
|
323
|
+
}
|
|
324
|
+
.font-size-functionality{
|
|
325
|
+
width:50px;
|
|
326
|
+
margin-left: 10px;
|
|
327
|
+
margin-right:10px;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.link-input{
|
|
331
|
+
padding-left:8px;
|
|
332
|
+
}
|
|
333
|
+
#bold{
|
|
334
|
+
font-weight: bold;
|
|
335
|
+
font-size: 16px;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
#italic{
|
|
339
|
+
font-style: italic;
|
|
340
|
+
font-size:16px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
#underline{
|
|
344
|
+
text-decoration: underline;
|
|
345
|
+
font-size:16px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.icon-menu-left-alt-regular,.icon-menu-regular,.icon-menu-right-alt-regular{
|
|
349
|
+
font-size:20px;
|
|
350
|
+
}
|