-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcanvas-stuff.css
129 lines (115 loc) · 2.95 KB
/
canvas-stuff.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* @settings
name: Canvas Card Styling
id: canvas-card-styling
settings:
-
title: dotted width
description: The width of the dotted border
id: dotted-width
type: variable-number
default: 1
format: px
-
title: dashed width
description: The width of the dashed border
id: dashed-width
type: variable-number
default: 1
format: px
-
title: solid width
description: The width of the solid border
id: solid-width
type: variable-number
default: 1
format: px
-
title: double width
description: The width of the double border
id: double-width
type: variable-number
default: 1
format: px
-
title: groove width
description: The width of the groove border
id: groove-width
type: variable-number
default: 1
format: px
-
title: ridge width
description: The width of the ridge border
id: ridge-width
type: variable-number
default: 1
format: px
-
title: inset width
description: The width of the inset border
id: inset-width
type: variable-number
default: 1
format: px
-
title: outset width
description: The width of the outset border
id: outset-width
type: variable-number
default: 1
format: px
-
title: none width
description: The width of the none border
id: none-width
type: variable-number
default: 1
format: px
-
title: hidden width
description: The width of the hidden border
id: hidden-width
type: variable-number
default: 1
format: px
*/
div.canvas-node-container:has(div.canvas-dotted) {
border-style: dotted;
border-width: var(--dotted-width);
}
div.canvas-node-container:has(div.canvas-dashed) {
border-style: dashed;
border-width: var(--dashed-width);
}
div.canvas-node-container:has(div.canvas-solid) {
border-style: solid;
border-width: var(--solid-width);
}
div.canvas-node-container:has(div.canvas-double) {
border-style: double;
border-width: var(--double-width);
}
div.canvas-node-container:has(div.canvas-groove) {
border-style: groove;
border-width: var(--groove-width);
}
div.canvas-node-container:has(div.canvas-ridge) {
border-style: ridge;
border-width: var(--ridge-width);
}
div.canvas-node-container:has(div.canvas-inset) {
border-style: inset;
border-width: var(--inset-width);
}
div.canvas-node-container:has(div.canvas-outset) {
border-style: outset;
border-width: var(--outset-width);
}
div.canvas-node-container:has(div.canvas-none) {
border-style: none;
border-width: var(--none-width);
}
div.canvas-node-container:has(div.canvas-hidden) {
border-style: hidden;
border-width: var(--hidden-width);
}