x4js 2.0.12 → 2.0.13
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 +15 -15
- package/lib/README.txt +15 -15
- package/lib/cjs/x4.css +1 -1
- package/lib/cjs/x4.js +1 -1
- package/lib/esm/x4.css +1 -1
- package/lib/esm/x4.mjs +1 -1
- package/lib/src/components/base.scss +25 -26
- package/lib/src/components/boxes/boxes.module.scss +37 -37
- package/lib/src/components/boxes/boxes.ts +129 -125
- package/lib/src/components/breadcrumb/breadcrumb.scss +28 -0
- package/lib/src/components/breadcrumb/breadcrumb.ts +84 -0
- package/lib/src/components/breadcrumb/chevron-right.svg +1 -0
- package/lib/src/components/btngroup/btngroup.module.scss +28 -28
- package/lib/src/components/btngroup/btngroup.ts +119 -101
- package/lib/src/components/button/button.module.scss +154 -153
- package/lib/src/components/button/button.ts +117 -117
- package/lib/src/components/calendar/calendar.module.scss +162 -162
- package/lib/src/components/calendar/calendar.ts +326 -325
- package/lib/src/components/checkbox/check.svg +3 -3
- package/lib/src/components/checkbox/checkbox.module.scss +141 -141
- package/lib/src/components/checkbox/checkbox.ts +125 -124
- package/lib/src/components/colorinput/colorinput.module.scss +64 -64
- package/lib/src/components/colorinput/colorinput.ts +90 -87
- package/lib/src/components/colorpicker/colorpicker.module.scss +132 -132
- package/lib/src/components/colorpicker/colorpicker.ts +481 -476
- package/lib/src/components/combobox/combobox.module.scss +123 -120
- package/lib/src/components/combobox/combobox.ts +192 -190
- package/lib/src/components/combobox/updown.svg +3 -3
- package/lib/src/components/components.ts +34 -0
- package/lib/src/components/dialog/dialog.module.scss +71 -71
- package/lib/src/components/dialog/dialog.ts +94 -92
- package/lib/src/components/form/form.module.scss +34 -34
- package/lib/src/components/form/form.ts +41 -36
- package/lib/src/components/grid/datastore.ts +1298 -0
- package/lib/src/components/grid/gridview.ts +1108 -0
- package/lib/src/components/grid/memdb.ts +325 -0
- package/lib/src/components/header/header.module.scss +39 -39
- package/lib/src/components/header/header.ts +129 -123
- package/lib/src/components/icon/icon.module.scss +29 -29
- package/lib/src/components/icon/icon.ts +136 -134
- package/lib/src/components/image/image.module.scss +20 -20
- package/lib/src/components/image/image.ts +68 -66
- package/lib/src/components/input/input.module.scss +69 -69
- package/lib/src/components/input/input.ts +275 -274
- package/lib/src/components/label/label.module.scss +58 -52
- package/lib/src/components/label/label.ts +64 -55
- package/lib/src/components/link/link.ts +78 -0
- package/lib/src/components/listbox/listbox.module.scss +103 -103
- package/lib/src/components/listbox/listbox.ts +431 -427
- package/lib/src/components/menu/menu.module.scss +107 -107
- package/lib/src/components/menu/menu.ts +171 -168
- package/lib/src/components/messages/messages.module.scss +48 -47
- package/lib/src/components/messages/messages.ts +68 -63
- package/lib/src/components/normalize.scss +386 -386
- package/lib/src/components/notification/notification.module.scss +81 -81
- package/lib/src/components/notification/notification.ts +109 -108
- package/lib/src/components/panel/panel.module.scss +47 -47
- package/lib/src/components/panel/panel.ts +57 -56
- package/lib/src/components/popup/popup.module.scss +43 -43
- package/lib/src/components/popup/popup.ts +396 -395
- package/lib/src/components/progress/progress.module.scss +56 -56
- package/lib/src/components/progress/progress.ts +43 -42
- package/lib/src/components/rating/rating.module.scss +22 -22
- package/lib/src/components/rating/rating.ts +131 -125
- package/lib/src/components/shared.scss +90 -76
- package/lib/src/components/sizers/sizer.module.scss +89 -89
- package/lib/src/components/sizers/sizer.ts +123 -119
- package/lib/src/components/slider/slider.module.scss +70 -70
- package/lib/src/components/slider/slider.ts +147 -142
- package/lib/src/components/switch/switch.module.scss +126 -126
- package/lib/src/components/switch/switch.ts +61 -55
- package/lib/src/components/tabs/tabs.module.scss +46 -46
- package/lib/src/components/tabs/tabs.ts +168 -157
- package/lib/src/components/textarea/textarea.module.scss +59 -59
- package/lib/src/components/textarea/textarea.ts +60 -54
- package/lib/src/components/textedit/textedit.module.scss +113 -113
- package/lib/src/components/textedit/textedit.ts +83 -82
- package/lib/src/components/themes.scss +81 -77
- package/lib/src/components/tooltips/tooltips.scss +50 -50
- package/lib/src/components/tooltips/tooltips.ts +103 -102
- package/lib/src/components/treeview/treeview.module.scss +115 -115
- package/lib/src/components/treeview/treeview.ts +410 -403
- package/lib/src/components/viewport/viewport.module.scss +24 -24
- package/lib/src/components/viewport/viewport.ts +41 -38
- package/lib/src/core/component.ts +1002 -979
- package/lib/src/core/core_application.ts +44 -0
- package/lib/src/core/core_colors.ts +249 -249
- package/lib/src/core/core_dom.ts +471 -471
- package/lib/src/core/core_dragdrop.ts +200 -200
- package/lib/src/core/core_element.ts +97 -97
- package/lib/src/core/core_events.ts +149 -149
- package/lib/src/core/core_i18n.ts +377 -377
- package/lib/src/core/core_router.ts +221 -221
- package/lib/src/core/core_styles.ts +214 -214
- package/lib/src/core/core_svg.ts +550 -550
- package/lib/src/core/core_tools.ts +688 -673
- package/lib/src/demo/assets/radio.svg +3 -3
- package/lib/src/demo/index.html +11 -11
- package/lib/src/demo/main.scss +21 -21
- package/lib/src/demo/main.tsx +323 -323
- package/lib/src/types/scss.d.ts +4 -4
- package/lib/src/types/x4react.d.ts +8 -8
- package/lib/src/x4.scss +18 -18
- package/lib/src/x4.ts +31 -62
- package/lib/styles/x4.css +1 -1
- package/lib/types/x4js.d.ts +100 -49
- package/package.json +2 -3
- package/src/x4.ts +31 -62
|
@@ -1,88 +1,91 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ___ ___ __
|
|
3
|
-
* \ \/ / / _
|
|
4
|
-
* \ / /_| |_
|
|
5
|
-
* / \____ _|
|
|
6
|
-
* /__/\__\ |_|
|
|
7
|
-
*
|
|
8
|
-
* @file colorinput.ts
|
|
9
|
-
* @author Etienne Cochard
|
|
10
|
-
*
|
|
11
|
-
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
-
*
|
|
13
|
-
* Use of this source code is governed by an MIT-style license
|
|
14
|
-
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
-
**/
|
|
16
|
-
|
|
17
|
-
import { Component } from '../../core/component';
|
|
18
|
-
import { isFeatureAvailable } from '../../core/core_tools.js';
|
|
19
|
-
import { Color } from '../../core/core_colors';
|
|
20
|
-
|
|
21
|
-
import { BoxProps, HBox } from '../boxes/boxes';
|
|
22
|
-
import { Input } from '../input/input.js';
|
|
23
|
-
import { Button } from '../button/button.js';
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import "./colorinput.module.scss"
|
|
27
|
-
import icon from "./crosshairs-simple-sharp-light.svg"
|
|
28
|
-
|
|
29
|
-
//TODO: add swatches
|
|
30
|
-
//TODO: better keyboard handling (selection after cursor)
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
*/
|
|
35
|
-
|
|
36
|
-
interface ColorInputProps extends BoxProps {
|
|
37
|
-
color: Color | string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
*/
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
color =
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file colorinput.ts
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
import { Component } from '../../core/component';
|
|
18
|
+
import { isFeatureAvailable, class_ns } from '../../core/core_tools.js';
|
|
19
|
+
import { Color } from '../../core/core_colors';
|
|
20
|
+
|
|
21
|
+
import { BoxProps, HBox } from '../boxes/boxes';
|
|
22
|
+
import { Input } from '../input/input.js';
|
|
23
|
+
import { Button } from '../button/button.js';
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
import "./colorinput.module.scss"
|
|
27
|
+
import icon from "./crosshairs-simple-sharp-light.svg"
|
|
28
|
+
|
|
29
|
+
//TODO: add swatches
|
|
30
|
+
//TODO: better keyboard handling (selection after cursor)
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
interface ColorInputProps extends BoxProps {
|
|
37
|
+
color: Color | string;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
@class_ns( "x4" )
|
|
45
|
+
export class ColorInput extends HBox<ColorInputProps> {
|
|
46
|
+
static "$cls-ns" = "x4";
|
|
47
|
+
|
|
48
|
+
constructor( props: ColorInputProps ) {
|
|
49
|
+
super( props );
|
|
50
|
+
|
|
51
|
+
let swatch: Component;
|
|
52
|
+
let edit: Input;
|
|
53
|
+
|
|
54
|
+
this.setContent( [
|
|
55
|
+
swatch = new Component( { cls: "swatch" } ),
|
|
56
|
+
edit = new Input( { type: "text", value: "", spellcheck: false } ),
|
|
57
|
+
|
|
58
|
+
isFeatureAvailable("eyedropper") ? new Button( { icon: icon, click: ( ) => {
|
|
59
|
+
const eyeDropper = new (window as any).EyeDropper();
|
|
60
|
+
eyeDropper.open( ).then( ( result: any ) => {
|
|
61
|
+
color = new Color( result.sRGBHex );
|
|
62
|
+
updateColor( color );
|
|
63
|
+
});
|
|
64
|
+
} } ) : null
|
|
65
|
+
])
|
|
66
|
+
|
|
67
|
+
edit.addDOMEvent( "input", ( ) => {
|
|
68
|
+
const txt = edit.getValue( );
|
|
69
|
+
const clr = new Color( txt );
|
|
70
|
+
if( !clr.isInvalid() ) {
|
|
71
|
+
color = clr;
|
|
72
|
+
updateColor( color );
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
const updateColor = ( clr: Color ) => {
|
|
77
|
+
swatch.setStyleValue( "backgroundColor", clr.toRgbString(false) );
|
|
78
|
+
edit.setValue( clr.toRgbString(false) );
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
let color: Color;
|
|
82
|
+
if( props.color instanceof Color ) {
|
|
83
|
+
color = props.color;
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
color = new Color( props.color );
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
updateColor( color );
|
|
90
|
+
}
|
|
88
91
|
}
|
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ___ ___ __
|
|
3
|
-
* \ \/ / / _
|
|
4
|
-
* \ / /_| |_
|
|
5
|
-
* / \____ _|
|
|
6
|
-
* /__/\__\ |_|
|
|
7
|
-
*
|
|
8
|
-
* @file colorpicker.module.scss
|
|
9
|
-
* @author Etienne Cochard
|
|
10
|
-
*
|
|
11
|
-
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
-
*
|
|
13
|
-
* Use of this source code is governed by an MIT-style license
|
|
14
|
-
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
-
**/
|
|
16
|
-
|
|
17
|
-
@use "../shared.scss";
|
|
18
|
-
|
|
19
|
-
@mixin overlay-shadow {
|
|
20
|
-
width: 12px;
|
|
21
|
-
height: 12px;
|
|
22
|
-
border: 2px solid white;
|
|
23
|
-
border-radius: 8px;
|
|
24
|
-
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.x4colorpicker {
|
|
28
|
-
width: 240px;
|
|
29
|
-
gap: 4px;
|
|
30
|
-
|
|
31
|
-
touch-action: none;
|
|
32
|
-
outline: none;
|
|
33
|
-
|
|
34
|
-
margin: 8px;
|
|
35
|
-
&:focus {
|
|
36
|
-
//@include outline-focus;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.overlay {
|
|
40
|
-
position: absolute;
|
|
41
|
-
left: 0;
|
|
42
|
-
top: 0;
|
|
43
|
-
right: 0;
|
|
44
|
-
bottom: 0;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.x4saturation {
|
|
48
|
-
width: 100%;
|
|
49
|
-
|
|
50
|
-
height: 140px;
|
|
51
|
-
position: relative;
|
|
52
|
-
|
|
53
|
-
.thumb {
|
|
54
|
-
@include overlay-shadow;
|
|
55
|
-
position: absolute;
|
|
56
|
-
transform: translate(-50%,50%);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.body {
|
|
61
|
-
gap: 4px;
|
|
62
|
-
|
|
63
|
-
&> .x4vbox {
|
|
64
|
-
gap: 4px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.x4hueslider {
|
|
68
|
-
position: relative;
|
|
69
|
-
height: 16px;
|
|
70
|
-
overflow: hidden;
|
|
71
|
-
|
|
72
|
-
background-image: linear-gradient(to right, rgb(255, 0, 0), rgb(255, 255, 0), rgb(0, 255, 0), rgb(0, 255, 212), rgb(0, 0, 255), rgb(255, 0, 255), rgb(255, 0, 0));
|
|
73
|
-
border: 1px solid var( --color-gray-3 );
|
|
74
|
-
|
|
75
|
-
.thumb {
|
|
76
|
-
@include overlay-shadow;
|
|
77
|
-
position: absolute;
|
|
78
|
-
transform: translate(-50%,-50%);
|
|
79
|
-
top: 50%;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.x4alphaslider {
|
|
85
|
-
position: relative;
|
|
86
|
-
height: 16px;
|
|
87
|
-
overflow: hidden;
|
|
88
|
-
|
|
89
|
-
.checkers {
|
|
90
|
-
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
|
|
91
|
-
linear-gradient(-45deg, #ccc 25%, transparent 25%),
|
|
92
|
-
linear-gradient(45deg, transparent 75%, #ccc 75%),
|
|
93
|
-
linear-gradient(-45deg, transparent 75%, #ccc 75%);
|
|
94
|
-
background-size: 8px 8px;
|
|
95
|
-
background-position: 0 0, 0 20px, 20px -20px, -20px 0;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.color {
|
|
99
|
-
//border-radius: 8px;
|
|
100
|
-
background-image: linear-gradient(90deg, transparent, rgb(0, 178, 255));
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.thumb {
|
|
104
|
-
@include overlay-shadow;
|
|
105
|
-
|
|
106
|
-
position: absolute;
|
|
107
|
-
transform: translate(-50%,-50%);
|
|
108
|
-
top: 50%;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.swatch {
|
|
114
|
-
width: 36px;
|
|
115
|
-
height: 36px;
|
|
116
|
-
|
|
117
|
-
.checkers {
|
|
118
|
-
border-radius: 8px;
|
|
119
|
-
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
|
|
120
|
-
linear-gradient(-45deg, #ccc 25%, transparent 25%),
|
|
121
|
-
linear-gradient(45deg, transparent 75%, #ccc 75%),
|
|
122
|
-
linear-gradient(-45deg, transparent 75%, #ccc 75%);
|
|
123
|
-
background-size: 8px 8px;
|
|
124
|
-
background-position: 0 0, 0 20px, 20px -20px, -20px 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.color {
|
|
128
|
-
border-radius: 8px;
|
|
129
|
-
background-image: linear-gradient(90deg, transparent, rgb(0, 178, 255));
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / \____ _|
|
|
6
|
+
* /__/\__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file colorpicker.module.scss
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
*
|
|
11
|
+
* @copyright (c) 2024 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* Use of this source code is governed by an MIT-style license
|
|
14
|
+
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
|
15
|
+
**/
|
|
16
|
+
|
|
17
|
+
@use "../shared.scss";
|
|
18
|
+
|
|
19
|
+
@mixin overlay-shadow {
|
|
20
|
+
width: 12px;
|
|
21
|
+
height: 12px;
|
|
22
|
+
border: 2px solid white;
|
|
23
|
+
border-radius: 8px;
|
|
24
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.x4colorpicker {
|
|
28
|
+
width: 240px;
|
|
29
|
+
gap: 4px;
|
|
30
|
+
|
|
31
|
+
touch-action: none;
|
|
32
|
+
outline: none;
|
|
33
|
+
|
|
34
|
+
margin: 8px;
|
|
35
|
+
&:focus {
|
|
36
|
+
//@include outline-focus;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.overlay {
|
|
40
|
+
position: absolute;
|
|
41
|
+
left: 0;
|
|
42
|
+
top: 0;
|
|
43
|
+
right: 0;
|
|
44
|
+
bottom: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.x4saturation {
|
|
48
|
+
width: 100%;
|
|
49
|
+
|
|
50
|
+
height: 140px;
|
|
51
|
+
position: relative;
|
|
52
|
+
|
|
53
|
+
.thumb {
|
|
54
|
+
@include overlay-shadow;
|
|
55
|
+
position: absolute;
|
|
56
|
+
transform: translate(-50%,50%);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.body {
|
|
61
|
+
gap: 4px;
|
|
62
|
+
|
|
63
|
+
&> .x4vbox {
|
|
64
|
+
gap: 4px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.x4hueslider {
|
|
68
|
+
position: relative;
|
|
69
|
+
height: 16px;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
|
|
72
|
+
background-image: linear-gradient(to right, rgb(255, 0, 0), rgb(255, 255, 0), rgb(0, 255, 0), rgb(0, 255, 212), rgb(0, 0, 255), rgb(255, 0, 255), rgb(255, 0, 0));
|
|
73
|
+
border: 1px solid var( --color-gray-3 );
|
|
74
|
+
|
|
75
|
+
.thumb {
|
|
76
|
+
@include overlay-shadow;
|
|
77
|
+
position: absolute;
|
|
78
|
+
transform: translate(-50%,-50%);
|
|
79
|
+
top: 50%;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.x4alphaslider {
|
|
85
|
+
position: relative;
|
|
86
|
+
height: 16px;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
|
|
89
|
+
.checkers {
|
|
90
|
+
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
|
|
91
|
+
linear-gradient(-45deg, #ccc 25%, transparent 25%),
|
|
92
|
+
linear-gradient(45deg, transparent 75%, #ccc 75%),
|
|
93
|
+
linear-gradient(-45deg, transparent 75%, #ccc 75%);
|
|
94
|
+
background-size: 8px 8px;
|
|
95
|
+
background-position: 0 0, 0 20px, 20px -20px, -20px 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.color {
|
|
99
|
+
//border-radius: 8px;
|
|
100
|
+
background-image: linear-gradient(90deg, transparent, rgb(0, 178, 255));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.thumb {
|
|
104
|
+
@include overlay-shadow;
|
|
105
|
+
|
|
106
|
+
position: absolute;
|
|
107
|
+
transform: translate(-50%,-50%);
|
|
108
|
+
top: 50%;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.swatch {
|
|
114
|
+
width: 36px;
|
|
115
|
+
height: 36px;
|
|
116
|
+
|
|
117
|
+
.checkers {
|
|
118
|
+
border-radius: 8px;
|
|
119
|
+
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%),
|
|
120
|
+
linear-gradient(-45deg, #ccc 25%, transparent 25%),
|
|
121
|
+
linear-gradient(45deg, transparent 75%, #ccc 75%),
|
|
122
|
+
linear-gradient(-45deg, transparent 75%, #ccc 75%);
|
|
123
|
+
background-size: 8px 8px;
|
|
124
|
+
background-position: 0 0, 0 20px, 20px -20px, -20px 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.color {
|
|
128
|
+
border-radius: 8px;
|
|
129
|
+
background-image: linear-gradient(90deg, transparent, rgb(0, 178, 255));
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
133
|
}
|