diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/style/res/viewsource.css | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/style/res/viewsource.css')
-rw-r--r-- | layout/style/res/viewsource.css | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/layout/style/res/viewsource.css b/layout/style/res/viewsource.css new file mode 100644 index 000000000..e586dc053 --- /dev/null +++ b/layout/style/res/viewsource.css @@ -0,0 +1,101 @@ +@charset "utf-8"; +/* 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 http://mozilla.org/MPL/2.0/. */ + +@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */ + +*|*:root { + background-color: white; + color: black; + direction: ltr; + -moz-control-character-visibility: visible; + height: 100%; +} +#viewsource { + font-family: -moz-fixed; + font-weight: normal; + white-space: pre; + counter-reset: line; + height: 100%; + box-sizing: border-box; + margin: 0; + padding: 8px; +} +#viewsource.wrap { + white-space: pre-wrap; + word-wrap: break-word; +} +pre { + font: inherit; + color: inherit; + white-space: inherit; + margin: 0 0 0 5ch; +} +pre[id]:before, +span[id]:before { + content: counter(line) " "; + counter-increment: line; + -moz-user-select: none; + display: inline-block; + width: 5ch; + margin: 0 0 0 -5ch; + text-align: right; + color: #ccc; + font-weight: normal; + font-style: normal; +} +.highlight .start-tag { + color: purple; + font-weight: bold; +} +.highlight .end-tag { + color: purple; + font-weight: bold; +} +.highlight .comment { + color: green; + font-style: italic; +} +.highlight .cdata { + color: #CC0066; +} +.highlight .doctype { + color: steelblue; + font-style: italic; +} +.highlight .pi { + color: orchid; + font-style: italic; +} +.highlight .entity { + color: #FF4500; + font-weight: normal; +} +.highlight .text { + font-weight: normal; +} +.highlight .attribute-name { + color: black; + font-weight: bold; +} +.highlight .attribute-value { + color: blue; + font-weight: normal; +} +.highlight .markupdeclaration { + color: steelblue; + font-style: italic; +} +span:not(.error), a:not(.error) { + unicode-bidi: embed; +} +span[id] { + unicode-bidi: isolate; +} +.highlight .error, +.highlight .error > :-moz-any(.start-tag, .end-tag, .comment, .cdata, .doctype, + .pi, .entity, .attribute-name, .attribute-value) { + color: red; + font-weight: bold; +} |