diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2017-05-20 00:52:35 -0300 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-05-20 11:52:35 +0800 |
commit | be5323a05fed04ede6dd7d0ca1f8ac3476536906 (patch) | |
tree | 8a9cfb2bb664ad9d7cc2c88ea5a9970ee3aee9d4 /public/plugins/highlight-9.6.0/default.css | |
parent | 80cea8747fe87db98a9e930da6d664a245e5fc12 (diff) | |
download | gitea-be5323a05fed04ede6dd7d0ca1f8ac3476536906.tar.gz gitea-be5323a05fed04ede6dd7d0ca1f8ac3476536906.zip |
Update HighlightJS and fix YAML files highlighting (#1764)
* Update HighlightJS to 9.11.0
* Fix YAML files highlighting
Diffstat (limited to 'public/plugins/highlight-9.6.0/default.css')
-rw-r--r-- | public/plugins/highlight-9.6.0/default.css | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/public/plugins/highlight-9.6.0/default.css b/public/plugins/highlight-9.6.0/default.css deleted file mode 100644 index f1bfade31e..0000000000 --- a/public/plugins/highlight-9.6.0/default.css +++ /dev/null @@ -1,99 +0,0 @@ -/* - -Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> - -*/ - -.hljs { - display: block; - overflow-x: auto; - padding: 0.5em; - background: #F0F0F0; -} - - -/* Base color: saturation 0; */ - -.hljs, -.hljs-subst { - color: #444; -} - -.hljs-comment { - color: #888888; -} - -.hljs-keyword, -.hljs-attribute, -.hljs-selector-tag, -.hljs-meta-keyword, -.hljs-doctag, -.hljs-name { - font-weight: bold; -} - - -/* User color: hue: 0 */ - -.hljs-type, -.hljs-string, -.hljs-number, -.hljs-selector-id, -.hljs-selector-class, -.hljs-quote, -.hljs-template-tag, -.hljs-deletion { - color: #880000; -} - -.hljs-title, -.hljs-section { - color: #880000; - font-weight: bold; -} - -.hljs-regexp, -.hljs-symbol, -.hljs-variable, -.hljs-template-variable, -.hljs-link, -.hljs-selector-attr, -.hljs-selector-pseudo { - color: #BC6060; -} - - -/* Language color: hue: 90; */ - -.hljs-literal { - color: #78A960; -} - -.hljs-built_in, -.hljs-bullet, -.hljs-code, -.hljs-addition { - color: #397300; -} - - -/* Meta color: hue: 200 */ - -.hljs-meta { - color: #1f7199; -} - -.hljs-meta-string { - color: #4d99bf; -} - - -/* Misc effects */ - -.hljs-emphasis { - font-style: italic; -} - -.hljs-strong { - font-weight: bold; -} |