-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
97 lines (82 loc) · 1.94 KB
/
style.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
.ez-tag-container .extra-network-cards {
padding: 1em;
user-select: none;
}
.ez-tag-container .card {
background-image: linear-gradient(90deg, var(--button-secondary-background-fill), var(--button-primary-background-fill));
background-size: 101%;
height: 3em;
width: calc(10% - 1.5em);
min-width: 6em;
margin: 0.75em;
}
.ez-tag-container .card .actions {
background: none;
box-shadow: none;
position: inherit;
width: 100%;
height: 100%;
}
.ez-tag-container .card .actions .name {
display: inline-flex;
position: relative;
align-items: center;
width: 90%;
height: 100%;
left: 1.2em;
font-size: 1em;
overflow: hidden;
white-space: nowrap;
}
.ez-tag-container .card .button-row {
display: none
}
.ez-tag-container .card .actions .additional {
display: none;
}
.ez-tag-container .card .actions .description {
display: none;
}
#ez-editor table {
width: 80vw;
margin: auto;
table-layout: fixed;
}
#ez-editor table :is(th, td) {
border: 2px solid var(--table-border-color) !important;
text-overflow: clip;
white-space: nowrap;
overflow: hidden;
}
#ez-editor thead th {
text-align: center;
padding: 1em;
}
#ez-editor thead tr {
background-color: var(--block-background-fill);
}
#ez-editor tbody td {
padding: 1em;
}
#ez-editor tbody tr:nth-child(odd) {
background-color: var(--table-odd-background-fill);
}
#ez-editor tbody tr:nth-child(even) {
background-color: var(--table-even-background-fill);
}
.ez-tag-container div.style-bracket {
background: var(--input-background-fill);
border-radius: 0.5em;
padding: 0.25em;
margin: 0.5em 0em;
}
.ez-tag-container div.style-bracket>span {
display: block;
width: calc(100% - 1em);
background: var(--input-border-color);
border-radius: 0.2rem;
padding: 0em 0.5em;
margin: 0.5em;
font-size: smaller;
color: var(--block-title-text-color);
}