generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.css
65 lines (53 loc) · 1.16 KB
/
styles.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
/* Disabling the color as it makes the text non-readable in dark theme */
/* .mte > button {
background-color: lightgray;
} */
.button-container.mte {
margin: 10pt 0;
}
.button-container.mte > input {
max-width: 100pt;
margin: 5pt 10pt;
}
.grid.mte {
display: grid;
width: fit-content;
margin-top: 5px;
border-right: 1px solid;
border-top: 1px solid;
}
.grid.mte > .cell-container.mte > .cell.mte {
padding: 8px 4px;
}
.grid.mte > .cell-container.mte {
display: flex;
border-left: 1px solid;
border-bottom: 1px solid;
}
/* Disabling the color as it makes the text non-readable in dark theme */
/*
.grid.mte > .cell-container.mte.header {
background-color: lightgray;
} */
.grid.mte > .cell-container.mte > .cell.mte {
min-width: 100pt;
max-width: 250pt;
padding-left: 10pt;
padding-right: 20pt;
width: 100%;
}
.relative.mte {
position: relative;
}
.mte > .absolute {
cursor: pointer;
position: absolute;
right: 0;
top: 25%;
}
.mte > .display-block {
display: block;
}
.mte > .display-none {
display: none;
}