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 }
|
50
|
23 div[bbcode_editor] div[buttons] button {
|
45
|
24 border: 0;
|
|
25 background-color: transparent;
|
47
|
26 border-radius: 4px;
|
|
27 }
|
50
|
28 div[bbcode_editor] div[buttons] button:hover {
|
47
|
29 background-color: lightgrey;
|
|
30 }
|
50
|
31 div[bbcode_editor] div[buttons] button[checked] {
|
47
|
32 background-color: lightblue;
|
45
|
33 }
|
50
|
34 div[bbcode_editor] div[buttons] img {
|
45
|
35 height: 24px;
|
|
36 }
|
49
|
37
|
50
|
38
|
49
|
39 div[from_bbcode] {
|
|
40 white-space: pre-wrap;
|
|
41 line-height: 1.4;
|
|
42 }
|
|
43 div[from_bbcode] code {
|
|
44 display: block;
|
|
45 background-color: #EEE;
|
|
46 padding: 7px;
|
|
47 }
|
|
48 div[from_bbcode] code[inline] {
|
|
49 display: initial;
|
|
50 padding: 1px;
|
|
51 }
|