@pageboard/html 0.10.12 → 0.10.15
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/form.js +0 -1
- package/lib/nouislider.js +31 -31
- package/package.json +2 -2
- package/ui/card.css +49 -49
- package/ui/form.css +3 -12
- package/ui/form.js +56 -38
- package/ui/input-file.css +6 -6
- package/ui/input-file.js +19 -15
- package/ui/input-range.js +8 -6
- package/ui/item.css +30 -30
- package/ui/layout.css +1 -1
- package/ui/loading.css +7 -7
- package/ui/menu.css +1 -1
- package/ui/menu.js +9 -7
- package/ui/query-tags.js +4 -3
- package/ui/rating.css +7 -7
- package/ui/site.css +25 -35
- package/ui/tab.css +1 -4
- package/ui/transition.css +8 -8
package/elements/form.js
CHANGED
package/lib/nouislider.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.noUiSlider = {}));
|
|
5
|
-
}(this, (function (exports) { 'use strict';
|
|
5
|
+
})(this, (function (exports) { 'use strict';
|
|
6
6
|
|
|
7
7
|
exports.PipsMode = void 0;
|
|
8
8
|
(function (PipsMode) {
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
: doc.body.scrollTop;
|
|
128
128
|
return {
|
|
129
129
|
x: x,
|
|
130
|
-
y: y
|
|
130
|
+
y: y,
|
|
131
131
|
};
|
|
132
132
|
}
|
|
133
133
|
// we provide a function to compute constants instead
|
|
@@ -140,18 +140,18 @@
|
|
|
140
140
|
? {
|
|
141
141
|
start: "pointerdown",
|
|
142
142
|
move: "pointermove",
|
|
143
|
-
end: "pointerup"
|
|
143
|
+
end: "pointerup",
|
|
144
144
|
}
|
|
145
145
|
: window.navigator.msPointerEnabled
|
|
146
146
|
? {
|
|
147
147
|
start: "MSPointerDown",
|
|
148
148
|
move: "MSPointerMove",
|
|
149
|
-
end: "MSPointerUp"
|
|
149
|
+
end: "MSPointerUp",
|
|
150
150
|
}
|
|
151
151
|
: {
|
|
152
152
|
start: "mousedown touchstart",
|
|
153
153
|
move: "mousemove touchmove",
|
|
154
|
-
end: "mouseup touchend"
|
|
154
|
+
end: "mouseup touchend",
|
|
155
155
|
};
|
|
156
156
|
}
|
|
157
157
|
// https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
var opts = Object.defineProperty({}, "passive", {
|
|
164
164
|
get: function () {
|
|
165
165
|
supportsPassive = true;
|
|
166
|
-
}
|
|
166
|
+
},
|
|
167
167
|
});
|
|
168
168
|
// @ts-ignore
|
|
169
169
|
window.addEventListener("test", null, opts);
|
|
@@ -384,18 +384,18 @@
|
|
|
384
384
|
stepBefore: {
|
|
385
385
|
startValue: this.xVal[j - 2],
|
|
386
386
|
step: this.xNumSteps[j - 2],
|
|
387
|
-
highestStep: this.xHighestCompleteStep[j - 2]
|
|
387
|
+
highestStep: this.xHighestCompleteStep[j - 2],
|
|
388
388
|
},
|
|
389
389
|
thisStep: {
|
|
390
390
|
startValue: this.xVal[j - 1],
|
|
391
391
|
step: this.xNumSteps[j - 1],
|
|
392
|
-
highestStep: this.xHighestCompleteStep[j - 1]
|
|
392
|
+
highestStep: this.xHighestCompleteStep[j - 1],
|
|
393
393
|
},
|
|
394
394
|
stepAfter: {
|
|
395
395
|
startValue: this.xVal[j],
|
|
396
396
|
step: this.xNumSteps[j],
|
|
397
|
-
highestStep: this.xHighestCompleteStep[j]
|
|
398
|
-
}
|
|
397
|
+
highestStep: this.xHighestCompleteStep[j],
|
|
398
|
+
},
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
Spectrum.prototype.countStepDecimals = function () {
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
to: function (value) {
|
|
482
482
|
return value === undefined ? "" : value.toFixed(2);
|
|
483
483
|
},
|
|
484
|
-
from: Number
|
|
484
|
+
from: Number,
|
|
485
485
|
};
|
|
486
486
|
var cssClasses = {
|
|
487
487
|
target: "target",
|
|
@@ -519,12 +519,12 @@
|
|
|
519
519
|
valueVertical: "value-vertical",
|
|
520
520
|
valueNormal: "value-normal",
|
|
521
521
|
valueLarge: "value-large",
|
|
522
|
-
valueSub: "value-sub"
|
|
522
|
+
valueSub: "value-sub",
|
|
523
523
|
};
|
|
524
524
|
// Namespaces of internal event listeners
|
|
525
525
|
var INTERNAL_EVENT_NS = {
|
|
526
526
|
tooltips: ".__tooltips",
|
|
527
|
-
aria: ".__aria"
|
|
527
|
+
aria: ".__aria",
|
|
528
528
|
};
|
|
529
529
|
//endregion
|
|
530
530
|
function testStep(parsed, entry) {
|
|
@@ -731,7 +731,7 @@
|
|
|
731
731
|
fixed: fixed,
|
|
732
732
|
snap: snap,
|
|
733
733
|
hover: hover,
|
|
734
|
-
unconstrained: unconstrained
|
|
734
|
+
unconstrained: unconstrained,
|
|
735
735
|
};
|
|
736
736
|
}
|
|
737
737
|
function testTooltips(parsed, entry) {
|
|
@@ -817,7 +817,7 @@
|
|
|
817
817
|
animate: true,
|
|
818
818
|
animationDuration: 300,
|
|
819
819
|
ariaFormat: defaultFormatter,
|
|
820
|
-
format: defaultFormatter
|
|
820
|
+
format: defaultFormatter,
|
|
821
821
|
};
|
|
822
822
|
// Tests are executed in the order they are presented here.
|
|
823
823
|
var tests = {
|
|
@@ -844,7 +844,7 @@
|
|
|
844
844
|
documentElement: { r: false, t: testDocumentElement },
|
|
845
845
|
cssPrefix: { r: true, t: testCssPrefix },
|
|
846
846
|
cssClasses: { r: true, t: testCssClasses },
|
|
847
|
-
handleAttributes: { r: false, t: testHandleAttributes }
|
|
847
|
+
handleAttributes: { r: false, t: testHandleAttributes },
|
|
848
848
|
};
|
|
849
849
|
var defaults = {
|
|
850
850
|
connect: false,
|
|
@@ -856,7 +856,7 @@
|
|
|
856
856
|
cssClasses: cssClasses,
|
|
857
857
|
keyboardPageMultiplier: 5,
|
|
858
858
|
keyboardMultiplier: 1,
|
|
859
|
-
keyboardDefaultStep: 10
|
|
859
|
+
keyboardDefaultStep: 10,
|
|
860
860
|
};
|
|
861
861
|
// AriaFormat defaults to regular format, if any.
|
|
862
862
|
if (options.format && !options.ariaFormat) {
|
|
@@ -888,7 +888,7 @@
|
|
|
888
888
|
// Pips don't move, so we can place them using left/top.
|
|
889
889
|
var styles = [
|
|
890
890
|
["left", "top"],
|
|
891
|
-
["right", "bottom"]
|
|
891
|
+
["right", "bottom"],
|
|
892
892
|
];
|
|
893
893
|
parsed.style = styles[parsed.dir][parsed.ort];
|
|
894
894
|
return parsed;
|
|
@@ -1273,7 +1273,7 @@
|
|
|
1273
1273
|
var format = pips.format || {
|
|
1274
1274
|
to: function (value) {
|
|
1275
1275
|
return String(Math.round(value));
|
|
1276
|
-
}
|
|
1276
|
+
},
|
|
1277
1277
|
};
|
|
1278
1278
|
scope_Pips = scope_Target.appendChild(addMarking(spread, filter, format));
|
|
1279
1279
|
return scope_Pips;
|
|
@@ -1509,21 +1509,21 @@
|
|
|
1509
1509
|
pageOffset: event.pageOffset,
|
|
1510
1510
|
handleNumbers: data.handleNumbers,
|
|
1511
1511
|
buttonsProperty: event.buttons,
|
|
1512
|
-
locations: scope_Locations.slice()
|
|
1512
|
+
locations: scope_Locations.slice(),
|
|
1513
1513
|
});
|
|
1514
1514
|
var endEvent = attachEvent(actions.end, scope_DocumentElement, eventEnd, {
|
|
1515
1515
|
target: event.target,
|
|
1516
1516
|
handle: handle,
|
|
1517
1517
|
listeners: listeners,
|
|
1518
1518
|
doNotReject: true,
|
|
1519
|
-
handleNumbers: data.handleNumbers
|
|
1519
|
+
handleNumbers: data.handleNumbers,
|
|
1520
1520
|
});
|
|
1521
1521
|
var outEvent = attachEvent("mouseout", scope_DocumentElement, documentLeave, {
|
|
1522
1522
|
target: event.target,
|
|
1523
1523
|
handle: handle,
|
|
1524
1524
|
listeners: listeners,
|
|
1525
1525
|
doNotReject: true,
|
|
1526
|
-
handleNumbers: data.handleNumbers
|
|
1526
|
+
handleNumbers: data.handleNumbers,
|
|
1527
1527
|
});
|
|
1528
1528
|
// We want to make sure we pushed the listeners in the listener list rather than creating
|
|
1529
1529
|
// a new one as it has already been passed to the event handlers.
|
|
@@ -1668,7 +1668,7 @@
|
|
|
1668
1668
|
// These events are only bound to the visual handle
|
|
1669
1669
|
// element, not the 'real' origin element.
|
|
1670
1670
|
attachEvent(actions.start, handle.children[0], eventStart, {
|
|
1671
|
-
handleNumbers: [index]
|
|
1671
|
+
handleNumbers: [index],
|
|
1672
1672
|
});
|
|
1673
1673
|
});
|
|
1674
1674
|
}
|
|
@@ -1679,7 +1679,7 @@
|
|
|
1679
1679
|
// Fire hover events
|
|
1680
1680
|
if (behaviour.hover) {
|
|
1681
1681
|
attachEvent(actions.move, scope_Base, eventHover, {
|
|
1682
|
-
hover: true
|
|
1682
|
+
hover: true,
|
|
1683
1683
|
});
|
|
1684
1684
|
}
|
|
1685
1685
|
// Make the range draggable.
|
|
@@ -1710,7 +1710,7 @@
|
|
|
1710
1710
|
attachEvent(actions.start, eventHolder, eventStart, {
|
|
1711
1711
|
handles: handlesToDrag,
|
|
1712
1712
|
handleNumbers: handleNumbersToDrag,
|
|
1713
|
-
connect: connect
|
|
1713
|
+
connect: connect,
|
|
1714
1714
|
});
|
|
1715
1715
|
});
|
|
1716
1716
|
});
|
|
@@ -2059,7 +2059,7 @@
|
|
|
2059
2059
|
if (options.snap) {
|
|
2060
2060
|
return [
|
|
2061
2061
|
value - nearbySteps.stepBefore.startValue || null,
|
|
2062
|
-
nearbySteps.stepAfter.startValue - value || null
|
|
2062
|
+
nearbySteps.stepAfter.startValue - value || null,
|
|
2063
2063
|
];
|
|
2064
2064
|
}
|
|
2065
2065
|
// If the next value in this step moves into the next step,
|
|
@@ -2118,7 +2118,7 @@
|
|
|
2118
2118
|
"step",
|
|
2119
2119
|
"format",
|
|
2120
2120
|
"pips",
|
|
2121
|
-
"tooltips"
|
|
2121
|
+
"tooltips",
|
|
2122
2122
|
];
|
|
2123
2123
|
// Only change options that we're actually passed to update.
|
|
2124
2124
|
updateAble.forEach(function (name) {
|
|
@@ -2203,7 +2203,7 @@
|
|
|
2203
2203
|
getOrigins: function () {
|
|
2204
2204
|
return scope_Handles;
|
|
2205
2205
|
},
|
|
2206
|
-
pips: pips // Issue #594
|
|
2206
|
+
pips: pips, // Issue #594
|
|
2207
2207
|
};
|
|
2208
2208
|
return scope_Self;
|
|
2209
2209
|
}
|
|
@@ -2228,13 +2228,13 @@
|
|
|
2228
2228
|
// A reference to the default classes, allows global changes.
|
|
2229
2229
|
// Use the cssClasses option for changes to one slider.
|
|
2230
2230
|
cssClasses: cssClasses,
|
|
2231
|
-
create: initialize
|
|
2231
|
+
create: initialize,
|
|
2232
2232
|
};
|
|
2233
2233
|
|
|
2234
2234
|
exports.create = initialize;
|
|
2235
2235
|
exports.cssClasses = cssClasses;
|
|
2236
|
-
exports[
|
|
2236
|
+
exports["default"] = nouislider;
|
|
2237
2237
|
|
|
2238
2238
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2239
2239
|
|
|
2240
|
-
}))
|
|
2240
|
+
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pageboard/html",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"formdata-polyfill": "^4.0.10",
|
|
27
|
-
"nouislider": "^15.5.
|
|
27
|
+
"nouislider": "^15.5.1",
|
|
28
28
|
"object-fit-images": "^3.2.4",
|
|
29
29
|
"postinstall-bundle": "^0.7.4"
|
|
30
30
|
},
|
package/ui/card.css
CHANGED
|
@@ -6,19 +6,19 @@
|
|
|
6
6
|
max-width:100%;
|
|
7
7
|
}
|
|
8
8
|
.ui.square > .ui > .image::after {
|
|
9
|
-
content:
|
|
9
|
+
content: "";
|
|
10
10
|
display: block;
|
|
11
11
|
height: 0;
|
|
12
12
|
padding-bottom: 100%;
|
|
13
13
|
}
|
|
14
14
|
.ui.tall > .ui > .image::after {
|
|
15
|
-
content:
|
|
15
|
+
content: "";
|
|
16
16
|
display: block;
|
|
17
17
|
height: 0;
|
|
18
18
|
padding-bottom: 150%;
|
|
19
19
|
}
|
|
20
20
|
.ui.wide > .ui > .image::after {
|
|
21
|
-
content:
|
|
21
|
+
content: "";
|
|
22
22
|
display: block;
|
|
23
23
|
height: 0;
|
|
24
24
|
padding-bottom:50%;
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
background: #FFFFFF;
|
|
35
35
|
padding: 0em;
|
|
36
36
|
border: none;
|
|
37
|
-
border-radius: 0.
|
|
37
|
+
border-radius: 0.2857rem;
|
|
38
38
|
box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5;
|
|
39
39
|
transition: box-shadow 0.1s ease, transform 0.1s ease;
|
|
40
|
-
z-index:
|
|
40
|
+
z-index: auto;
|
|
41
41
|
margin: 0.875em 0.5em;
|
|
42
42
|
float: none;
|
|
43
43
|
font-size: 1em;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
.ui.cards::after,
|
|
68
68
|
.ui.cards > .ui::after {
|
|
69
69
|
display: block;
|
|
70
|
-
content:
|
|
70
|
+
content: " ";
|
|
71
71
|
height: 0px;
|
|
72
72
|
clear: both;
|
|
73
73
|
overflow: hidden;
|
|
@@ -84,14 +84,14 @@
|
|
|
84
84
|
---------------*/
|
|
85
85
|
|
|
86
86
|
.ui.cards > .ui > :first-child {
|
|
87
|
-
border-radius: 0.
|
|
87
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em !important;
|
|
88
88
|
border-top: none !important;
|
|
89
89
|
}
|
|
90
90
|
.ui.cards > .ui > :last-child {
|
|
91
|
-
border-radius: 0em 0em 0.
|
|
91
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem !important;
|
|
92
92
|
}
|
|
93
93
|
.ui.cards > .ui > :only-child {
|
|
94
|
-
border-radius: 0.
|
|
94
|
+
border-radius: 0.2857rem !important;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
/*--------------
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
display: block;
|
|
104
104
|
flex: 0 0 auto;
|
|
105
105
|
padding: 0em;
|
|
106
|
-
background: rgba(0
|
|
106
|
+
background: rgba(0 0 0 / 5%);
|
|
107
107
|
overflow: hidden;
|
|
108
108
|
}
|
|
109
109
|
.ui.cards > .ui > .image > img {
|
|
@@ -123,17 +123,17 @@
|
|
|
123
123
|
.ui.cards > .ui > .content {
|
|
124
124
|
flex-grow: 1;
|
|
125
125
|
border: none;
|
|
126
|
-
border-top: 1px solid rgba(34
|
|
126
|
+
border-top: 1px solid rgba(34 36 38 / 10%);
|
|
127
127
|
background: none;
|
|
128
128
|
margin: 0em;
|
|
129
|
-
padding: 1em
|
|
129
|
+
padding: 1em;
|
|
130
130
|
box-shadow: none;
|
|
131
131
|
font-size: 1em;
|
|
132
132
|
border-radius: 0em;
|
|
133
133
|
}
|
|
134
134
|
.ui.cards > .ui > .content::after {
|
|
135
135
|
display: block;
|
|
136
|
-
content:
|
|
136
|
+
content: " ";
|
|
137
137
|
height: 0px;
|
|
138
138
|
clear: both;
|
|
139
139
|
overflow: hidden;
|
|
@@ -141,17 +141,17 @@
|
|
|
141
141
|
}
|
|
142
142
|
.ui.cards > .ui > .content > .header {
|
|
143
143
|
display: block;
|
|
144
|
-
margin:
|
|
145
|
-
font-family:
|
|
146
|
-
color: rgba(0
|
|
144
|
+
margin: 0;
|
|
145
|
+
font-family: Lato, "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
146
|
+
color: rgba(0 0 0 / 85%);
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
/* Default Header Size */
|
|
150
150
|
.ui.cards > .ui > .content > .header:not(.ui) {
|
|
151
151
|
font-weight: bold;
|
|
152
|
-
font-size: 1.
|
|
153
|
-
margin-top: -0.
|
|
154
|
-
line-height: 1.
|
|
152
|
+
font-size: 1.2857em;
|
|
153
|
+
margin-top: -0.2142em;
|
|
154
|
+
line-height: 1.2857em;
|
|
155
155
|
}
|
|
156
156
|
.ui.cards > .ui > .content > .meta + .description,
|
|
157
157
|
.ui.cards > .ui > .content > .header + .description {
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
.ui.cards > .ui .content img {
|
|
191
191
|
display: inline-block;
|
|
192
192
|
vertical-align: middle;
|
|
193
|
-
width:
|
|
193
|
+
width: "";
|
|
194
194
|
}
|
|
195
195
|
.ui.cards > .ui img.avatar,
|
|
196
196
|
.ui.cards > .ui .avatar img {
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
|
|
206
206
|
.ui.cards > .ui > .content > .description {
|
|
207
207
|
clear: both;
|
|
208
|
-
color: rgba(0
|
|
208
|
+
color: rgba(0 0 0 / 68%);
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
/*--------------
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
|
|
226
226
|
.ui.cards > .ui .meta {
|
|
227
227
|
font-size: 1em;
|
|
228
|
-
color:
|
|
228
|
+
color: rgb(0 0 0 / 40%);
|
|
229
229
|
}
|
|
230
230
|
.ui.cards > .ui .meta * {
|
|
231
231
|
margin-right: 0.3em;
|
|
@@ -245,16 +245,16 @@
|
|
|
245
245
|
|
|
246
246
|
/* Generic */
|
|
247
247
|
.ui.cards > .ui > .content a:not(.ui) {
|
|
248
|
-
color:
|
|
248
|
+
color: "";
|
|
249
249
|
transition: color 0.1s ease;
|
|
250
250
|
}
|
|
251
251
|
.ui.cards > .ui > .content a:not(.ui):hover {
|
|
252
|
-
color:
|
|
252
|
+
color: "";
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
/* Header */
|
|
256
256
|
.ui.cards > .ui > .content > a.header {
|
|
257
|
-
color:
|
|
257
|
+
color: rgb(0 0 0 / 85%);
|
|
258
258
|
}
|
|
259
259
|
.ui.cards > .ui > .content > a.header:hover {
|
|
260
260
|
color: #1e70bf;
|
|
@@ -262,10 +262,10 @@
|
|
|
262
262
|
|
|
263
263
|
/* Meta */
|
|
264
264
|
.ui.cards > .ui .meta > a:not(.ui) {
|
|
265
|
-
color:
|
|
265
|
+
color: rgb(0 0 0 / 40%);
|
|
266
266
|
}
|
|
267
267
|
.ui.cards > .ui .meta > a:not(.ui):hover {
|
|
268
|
-
color:
|
|
268
|
+
color: rgb(0 0 0 / 87%);
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
/*--------------
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
---------------*/
|
|
284
284
|
|
|
285
285
|
.ui.cards > .ui .dimmer {
|
|
286
|
-
background-color:
|
|
286
|
+
background-color: "";
|
|
287
287
|
z-index: 10;
|
|
288
288
|
}
|
|
289
289
|
|
|
@@ -298,11 +298,11 @@
|
|
|
298
298
|
/* Icon */
|
|
299
299
|
.ui.cards > .ui > .content .star.icon {
|
|
300
300
|
cursor: pointer;
|
|
301
|
-
opacity:
|
|
301
|
+
opacity: 75%;
|
|
302
302
|
transition: color 0.1s ease;
|
|
303
303
|
}
|
|
304
304
|
.ui.cards > .ui > .content .star.icon:hover {
|
|
305
|
-
opacity:
|
|
305
|
+
opacity: 100%;
|
|
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:
|
|
318
|
+
opacity: 75%;
|
|
319
319
|
transition: color 0.1s ease;
|
|
320
320
|
}
|
|
321
321
|
.ui.cards > .ui > .content .like.icon:hover {
|
|
322
|
-
opacity:
|
|
322
|
+
opacity: 100%;
|
|
323
323
|
color: #FF2733;
|
|
324
324
|
}
|
|
325
325
|
.ui.cards > .ui > .content .active.like.icon {
|
|
@@ -334,20 +334,20 @@
|
|
|
334
334
|
max-width: 100%;
|
|
335
335
|
min-height: 0em !important;
|
|
336
336
|
flex-grow: 0;
|
|
337
|
-
border-top: 1px solid
|
|
337
|
+
border-top: 1px solid rgb(0 0 0 / 5%) !important;
|
|
338
338
|
position: static;
|
|
339
339
|
background: none;
|
|
340
340
|
width: auto;
|
|
341
|
-
margin: 0em
|
|
341
|
+
margin: 0em;
|
|
342
342
|
padding: 0.75em 1em;
|
|
343
343
|
top: 0em;
|
|
344
344
|
left: 0em;
|
|
345
|
-
color:
|
|
345
|
+
color: rgb(0 0 0 / 40%);
|
|
346
346
|
box-shadow: none;
|
|
347
347
|
transition: color 0.1s ease;
|
|
348
348
|
}
|
|
349
349
|
.ui.cards > .ui > .extra a:not(.ui) {
|
|
350
|
-
color:
|
|
350
|
+
color: rgb(0 0 0 / 40%);
|
|
351
351
|
}
|
|
352
352
|
.ui.cards > .ui > .extra a:not(.ui):hover {
|
|
353
353
|
color: #1e70bf;
|
|
@@ -364,11 +364,11 @@
|
|
|
364
364
|
--------------------*/
|
|
365
365
|
|
|
366
366
|
.ui.raised.cards > .ui {
|
|
367
|
-
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px
|
|
367
|
+
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgb(34 36 38 / 12%), 0px 2px 10px 0px rgb(34 36 38 / 15%);
|
|
368
368
|
}
|
|
369
369
|
.ui.raised.cards > a.ui:hover,
|
|
370
370
|
.ui.link.cards > .raised.ui:hover {
|
|
371
|
-
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px
|
|
371
|
+
box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgb(34 36 38 / 15%), 0px 2px 10px 0px rgb(34 36 38 / 25%);
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
/*-------------------
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
margin-right: -1em;
|
|
435
435
|
}
|
|
436
436
|
.ui.three.cards > .ui {
|
|
437
|
-
width: calc(33.
|
|
437
|
+
width: calc(33.3333% - 2em);
|
|
438
438
|
margin-left: 1em;
|
|
439
439
|
margin-right: 1em;
|
|
440
440
|
}
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
margin-right: -0.75em;
|
|
462
462
|
}
|
|
463
463
|
.ui.six.cards > .ui {
|
|
464
|
-
width: calc(16.
|
|
464
|
+
width: calc(16.6667% - 1.5em);
|
|
465
465
|
margin-left: 0.75em;
|
|
466
466
|
margin-right: 0.75em;
|
|
467
467
|
}
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
margin-right: -0.5em;
|
|
471
471
|
}
|
|
472
472
|
.ui.seven.cards > .ui {
|
|
473
|
-
width: calc(14.
|
|
473
|
+
width: calc(14.2857% - 1em);
|
|
474
474
|
margin-left: 0.5em;
|
|
475
475
|
margin-right: 0.5em;
|
|
476
476
|
}
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
margin-right: -0.5em;
|
|
490
490
|
}
|
|
491
491
|
.ui.nine.cards > .ui {
|
|
492
|
-
width: calc(11.
|
|
492
|
+
width: calc(11.1111% - 1em);
|
|
493
493
|
margin-left: 0.5em;
|
|
494
494
|
margin-right: 0.5em;
|
|
495
495
|
font-size: 10px;
|
|
@@ -561,7 +561,7 @@
|
|
|
561
561
|
margin-right: -1em;
|
|
562
562
|
}
|
|
563
563
|
.ui.seven.doubling.cards > .ui {
|
|
564
|
-
width: calc(33.
|
|
564
|
+
width: calc(33.3333% - 2em);
|
|
565
565
|
margin-left: 1em;
|
|
566
566
|
margin-right: 1em;
|
|
567
567
|
}
|
|
@@ -570,7 +570,7 @@
|
|
|
570
570
|
margin-right: -1em;
|
|
571
571
|
}
|
|
572
572
|
.ui.eight.doubling.cards > .ui {
|
|
573
|
-
width: calc(33.
|
|
573
|
+
width: calc(33.3333% - 2em);
|
|
574
574
|
margin-left: 1em;
|
|
575
575
|
margin-right: 1em;
|
|
576
576
|
}
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
margin-right: -1em;
|
|
580
580
|
}
|
|
581
581
|
.ui.nine.doubling.cards > .ui {
|
|
582
|
-
width: calc(33.
|
|
582
|
+
width: calc(33.3333% - 2em);
|
|
583
583
|
margin-left: 1em;
|
|
584
584
|
margin-right: 1em;
|
|
585
585
|
}
|
|
@@ -588,7 +588,7 @@
|
|
|
588
588
|
margin-right: -1em;
|
|
589
589
|
}
|
|
590
590
|
.ui.ten.doubling.cards > .ui {
|
|
591
|
-
width: calc(33.
|
|
591
|
+
width: calc(33.3333% - 2em);
|
|
592
592
|
margin-left: 1em;
|
|
593
593
|
margin-right: 1em;
|
|
594
594
|
}
|
|
@@ -628,7 +628,7 @@
|
|
|
628
628
|
margin-right: -1em;
|
|
629
629
|
}
|
|
630
630
|
.ui.five.doubling.cards > .ui {
|
|
631
|
-
width: calc(33.
|
|
631
|
+
width: calc(33.3333% - 2em);
|
|
632
632
|
margin-left: 1em;
|
|
633
633
|
margin-right: 1em;
|
|
634
634
|
}
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
margin-right: -1em;
|
|
638
638
|
}
|
|
639
639
|
.ui.six.doubling.cards > .ui {
|
|
640
|
-
width: calc(33.
|
|
640
|
+
width: calc(33.3333% - 2em);
|
|
641
641
|
margin-left: 1em;
|
|
642
642
|
margin-right: 1em;
|
|
643
643
|
}
|
|
@@ -684,7 +684,7 @@
|
|
|
684
684
|
.ui.stackable.cards > .ui {
|
|
685
685
|
display: block !important;
|
|
686
686
|
height: auto !important;
|
|
687
|
-
margin: 1em
|
|
687
|
+
margin: 1em;
|
|
688
688
|
padding: 0 !important;
|
|
689
689
|
width: calc(100% - 2em) !important;
|
|
690
690
|
}
|
package/ui/form.css
CHANGED
|
@@ -3,20 +3,11 @@ fieldset.plain {
|
|
|
3
3
|
padding-right:0;
|
|
4
4
|
padding-left:0;
|
|
5
5
|
}
|
|
6
|
-
|
|
7
|
-
input::-webkit-selection {
|
|
8
|
-
background-color: rgba(100, 100, 100, 0.4);
|
|
9
|
-
color: rgba(0, 0, 0, 0.87);
|
|
10
|
-
}
|
|
11
|
-
textarea::-moz-selection,
|
|
12
|
-
input::-moz-selection {
|
|
13
|
-
background-color: rgba(100, 100, 100, 0.4);
|
|
14
|
-
color: rgba(0, 0, 0, 0.87);
|
|
15
|
-
}
|
|
6
|
+
|
|
16
7
|
textarea::selection,
|
|
17
8
|
input::selection {
|
|
18
|
-
background-color:
|
|
19
|
-
color:
|
|
9
|
+
background-color: rgb(100 100 100 / 40%);
|
|
10
|
+
color: rgb(0 0 0 / 87%);
|
|
20
11
|
}
|
|
21
12
|
|
|
22
13
|
label[for] {
|