@pageboard/html 0.11.2 → 0.11.3
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/elements/grid.js +12 -7
- package/package.json +1 -1
- package/ui/card.css +4 -4
- package/ui/fieldset-list.css +3 -0
- package/ui/item.css +4 -4
- package/ui/loading.css +3 -3
- package/ui/menu.css +1 -1
- package/ui/rating.css +2 -2
- package/ui/site.css +5 -1
- package/ui/transition.css +6 -6
package/elements/grid.js
CHANGED
|
@@ -6,20 +6,25 @@ exports.grid = {
|
|
|
6
6
|
properties: {
|
|
7
7
|
width: {
|
|
8
8
|
title: 'Width',
|
|
9
|
-
default: "full",
|
|
10
9
|
anyOf: [{
|
|
10
|
+
type: 'null',
|
|
11
|
+
title: 'normal'
|
|
12
|
+
}, {
|
|
13
|
+
const: "min",
|
|
14
|
+
title: "minimal"
|
|
15
|
+
}, {
|
|
11
16
|
const: "full",
|
|
12
|
-
title: "
|
|
17
|
+
title: "maximal"
|
|
13
18
|
}, {
|
|
14
19
|
const: "contained",
|
|
15
|
-
title: "
|
|
20
|
+
title: "contained"
|
|
16
21
|
}]
|
|
17
22
|
},
|
|
18
23
|
responsive: {
|
|
19
24
|
title: 'Responsive',
|
|
20
25
|
anyOf: [{
|
|
21
26
|
title: 'No',
|
|
22
|
-
|
|
27
|
+
type: 'null'
|
|
23
28
|
}, {
|
|
24
29
|
title: 'Stackable',
|
|
25
30
|
const: 'stackable'
|
|
@@ -38,7 +43,7 @@ exports.grid = {
|
|
|
38
43
|
maximum: 16
|
|
39
44
|
}
|
|
40
45
|
},
|
|
41
|
-
html: '<div class="ui [responsive] equal width [columns|num: columns] grid [width|eq:contained:container]"></div>',
|
|
46
|
+
html: '<div class="ui [responsive] [width|neq:min:equal width:] [columns|num: columns] grid [width|eq:contained:container]"></div>',
|
|
42
47
|
stylesheets: [
|
|
43
48
|
'../lib/components/grid.css'
|
|
44
49
|
]
|
|
@@ -71,7 +76,7 @@ exports.grid_row = {
|
|
|
71
76
|
title: 'Responsive',
|
|
72
77
|
anyOf: [{
|
|
73
78
|
title: 'No',
|
|
74
|
-
|
|
79
|
+
type: 'null'
|
|
75
80
|
}, {
|
|
76
81
|
title: 'Stackable',
|
|
77
82
|
const: 'stackable'
|
|
@@ -90,5 +95,5 @@ exports.grid_row = {
|
|
|
90
95
|
maximum: 16
|
|
91
96
|
}
|
|
92
97
|
},
|
|
93
|
-
html: '<div class="[responsive]
|
|
98
|
+
html: '<div class="[responsive] [columns|num: columns] row"></div>'
|
|
94
99
|
};
|
package/package.json
CHANGED
package/ui/card.css
CHANGED
|
@@ -298,11 +298,11 @@
|
|
|
298
298
|
/* Icon */
|
|
299
299
|
.ui.cards > .ui > .content .star.icon {
|
|
300
300
|
cursor: pointer;
|
|
301
|
-
opacity: 75
|
|
301
|
+
opacity: 0.75;
|
|
302
302
|
transition: color 0.1s ease;
|
|
303
303
|
}
|
|
304
304
|
.ui.cards > .ui > .content .star.icon:hover {
|
|
305
|
-
opacity:
|
|
305
|
+
opacity: 1;
|
|
306
306
|
color: #FFB70A;
|
|
307
307
|
}
|
|
308
308
|
.ui.cards > .ui > .content .active.star.icon {
|
|
@@ -315,11 +315,11 @@
|
|
|
315
315
|
/* Icon */
|
|
316
316
|
.ui.cards > .ui > .content .like.icon {
|
|
317
317
|
cursor: pointer;
|
|
318
|
-
opacity: 75
|
|
318
|
+
opacity: 0.75;
|
|
319
319
|
transition: color 0.1s ease;
|
|
320
320
|
}
|
|
321
321
|
.ui.cards > .ui > .content .like.icon:hover {
|
|
322
|
-
opacity:
|
|
322
|
+
opacity: 1;
|
|
323
323
|
color: #FF2733;
|
|
324
324
|
}
|
|
325
325
|
.ui.cards > .ui > .content .active.like.icon {
|
package/ui/fieldset-list.css
CHANGED
package/ui/item.css
CHANGED
|
@@ -244,11 +244,11 @@
|
|
|
244
244
|
/* Icon */
|
|
245
245
|
.ui.items > .ui > .content .favorite.icon {
|
|
246
246
|
cursor: pointer;
|
|
247
|
-
opacity: 75
|
|
247
|
+
opacity: 0.75;
|
|
248
248
|
transition: color 0.1s ease;
|
|
249
249
|
}
|
|
250
250
|
.ui.items > .ui > .content .favorite.icon:hover {
|
|
251
|
-
opacity:
|
|
251
|
+
opacity: 1;
|
|
252
252
|
color: #FFB70A;
|
|
253
253
|
}
|
|
254
254
|
.ui.items > .ui > .content .active.favorite.icon {
|
|
@@ -261,11 +261,11 @@
|
|
|
261
261
|
/* Icon */
|
|
262
262
|
.ui.items > .ui > .content .like.icon {
|
|
263
263
|
cursor: pointer;
|
|
264
|
-
opacity: 75
|
|
264
|
+
opacity: 0.75;
|
|
265
265
|
transition: color 0.1s ease;
|
|
266
266
|
}
|
|
267
267
|
.ui.items > .ui > .content .like.icon:hover {
|
|
268
|
-
opacity:
|
|
268
|
+
opacity: 1;
|
|
269
269
|
color: #FF2733;
|
|
270
270
|
}
|
|
271
271
|
.ui.items > .ui > .content .active.like.icon {
|
package/ui/loading.css
CHANGED
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
0% {
|
|
22
22
|
width:0%;
|
|
23
23
|
margin-left:0px;
|
|
24
|
-
opacity:
|
|
24
|
+
opacity:0.3;
|
|
25
25
|
}
|
|
26
26
|
50% {
|
|
27
27
|
width:20px;
|
|
28
28
|
margin-left:-10px;
|
|
29
|
-
opacity:
|
|
29
|
+
opacity:1;
|
|
30
30
|
}
|
|
31
31
|
100% {
|
|
32
32
|
width:0%;
|
|
33
33
|
margin-left:0px;
|
|
34
|
-
opacity:
|
|
34
|
+
opacity:0.3;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
package/ui/menu.css
CHANGED
package/ui/rating.css
CHANGED
|
@@ -101,10 +101,10 @@ element-rating.disabled .icon {
|
|
|
101
101
|
|
|
102
102
|
/* Selected Rating */
|
|
103
103
|
element-rating.selected .active.icon {
|
|
104
|
-
opacity:
|
|
104
|
+
opacity: 1;
|
|
105
105
|
}
|
|
106
106
|
element-rating .icon.selected,
|
|
107
107
|
element-rating.selected .icon.selected {
|
|
108
|
-
opacity:
|
|
108
|
+
opacity: 1;
|
|
109
109
|
}
|
|
110
110
|
|
package/ui/site.css
CHANGED
|
@@ -193,6 +193,7 @@ i.icon::before {
|
|
|
193
193
|
.caret-icon::before {
|
|
194
194
|
content: "\f0da";
|
|
195
195
|
transform: rotate(0deg);
|
|
196
|
+
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
|
|
196
197
|
font-family: Accordion;
|
|
197
198
|
font-style:normal;
|
|
198
199
|
vertical-align: top;
|
|
@@ -290,6 +291,9 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover {
|
|
|
290
291
|
.ui.grid.container {
|
|
291
292
|
display:flex;
|
|
292
293
|
}
|
|
294
|
+
.ui.grid.full {
|
|
295
|
+
width: 100% !important;
|
|
296
|
+
}
|
|
293
297
|
|
|
294
298
|
/* for editor only, but semantic-ui dependent */
|
|
295
299
|
[contenteditable] .ui.buttons .disabled.button,
|
|
@@ -305,7 +309,7 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover {
|
|
|
305
309
|
width: auto;
|
|
306
310
|
height: auto;
|
|
307
311
|
top: 100% !important;
|
|
308
|
-
opacity:
|
|
312
|
+
opacity: 1;
|
|
309
313
|
}
|
|
310
314
|
|
|
311
315
|
[contenteditable] .field[block-focused] .dropdown > .menu {
|
package/ui/transition.css
CHANGED
|
@@ -8,7 +8,7 @@ body::after {
|
|
|
8
8
|
top:1px;
|
|
9
9
|
width:0%;
|
|
10
10
|
height:0;
|
|
11
|
-
opacity:
|
|
11
|
+
opacity:0.7;
|
|
12
12
|
background: #4486cc;
|
|
13
13
|
box-shadow: 0 0 5px rgb(99 162 235 / 70%);
|
|
14
14
|
z-index:1000;
|
|
@@ -75,7 +75,7 @@ html.transition > body + body[data-transition-open] {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
html.transition > body + body[data-transition-open] > *:not([block-type="main"]) {
|
|
78
|
-
opacity:0
|
|
78
|
+
opacity:0;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
html.transition > body + body[data-transition-open="tr-right"] {
|
|
@@ -99,7 +99,7 @@ html.transition > body + body[data-transition-open="tr-bottom"] {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
html.transition > body + body[data-transition-open="fade"] {
|
|
102
|
-
opacity:0
|
|
102
|
+
opacity:0;
|
|
103
103
|
transition: opacity 1.5s ease-in;
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -107,7 +107,7 @@ html.transition.transitioning > body + body[data-transition-open|="tr"] {
|
|
|
107
107
|
transform: translate3d(0, 0, 0);
|
|
108
108
|
}
|
|
109
109
|
html.transition.transitioning > body + body[data-transition-open="fade"] {
|
|
110
|
-
opacity:
|
|
110
|
+
opacity:1;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
/* closing transitions */
|
|
@@ -118,7 +118,7 @@ html.transition > body[data-transition-close|="tr"]:first-of-type {
|
|
|
118
118
|
|
|
119
119
|
html.transition > body[data-transition-close="fade"]:first-of-type {
|
|
120
120
|
z-index:1;
|
|
121
|
-
opacity:
|
|
121
|
+
opacity:1;
|
|
122
122
|
transition: opacity 1.5s ease-in;
|
|
123
123
|
}
|
|
124
124
|
|
|
@@ -139,6 +139,6 @@ html.transition.transitioning > body[data-transition-close="tr-bottom"]:first-of
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
html.transition.transitioning > body[data-transition-close="fade"]:first-of-type {
|
|
142
|
-
opacity:0
|
|
142
|
+
opacity:0;
|
|
143
143
|
}
|
|
144
144
|
|