|
1
|
/* Styles specific to the forum family of pages */ |
|
2
|
|
|
3
|
.ForumPostEditor { |
|
4
|
display: flex; |
|
5
|
flex-direction: column; |
|
6
|
gap: 1em; |
|
7
|
padding: 0.5em; |
|
8
|
} |
|
9
|
|
|
10
|
.ForumPostEditor > .tab-bar{ |
|
11
|
} |
|
12
|
|
|
13
|
.ForumPostEditor > .tab-container { |
|
14
|
} |
|
15
|
|
|
16
|
.ForumPostEditor > .tab-container > .tabs { |
|
17
|
min-height: 16em; |
|
18
|
} |
|
19
|
|
|
20
|
.ForumPostEditor > .tab-container > .tabs > .tab-panel.debug { |
|
21
|
display: flex; |
|
22
|
flex-direction: column; |
|
23
|
gap: 0.75em; |
|
24
|
} |
|
25
|
|
|
26
|
.ForumPostEditor > .tab-container > .tabs > .tab-panel.debug label, |
|
27
|
.ForumPostEditor > .tab-container > .tabs > .tab-panel.debug input[type=checkbox]{ |
|
28
|
cursor: pointer; |
|
29
|
} |
|
30
|
|
|
31
|
|
|
32
|
.ForumPostEditor > .tab-container > .tabs > .tab-panel { |
|
33
|
display: flex; |
|
34
|
flex-direction: column; |
|
35
|
} |
|
36
|
|
|
37
|
.ForumPostEditor .tab-panel.editor-wrapper > .editor { |
|
38
|
max-width: initial; |
|
39
|
min-height: 18em; |
|
40
|
flex-grow: 1 |
|
41
|
} |
|
42
|
|
|
43
|
.ForumPostEditor > .buttons > .mimetype-wrapper, |
|
44
|
.ForumPostEditor > .titlebar{ |
|
45
|
display: flex; |
|
46
|
flex-direction: row; |
|
47
|
font-size: 120%; |
|
48
|
align-items: stretch; |
|
49
|
gap: 0.75em; |
|
50
|
} |
|
51
|
.ForumPostEditor > .titlebar{ |
|
52
|
align-items: center; |
|
53
|
} |
|
54
|
.ForumPostEditor > .titlebar > .title { |
|
55
|
flex-grow: 1; |
|
56
|
/* Clear some globals... */ |
|
57
|
font-size: inherit; |
|
58
|
max-width: initial; |
|
59
|
color: initial; |
|
60
|
} |
|
61
|
|
|
62
|
.ForumPostEditor > .buttons { |
|
63
|
font-size: 90%; |
|
64
|
display: flex; |
|
65
|
flex-direction: row; |
|
66
|
gap: 0.75em; |
|
67
|
flex-wrap: wrap; |
|
68
|
} |
|
69
|
.ForumPostEditor > .buttons > label { |
|
70
|
white-space: nowrap; |
|
71
|
display: flex; |
|
72
|
flex-direction: row; |
|
73
|
align-items: last baseline; |
|
74
|
cursor: pointer; |
|
75
|
border: 1px inset rgba(128, 128, 128, 0.5); |
|
76
|
border-radius: 0.25em; |
|
77
|
padding: 0.1em; |
|
78
|
} |
|
79
|
.ForumPostEditor > .buttons > label > input[type=checkbox]{ |
|
80
|
cursor: pointer; |
|
81
|
} |
|
82
|
|