mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
b8b5190bc6
Currently, some of the things on the playground must be changed directly on the master branch while other things require checking out the gh-pages branch and making the modifications there. Even when changes need to be made on the master branch, all changes that are not direcly in owl itself need to be copied by hand to the gh-pages branch. This commit moves all files that exist on the gh-pages branch to the master branch in the docs folder, this change will require configuring the github page to use the docs folder instead of a separate branch, but will make maintenance of the github page and playground easier going forward.
117 lines
2.8 KiB
JavaScript
117 lines
2.8 KiB
JavaScript
ace.define(
|
|
"ace/theme/monokai",
|
|
["require", "exports", "module", "ace/lib/dom"],
|
|
function(require, exports, module) {
|
|
exports.isDark = true;
|
|
exports.cssClass = "ace-monokai";
|
|
exports.cssText =
|
|
".ace-monokai .ace_gutter {\
|
|
background: #2F3129;\
|
|
color: #8F908A\
|
|
}\
|
|
.ace-monokai .ace_print-margin {\
|
|
width: 1px;\
|
|
background: #555651\
|
|
}\
|
|
.ace-monokai {\
|
|
background-color: #272822;\
|
|
color: #F8F8F2\
|
|
}\
|
|
.ace-monokai .ace_cursor {\
|
|
color: #F8F8F0\
|
|
}\
|
|
.ace-monokai .ace_marker-layer .ace_selection {\
|
|
background: #49483E\
|
|
}\
|
|
.ace-monokai.ace_multiselect .ace_selection.ace_start {\
|
|
box-shadow: 0 0 3px 0px #272822;\
|
|
}\
|
|
.ace-monokai .ace_marker-layer .ace_step {\
|
|
background: rgb(102, 82, 0)\
|
|
}\
|
|
.ace-monokai .ace_marker-layer .ace_bracket {\
|
|
margin: -1px 0 0 -1px;\
|
|
border: 1px solid #49483E\
|
|
}\
|
|
.ace-monokai .ace_marker-layer .ace_active-line {\
|
|
background: #202020\
|
|
}\
|
|
.ace-monokai .ace_gutter-active-line {\
|
|
background-color: #272727\
|
|
}\
|
|
.ace-monokai .ace_marker-layer .ace_selected-word {\
|
|
border: 1px solid #49483E\
|
|
}\
|
|
.ace-monokai .ace_invisible {\
|
|
color: #52524d\
|
|
}\
|
|
.ace-monokai .ace_entity.ace_name.ace_tag,\
|
|
.ace-monokai .ace_keyword,\
|
|
.ace-monokai .ace_meta.ace_tag,\
|
|
.ace-monokai .ace_storage {\
|
|
color: #F92672\
|
|
}\
|
|
.ace-monokai .ace_punctuation,\
|
|
.ace-monokai .ace_punctuation.ace_tag {\
|
|
color: #fff\
|
|
}\
|
|
.ace-monokai .ace_constant.ace_character,\
|
|
.ace-monokai .ace_constant.ace_language,\
|
|
.ace-monokai .ace_constant.ace_numeric,\
|
|
.ace-monokai .ace_constant.ace_other {\
|
|
color: #AE81FF\
|
|
}\
|
|
.ace-monokai .ace_invalid {\
|
|
color: #F8F8F0;\
|
|
background-color: #F92672\
|
|
}\
|
|
.ace-monokai .ace_invalid.ace_deprecated {\
|
|
color: #F8F8F0;\
|
|
background-color: #AE81FF\
|
|
}\
|
|
.ace-monokai .ace_support.ace_constant,\
|
|
.ace-monokai .ace_support.ace_function {\
|
|
color: #66D9EF\
|
|
}\
|
|
.ace-monokai .ace_fold {\
|
|
background-color: #A6E22E;\
|
|
border-color: #F8F8F2\
|
|
}\
|
|
.ace-monokai .ace_storage.ace_type,\
|
|
.ace-monokai .ace_support.ace_class,\
|
|
.ace-monokai .ace_support.ace_type {\
|
|
font-style: italic;\
|
|
color: #66D9EF\
|
|
}\
|
|
.ace-monokai .ace_entity.ace_name.ace_function,\
|
|
.ace-monokai .ace_entity.ace_other,\
|
|
.ace-monokai .ace_entity.ace_other.ace_attribute-name,\
|
|
.ace-monokai .ace_variable {\
|
|
color: #A6E22E\
|
|
}\
|
|
.ace-monokai .ace_variable.ace_parameter {\
|
|
font-style: italic;\
|
|
color: #FD971F\
|
|
}\
|
|
.ace-monokai .ace_string {\
|
|
color: #E6DB74\
|
|
}\
|
|
.ace-monokai .ace_comment {\
|
|
color: #75715E\
|
|
}\
|
|
.ace-monokai .ace_indent-guide {\
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWPQ0FD0ZXBzd/wPAAjVAoxeSgNeAAAAAElFTkSuQmCC) right repeat-y\
|
|
}";
|
|
|
|
var dom = require("../lib/dom");
|
|
dom.importCssString(exports.cssText, exports.cssClass);
|
|
}
|
|
);
|
|
(function() {
|
|
ace.require(["ace/theme/monokai"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|