-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmicro_bbcode_editor.css
More file actions
84 lines (72 loc) · 1.62 KB
/
micro_bbcode_editor.css
File metadata and controls
84 lines (72 loc) · 1.62 KB
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
@charset "UTF-8";
/***********************************************
* Micro BBCode Editor
*
* Copyright (c) 2017 White Label Dev Ltd
* https://white-label-dev.co.uk/
*
* This Source Code Form is subject to the
* terms of the Mozilla Public License, v. 2.0.
* If a copy of the MPL was not distributed with
* this file, You can obtain one at
* https://mozilla.org/MPL/2.0/
***********************************************/
body {
font-family: Arial, Helvetica, Verdana, sans-serif;
}
h1 {
margin-top: 0px;
}
hr {
border: none;
border-bottom: 1px solid #e0e0e0;
}
#micro_bbcode_editor_toolbar, #micro_bbcode_editor_toolbar + div {
display: inline-block;
border-right: 10px;
}
#micro_bbcode_editor_toolbar > span {
display: inline-block;
width: 20px;
height: 20px;
text-align: center;
border-width: 1px;
border-color: #c0c0c0;
border-style: solid;
border-radius: 3px;
cursor: copy;
}
#micro_bbcode_editor_toolbar > span:hover {
border-color: #0098cb;
}
#micro_bbcode_editor_doc {
width: 100%;
height: 100px;
margin: 5px 0px;
overflow-y: auto;
border: 1px solid black;
/* resize: none; /* Stops resize handle from changing textarea dimensions */
}
#micro_bbcode_editor_preview {
height: 100px;
padding: 4px;
border-width: 1px;
border-style: solid;
border-color: #404040;
overflow-y: auto;
word-wrap: break-word;
background-color: #fcfcfc;
}
#micro_bbcode_editor_doc, #micro_bbcode_editor_preview {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.micro_bbcode_editor_error1 {
color: #ffff00;
background-color: #ff0000;
font-weight: bold;
}
.micro_bbcode_editor_error2 {
color: #ff0000;
}