-
Notifications
You must be signed in to change notification settings - Fork 5
/
card-type.css
64 lines (62 loc) · 1.56 KB
/
card-type.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
/** Card Types
*
* Display an icon for multiline, list an set.
*
* There are 2 rules to select on hover, edit and on normal
*
* NOTE: This competes with the rem type icon for a space to place the ::before.
*
*/
.rem-container--multiline-card-type /* hover */
.rem-text
.EditorContainer
> div
> span:first-child::before,
.rem-container--multiline-card-type /* normal */
.rem-text
.EditorContainer
> span:first-child::before {
/* content: url("assets/multiline.svg"); */
content: " ☰ ";
color: plum;
}
.rem-container--list-card-type /* hover */
.rem-text
.EditorContainer
> div
> span:first-child::before,
.rem-container--list-card-type /* normal */
.rem-text
.EditorContainer
> span:first-child::before {
/* content: "[...]"; */
/* content: "[ … ] "; */
/* contest: url("assets/list.svg"); */
content: "[⋯] ";
color: mediumseagreen;
}
.rem-container--set-card-type /* hover */
.rem-text
.EditorContainer
> div
> span:first-child::before,
.rem-container--set-card-type /* normal */
.rem-text
.EditorContainer
> span:first-child::before {
/* content: "[...]"; */
/* content: "[ … ] "; */
/* contest: url("assets/set.svg"); */
content: "{⋯} ";
color: coral;
}
/* Default Text Type */
/*
.rem-container--text-card-type .rem-text .concept_rem_type::before,
.rem-container--text-card-type .rem-text .descriptor_rem_type::before,
.rem-container--text-card-type .rem-text .slot_rem_type::before,
.rem-container--text-card-type .rem-text .question_rem_type::before {
content: "T";
color: green;
}
*/