Commit | Line | Data |
---|---|---|
9099c61d RK |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
f6e0a33f | 4 | |
5 | @import url(chrome://communicator/skin/); | |
128000f4 | 6 | |
7 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
8 | ||
b70a3a73 | 9 | #content-frame { |
10 | min-width: 10px; | |
f6e0a33f | 11 | min-height: 10px; |
12 | height: 400px; | |
b70a3a73 | 13 | } |
f6e0a33f | 14 | |
74d14f90 | 15 | .source-editor, |
16 | .source-editor:focus { | |
02920d2b RK |
17 | margin-top: 0px; |
18 | margin-bottom: 5px; | |
dae45075 RK |
19 | margin-inline-start: 0px; |
20 | margin-inline-end: 5px; | |
f6e0a33f | 21 | border: 0px; |
b70a3a73 | 22 | /* Scroll bars are in content, |
f6e0a33f | 23 | so we can't use right and bottom padding! */ |
02920d2b RK |
24 | padding-top: 5px; |
25 | padding-bottom: 0px; | |
dae45075 RK |
26 | padding-inline-start: 5px; |
27 | padding-inline-end: 0px; | |
f6e0a33f | 28 | } |
29 | ||
30 | /* Multiline textarea for HTML source editing */ | |
74d14f90 | 31 | #content-source, |
32 | #doctype-text { | |
33 | font-family: -moz-fixed; | |
cf89ee7b | 34 | font-size: initial; |
74d14f90 | 35 | } |
f6e0a33f | 36 | |
74d14f90 | 37 | #appcontent { |
38 | } | |
39 | ||
40 | #ContentWindowDeck { | |
41 | } | |
fb2b5761 | 42 | |
d7b401aa | 43 | /* ::::: struct toolbar ::::: */ |
44 | ||
45 | #structToolbar { | |
46 | min-width: 1px; | |
136d0f43 | 47 | overflow: -moz-hidden-unscrollable; |
d7b401aa | 48 | } |
49 | ||
50 | #structSpacer { | |
51 | margin: 2px 0px; | |
52 | } | |
53 | ||
54 | .struct-button { | |
55 | padding: 2px; | |
56 | } | |
57 | ||
58 | .struct-button[checked="true"] { | |
59 | font-weight: bold; | |
60 | } | |
61 | ||
62 | .struct-textbox { | |
d7b401aa | 63 | padding: 0px !important; |
64 | margin: 0px !important; | |
65 | border: none !important; | |
66 | } | |
fb2b5761 RK |
67 | |
68 | /* ::::: lightweight themes ::::: */ | |
69 | ||
70 | #EditModeToolbar:-moz-lwtheme { | |
71 | text-shadow: none; | |
72 | /* color: -moz-dialogtext; | |
73 | background-color: -moz-dialog; */ | |
74 | } |