50
|
1 div[bbcode_editor] * {
|
44
|
2 box-sizing: border-box;
|
|
3 }
|
50
|
4 div[bbcode_editor] textarea {
|
44
|
5 font: inherit;
|
|
6 padding: 7px;
|
|
7 border-color: #DDDDDD;
|
|
8 width: 100%;
|
|
9 }
|
|
10
|
50
|
11 div[bbcode_editor] input[type="file"] {
|
44
|
12 display: none;
|
|
13 }
|
45
|
14
|
50
|
15 div[bbcode_editor] button:hover {
|
45
|
16 cursor: pointer;
|
|
17 }
|
|
18
|
50
|
19 div[bbcode_editor] div[buttons] {
|
45
|
20 display: flex;
|
|
21 justify-content: flex-end;
|
|
22 }
|
51
|
23 div[bbcode_editor] button {
|
45
|
24 border: 0;
|
|
25 background-color: transparent;
|
47
|
26 border-radius: 4px;
|
|
27 }
|
51
|
28 div[bbcode_editor] button:hover {
|
47
|
29 background-color: lightgrey;
|
|
30 }
|
51
|
31 div[bbcode_editor] button[checked] {
|
47
|
32 background-color: lightblue;
|
45
|
33 }
|
51
|
34 div[bbcode_editor] button:disabled {
|
|
35 cursor: not-allowed;
|
|
36 background-color: initial;
|
|
37 opacity: 0.3;
|
|
38 }
|
50
|
39 div[bbcode_editor] div[buttons] img {
|
45
|
40 height: 24px;
|
|
41 }
|
51
|
42 div[bbcode_editor] div[preview] {
|
|
43 display: none;
|
|
44 border: solid #888888;
|
|
45 padding: 7px;
|
|
46 margin-bottom: 4px;
|
|
47 }
|
49
|
48
|
50
|
49
|
49
|
50 div[from_bbcode] {
|
|
51 white-space: pre-wrap;
|
|
52 line-height: 1.4;
|
|
53 }
|
|
54 div[from_bbcode] code {
|
|
55 display: block;
|
|
56 background-color: #EEE;
|
|
57 padding: 7px;
|
|
58 }
|
|
59 div[from_bbcode] code[inline] {
|
|
60 display: initial;
|
|
61 padding: 1px;
|
|
62 }
|