Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Side by Side Diff: highlight_js_8.3.0/styles/default.css

Issue 1771863004: Add highlight.js 8.3 from the highlight.js standalone repo. (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « highlight_js_8.3.0/styles/dark.css ('k') | highlight_js_8.3.0/styles/docco.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2
3 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiac s.Org>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #f0f0f0;
12 -webkit-text-size-adjust: none;
13 }
14
15 .hljs,
16 .hljs-subst,
17 .hljs-tag .hljs-title,
18 .nginx .hljs-title {
19 color: black;
20 }
21
22 .hljs-string,
23 .hljs-title,
24 .hljs-constant,
25 .hljs-parent,
26 .hljs-tag .hljs-value,
27 .hljs-rules .hljs-value,
28 .hljs-preprocessor,
29 .hljs-pragma,
30 .haml .hljs-symbol,
31 .ruby .hljs-symbol,
32 .ruby .hljs-symbol .hljs-string,
33 .hljs-template_tag,
34 .django .hljs-variable,
35 .smalltalk .hljs-class,
36 .hljs-addition,
37 .hljs-flow,
38 .hljs-stream,
39 .bash .hljs-variable,
40 .apache .hljs-tag,
41 .apache .hljs-cbracket,
42 .tex .hljs-command,
43 .tex .hljs-special,
44 .erlang_repl .hljs-function_or_atom,
45 .asciidoc .hljs-header,
46 .markdown .hljs-header,
47 .coffeescript .hljs-attribute {
48 color: #800;
49 }
50
51 .smartquote,
52 .hljs-comment,
53 .hljs-annotation,
54 .hljs-template_comment,
55 .diff .hljs-header,
56 .hljs-chunk,
57 .asciidoc .hljs-blockquote,
58 .markdown .hljs-blockquote {
59 color: #888;
60 }
61
62 .hljs-number,
63 .hljs-date,
64 .hljs-regexp,
65 .hljs-literal,
66 .hljs-hexcolor,
67 .smalltalk .hljs-symbol,
68 .smalltalk .hljs-char,
69 .go .hljs-constant,
70 .hljs-change,
71 .lasso .hljs-variable,
72 .makefile .hljs-variable,
73 .asciidoc .hljs-bullet,
74 .markdown .hljs-bullet,
75 .asciidoc .hljs-link_url,
76 .markdown .hljs-link_url {
77 color: #080;
78 }
79
80 .hljs-label,
81 .hljs-javadoc,
82 .ruby .hljs-string,
83 .hljs-decorator,
84 .hljs-filter .hljs-argument,
85 .hljs-localvars,
86 .hljs-array,
87 .hljs-attr_selector,
88 .hljs-important,
89 .hljs-pseudo,
90 .hljs-pi,
91 .haml .hljs-bullet,
92 .hljs-doctype,
93 .hljs-deletion,
94 .hljs-envvar,
95 .hljs-shebang,
96 .apache .hljs-sqbracket,
97 .nginx .hljs-built_in,
98 .tex .hljs-formula,
99 .erlang_repl .hljs-reserved,
100 .hljs-prompt,
101 .asciidoc .hljs-link_label,
102 .markdown .hljs-link_label,
103 .vhdl .hljs-attribute,
104 .clojure .hljs-attribute,
105 .asciidoc .hljs-attribute,
106 .lasso .hljs-attribute,
107 .coffeescript .hljs-property,
108 .hljs-phony {
109 color: #88f;
110 }
111
112 .hljs-keyword,
113 .hljs-id,
114 .hljs-title,
115 .hljs-built_in,
116 .css .hljs-tag,
117 .hljs-javadoctag,
118 .hljs-phpdoc,
119 .hljs-dartdoc,
120 .hljs-yardoctag,
121 .smalltalk .hljs-class,
122 .hljs-winutils,
123 .bash .hljs-variable,
124 .apache .hljs-tag,
125 .hljs-type,
126 .hljs-typename,
127 .tex .hljs-command,
128 .asciidoc .hljs-strong,
129 .markdown .hljs-strong,
130 .hljs-request,
131 .hljs-status {
132 font-weight: bold;
133 }
134
135 .asciidoc .hljs-emphasis,
136 .markdown .hljs-emphasis {
137 font-style: italic;
138 }
139
140 .nginx .hljs-built_in {
141 font-weight: normal;
142 }
143
144 .coffeescript .javascript,
145 .javascript .xml,
146 .lasso .markup,
147 .tex .hljs-formula,
148 .xml .javascript,
149 .xml .vbscript,
150 .xml .css,
151 .xml .hljs-cdata {
152 opacity: 0.5;
153 }
OLDNEW
« no previous file with comments | « highlight_js_8.3.0/styles/dark.css ('k') | highlight_js_8.3.0/styles/docco.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698