mirror of https://github.com/abpframework/abp.git
committed by
GitHub
304 changed files with 33799 additions and 33844 deletions
@ -1,56 +1,56 @@ |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
|
|||
File diff suppressed because it is too large
@ -1,404 +1,404 @@ |
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
})(jQuery); |
|||
@ -1,46 +1,46 @@ |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
|
|||
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
|
|||
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
|
|||
@ -1,56 +1,56 @@ |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
|
|||
File diff suppressed because it is too large
@ -1,404 +1,404 @@ |
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
})(jQuery); |
|||
@ -1,46 +1,46 @@ |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
|
|||
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
|
|||
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
|
|||
@ -1,56 +1,56 @@ |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
@keyframes spin { |
|||
0% { |
|||
transform: translateZ(0) rotate(0deg); |
|||
} |
|||
|
|||
100% { |
|||
transform: translateZ(0) rotate(360deg); |
|||
} |
|||
} |
|||
|
|||
.abp-block-area { |
|||
position: fixed; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
z-index: 102; |
|||
background-color: #fff; |
|||
opacity: .8; |
|||
transition: opacity .25s; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-disappearing { |
|||
opacity: 0; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:after { |
|||
content: attr(data-text); |
|||
display: block; |
|||
max-width: 125px; |
|||
position: absolute; |
|||
top: 50%; |
|||
left: 50%; |
|||
transform: translate(-50%, -50%); |
|||
font-size: 20px; |
|||
font-family: sans-serif; |
|||
color: #343a40; |
|||
text-align: center; |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
.abp-block-area.abp-block-area-busy:before { |
|||
content: ""; |
|||
display: block; |
|||
width: 150px; |
|||
height: 150px; |
|||
border-radius: 50%; |
|||
border-width: 2px; |
|||
border-style: solid; |
|||
border-color: transparent #228ae6 #228ae6 #228ae6; |
|||
position: absolute; |
|||
top: calc(50% - 75px); |
|||
left: calc(50% - 75px); |
|||
will-change: transform; |
|||
animation: spin .75s infinite ease-in-out; |
|||
} |
|||
|
|||
File diff suppressed because it is too large
@ -1,404 +1,404 @@ |
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
var abp = abp || {}; |
|||
(function($) { |
|||
|
|||
if (!$) { |
|||
throw "abp/jquery library requires the jquery library included to the page!"; |
|||
} |
|||
|
|||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|||
|
|||
abp.message._showMessage = function (message, title) { |
|||
alert((title || '') + ' ' + message); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(); |
|||
}); |
|||
}; |
|||
|
|||
abp.message.confirm = function (message, titleOrCallback, callback) { |
|||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
|||
callback = titleOrCallback; |
|||
} |
|||
|
|||
var result = confirm(message); |
|||
callback && callback(result); |
|||
|
|||
return $.Deferred(function ($dfd) { |
|||
$dfd.resolve(result); |
|||
}); |
|||
}; |
|||
|
|||
abp.utils.isFunction = function (obj) { |
|||
return $.isFunction(obj); |
|||
}; |
|||
|
|||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
|||
|
|||
$.fn.findWithSelf = function (selector) { |
|||
return this.filter(selector).add(this.find(selector)); |
|||
}; |
|||
|
|||
// DOM ////////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.dom = abp.dom || {}; |
|||
|
|||
abp.dom.onNodeAdded = function (callback) { |
|||
abp.event.on('abp.dom.nodeAdded', callback); |
|||
}; |
|||
|
|||
abp.dom.onNodeRemoved = function (callback) { |
|||
abp.event.on('abp.dom.nodeRemoved', callback); |
|||
}; |
|||
|
|||
var mutationObserverCallback = function (mutationsList) { |
|||
for (var i = 0; i < mutationsList.length; i++) { |
|||
var mutation = mutationsList[i]; |
|||
if (mutation.type === 'childList') { |
|||
if (mutation.addedNodes && mutation.removedNodes.length) { |
|||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeRemoved', |
|||
{ |
|||
$el: $(mutation.removedNodes[k]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
|
|||
if (mutation.addedNodes && mutation.addedNodes.length) { |
|||
for (var j = 0; j < mutation.addedNodes.length; j++) { |
|||
abp.event.trigger( |
|||
'abp.dom.nodeAdded', |
|||
{ |
|||
$el: $(mutation.addedNodes[j]) |
|||
} |
|||
); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
}; |
|||
|
|||
$(function(){ |
|||
new MutationObserver(mutationObserverCallback).observe( |
|||
$('body')[0], |
|||
{ |
|||
subtree: true, |
|||
childList: true |
|||
} |
|||
); |
|||
}); |
|||
|
|||
// AJAX ///////////////////////////////////////////////////////////////////
|
|||
|
|||
abp.ajax = function (userOptions) { |
|||
userOptions = userOptions || {}; |
|||
|
|||
var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); |
|||
|
|||
options.success = undefined; |
|||
options.error = undefined; |
|||
|
|||
var xhr = null; |
|||
var promise = $.Deferred(function ($dfd) { |
|||
xhr = $.ajax(options) |
|||
.done(function (data, textStatus, jqXHR) { |
|||
$dfd.resolve(data); |
|||
userOptions.success && userOptions.success(data); |
|||
}).fail(function (jqXHR) { |
|||
if(jqXHR.statusText === 'abort') { |
|||
//ajax request is abort, ignore error handle.
|
|||
return; |
|||
} |
|||
if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { |
|||
abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} else { |
|||
abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); |
|||
} |
|||
}); |
|||
}).promise(); |
|||
|
|||
promise['jqXHR'] = xhr; |
|||
|
|||
return promise; |
|||
}; |
|||
|
|||
$.extend(abp.ajax, { |
|||
defaultOpts: { |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
contentType: 'application/json', |
|||
headers: { |
|||
'X-Requested-With': 'XMLHttpRequest' |
|||
} |
|||
}, |
|||
|
|||
defaultError: { |
|||
message: 'An error has occurred!', |
|||
details: 'Error detail not sent by server.' |
|||
}, |
|||
|
|||
defaultError401: { |
|||
message: 'You are not authenticated!', |
|||
details: 'You should be authenticated (sign in) in order to perform this operation.' |
|||
}, |
|||
|
|||
defaultError403: { |
|||
message: 'You are not authorized!', |
|||
details: 'You are not allowed to perform this operation.' |
|||
}, |
|||
|
|||
defaultError404: { |
|||
message: 'Resource not found!', |
|||
details: 'The resource requested could not found on the server.' |
|||
}, |
|||
|
|||
logError: function (error) { |
|||
abp.log.error(error); |
|||
}, |
|||
|
|||
showError: function (error) { |
|||
if (error.details) { |
|||
return abp.message.error(error.details, error.message); |
|||
} else { |
|||
return abp.message.error(error.message || abp.ajax.defaultError.message); |
|||
} |
|||
}, |
|||
|
|||
handleTargetUrl: function (targetUrl) { |
|||
if (!targetUrl) { |
|||
location.href = abp.appPath; |
|||
} else { |
|||
location.href = targetUrl; |
|||
} |
|||
}, |
|||
|
|||
handleErrorStatusCode: function (status) { |
|||
switch (status) { |
|||
case 401: |
|||
abp.ajax.handleUnAuthorizedRequest( |
|||
abp.ajax.showError(abp.ajax.defaultError401), |
|||
abp.appPath |
|||
); |
|||
break; |
|||
case 403: |
|||
abp.ajax.showError(abp.ajax.defaultError403); |
|||
break; |
|||
case 404: |
|||
abp.ajax.showError(abp.ajax.defaultError404); |
|||
break; |
|||
default: |
|||
abp.ajax.showError(abp.ajax.defaultError); |
|||
break; |
|||
} |
|||
}, |
|||
|
|||
handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
if (userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleErrorStatusCode(jqXHR.status); |
|||
} |
|||
|
|||
$dfd.reject.apply(this, arguments); |
|||
userOptions.error && userOptions.error.apply(this, arguments); |
|||
}, |
|||
|
|||
handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { |
|||
var messagePromise = null; |
|||
|
|||
if (userOptions.abpHandleError !== false) { |
|||
messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); |
|||
} |
|||
|
|||
abp.ajax.logError(jqXHR.responseJSON.error); |
|||
|
|||
$dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); |
|||
userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); |
|||
|
|||
if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { |
|||
abp.ajax.handleUnAuthorizedRequest(messagePromise); |
|||
} |
|||
}, |
|||
|
|||
handleUnAuthorizedRequest: function (messagePromise, targetUrl) { |
|||
if (messagePromise) { |
|||
messagePromise.done(function () { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
}); |
|||
} else { |
|||
abp.ajax.handleTargetUrl(targetUrl); |
|||
} |
|||
}, |
|||
|
|||
blockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //block whole page
|
|||
abp.ui.setBusy(); |
|||
} else { //block an element
|
|||
abp.ui.setBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
unblockUI: function (options) { |
|||
if (options.blockUI) { |
|||
if (options.blockUI === true) { //unblock whole page
|
|||
abp.ui.clearBusy(); |
|||
} else { //unblock an element
|
|||
abp.ui.clearBusy(options.blockUI); |
|||
} |
|||
} |
|||
}, |
|||
|
|||
ajaxSendHandler: function (event, request, settings) { |
|||
var token = abp.security.antiForgery.getToken(); |
|||
if (!token) { |
|||
return; |
|||
} |
|||
|
|||
if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { |
|||
request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); |
|||
} |
|||
} |
|||
}); |
|||
|
|||
$(document).ajaxSend(function (event, request, settings) { |
|||
return abp.ajax.ajaxSendHandler(event, request, settings); |
|||
}); |
|||
|
|||
abp.event.on('abp.configurationInitialized', function () { |
|||
var l = abp.localization.getResource('AbpUi'); |
|||
|
|||
abp.ajax.defaultError.message = l('DefaultErrorMessage'); |
|||
abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); |
|||
abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); |
|||
abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); |
|||
abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); |
|||
abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); |
|||
abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); |
|||
abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); |
|||
}); |
|||
|
|||
// RESOURCE LOADER ////////////////////////////////////////////////////////
|
|||
|
|||
/* UrlStates enum */ |
|||
var UrlStates = { |
|||
LOADING: 'LOADING', |
|||
LOADED: 'LOADED', |
|||
FAILED: 'FAILED' |
|||
}; |
|||
|
|||
/* UrlInfo class */ |
|||
function UrlInfo(url) { |
|||
this.url = url; |
|||
this.state = UrlStates.LOADING; |
|||
this.loadCallbacks = []; |
|||
this.failCallbacks = []; |
|||
} |
|||
|
|||
UrlInfo.prototype.succeed = function () { |
|||
this.state = UrlStates.LOADED; |
|||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
|||
this.loadCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.failed = function () { |
|||
this.state = UrlStates.FAILED; |
|||
for (var i = 0; i < this.failCallbacks.length; i++) { |
|||
this.failCallbacks[i](); |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|||
switch (this.state) { |
|||
case UrlStates.LOADED: |
|||
loadCallback && loadCallback(); |
|||
break; |
|||
case UrlStates.FAILED: |
|||
failCallback && failCallback(); |
|||
break; |
|||
case UrlStates.LOADING: |
|||
this.addCallbacks(loadCallback, failCallback); |
|||
break; |
|||
} |
|||
}; |
|||
|
|||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|||
loadCallback && this.loadCallbacks.push(loadCallback); |
|||
failCallback && this.failCallbacks.push(failCallback); |
|||
}; |
|||
|
|||
/* ResourceLoader API */ |
|||
|
|||
abp.ResourceLoader = (function () { |
|||
|
|||
var _urlInfos = {}; |
|||
|
|||
function getCacheKey(url) { |
|||
return url; |
|||
} |
|||
|
|||
function appendTimeToUrl(url) { |
|||
|
|||
if (url.indexOf('?') < 0) { |
|||
url += '?'; |
|||
} else { |
|||
url += '&'; |
|||
} |
|||
|
|||
url += '_=' + new Date().getTime(); |
|||
|
|||
return url; |
|||
} |
|||
|
|||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
|||
|
|||
var cacheKey = getCacheKey(url); |
|||
|
|||
var urlInfo = _urlInfos[cacheKey]; |
|||
|
|||
if (urlInfo) { |
|||
urlInfo.handleCallbacks(loadCallback, failCallback); |
|||
return; |
|||
} |
|||
|
|||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
|||
urlInfo.addCallbacks(loadCallback, failCallback); |
|||
|
|||
serverLoader(urlInfo); |
|||
}; |
|||
|
|||
var _loadScript = function (url, loadCallback, failCallback) { |
|||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
|||
$.get({ |
|||
url: url, |
|||
dataType: 'text' |
|||
}) |
|||
.done(function (script) { |
|||
$.globalEval(script); |
|||
urlInfo.succeed(); |
|||
}) |
|||
.fail(function () { |
|||
urlInfo.failed(); |
|||
}); |
|||
}); |
|||
}; |
|||
|
|||
var _loadStyle = function (url) { |
|||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
|||
|
|||
$('<link/>', { |
|||
rel: 'stylesheet', |
|||
type: 'text/css', |
|||
href: appendTimeToUrl(url) |
|||
}).appendTo('head'); |
|||
}); |
|||
}; |
|||
|
|||
return { |
|||
loadScript: _loadScript, |
|||
loadStyle: _loadStyle |
|||
} |
|||
})(); |
|||
|
|||
})(jQuery); |
|||
@ -1,46 +1,46 @@ |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
var abp = abp || {}; |
|||
(function () { |
|||
|
|||
if (!luxon) { |
|||
throw "abp/luxon library requires the luxon library included to the page!"; |
|||
} |
|||
|
|||
/* TIMING *************************************************/ |
|||
|
|||
abp.timing = abp.timing || {}; |
|||
|
|||
var setObjectValue = function (obj, property, value) { |
|||
if (typeof property === "string") { |
|||
property = property.split('.'); |
|||
} |
|||
|
|||
if (property.length > 1) { |
|||
var p = property.shift(); |
|||
setObjectValue(obj[p], property, value); |
|||
} else { |
|||
obj[property[0]] = value; |
|||
} |
|||
} |
|||
|
|||
var getObjectValue = function (obj, property) { |
|||
return property.split('.').reduce((a, v) => a[v], obj) |
|||
} |
|||
|
|||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
|||
for (var field of fields) { |
|||
var dateTime = luxon.DateTime |
|||
.fromFormat( |
|||
getObjectValue(form, field), |
|||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
|||
{locale: abp.localization.currentCulture.cultureName} |
|||
); |
|||
|
|||
if (!dateTime.invalid) { |
|||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
|||
} |
|||
} |
|||
|
|||
return form; |
|||
} |
|||
|
|||
})(jQuery); |
|||
|
|||
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
|||
return new bootstrap.Popover(popoverTriggerEl) |
|||
}) |
|||
})(); |
|||
|
|||
@ -1,5 +1,5 @@ |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
(function () { |
|||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
|||
return new bootstrap.Tooltip(tooltipTriggerEl) |
|||
}); |
|||
})(); |
|||
|
|||
File diff suppressed because one or more lines are too long
@ -1,108 +1,108 @@ |
|||
/*! |
|||
* Agate by Taufik Nurrohman <https://github.com/tovic> |
|||
* ---------------------------------------------------- |
|||
* |
|||
* #ade5fc |
|||
* #a2fca2 |
|||
* #c6b4f0 |
|||
* #d36363 |
|||
* #fcc28c |
|||
* #fc9b9b |
|||
* #ffa |
|||
* #fff |
|||
* #333 |
|||
* #62c8f3 |
|||
* #888 |
|||
* |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #333; |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #62c8f3; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ade5fc; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-bullet { |
|||
color: #a2fca2; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute, |
|||
.hljs-quote, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #ffa; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #d36363; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color: #fcc28c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-code { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #c6b4f0; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #fc9b9b; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #fc9b9b; |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #a2fca2; |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs a { |
|||
color: inherit; |
|||
} |
|||
|
|||
.hljs a:focus, |
|||
.hljs a:hover { |
|||
color: inherit; |
|||
text-decoration: underline; |
|||
} |
|||
/*! |
|||
* Agate by Taufik Nurrohman <https://github.com/tovic> |
|||
* ---------------------------------------------------- |
|||
* |
|||
* #ade5fc |
|||
* #a2fca2 |
|||
* #c6b4f0 |
|||
* #d36363 |
|||
* #fcc28c |
|||
* #fc9b9b |
|||
* #ffa |
|||
* #fff |
|||
* #333 |
|||
* #62c8f3 |
|||
* #888 |
|||
* |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #333; |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #62c8f3; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ade5fc; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-bullet { |
|||
color: #a2fca2; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute, |
|||
.hljs-quote, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #ffa; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #d36363; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color: #fcc28c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-code { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #c6b4f0; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #fc9b9b; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #fc9b9b; |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #a2fca2; |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs a { |
|||
color: inherit; |
|||
} |
|||
|
|||
.hljs a:focus, |
|||
.hljs a:hover { |
|||
color: inherit; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
@ -1,66 +1,66 @@ |
|||
/* |
|||
Date: 24 Fev 2015 |
|||
Author: Pedro Oliveira <kanytu@gmail . com> |
|||
*/ |
|||
|
|||
.hljs { |
|||
color: #a9b7c6; |
|||
background: #282b2e; |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #6897BB; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion { |
|||
color: #cc7832; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link { |
|||
color: #629755; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #808080; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #bbb529; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-attribute, |
|||
.hljs-addition { |
|||
color: #6A8759; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-type { |
|||
color: #ffc66d; |
|||
} |
|||
|
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e8bf6a; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Date: 24 Fev 2015 |
|||
Author: Pedro Oliveira <kanytu@gmail . com> |
|||
*/ |
|||
|
|||
.hljs { |
|||
color: #a9b7c6; |
|||
background: #282b2e; |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #6897BB; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion { |
|||
color: #cc7832; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link { |
|||
color: #629755; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #808080; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #bbb529; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-attribute, |
|||
.hljs-addition { |
|||
color: #6A8759; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-type { |
|||
color: #ffc66d; |
|||
} |
|||
|
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e8bf6a; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,88 +1,88 @@ |
|||
/* |
|||
|
|||
Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #FFFFFF; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #434f54; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-attribute, |
|||
.hljs-selector-tag, |
|||
.hljs-doctag, |
|||
.hljs-name { |
|||
color: #00979D; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-literal, |
|||
.hljs-bullet, |
|||
.hljs-code, |
|||
.hljs-addition { |
|||
color: #D35400; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-symbol, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #00979D; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-quote, |
|||
.hljs-template-tag, |
|||
.hljs-deletion { |
|||
color: #005C5F; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #880000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-comment { |
|||
color: rgba(149,165,166,.8); |
|||
} |
|||
|
|||
.hljs-meta-keyword { |
|||
color: #728E00; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #728E00; |
|||
color: #434f54; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-function { |
|||
color: #728E00; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #8A7B52; |
|||
} |
|||
/* |
|||
|
|||
Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #FFFFFF; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #434f54; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-attribute, |
|||
.hljs-selector-tag, |
|||
.hljs-doctag, |
|||
.hljs-name { |
|||
color: #00979D; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-literal, |
|||
.hljs-bullet, |
|||
.hljs-code, |
|||
.hljs-addition { |
|||
color: #D35400; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-symbol, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #00979D; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-quote, |
|||
.hljs-template-tag, |
|||
.hljs-deletion { |
|||
color: #005C5F; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #880000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-comment { |
|||
color: rgba(149,165,166,.8); |
|||
} |
|||
|
|||
.hljs-meta-keyword { |
|||
color: #728E00; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #728E00; |
|||
color: #434f54; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-function { |
|||
color: #728E00; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #8A7B52; |
|||
} |
|||
|
|||
@ -1,73 +1,73 @@ |
|||
/* |
|||
Date: 17.V.2011 |
|||
Author: pumbur <pumbur@pumbur.net> |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #222; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #aaa; |
|||
} |
|||
|
|||
.hljs-section { |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta { |
|||
color: #444; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-regexp { |
|||
color: #ffcc33; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-addition { |
|||
color: #00cc66; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-link { |
|||
color: #32aaee; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #6644aa; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-variable, |
|||
.hljs-deletion, |
|||
.hljs-template-tag { |
|||
color: #bb1166; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
Date: 17.V.2011 |
|||
Author: pumbur <pumbur@pumbur.net> |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #222; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #aaa; |
|||
} |
|||
|
|||
.hljs-section { |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta { |
|||
color: #444; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-regexp { |
|||
color: #ffcc33; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-addition { |
|||
color: #00cc66; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-link { |
|||
color: #32aaee; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #6644aa; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-variable, |
|||
.hljs-deletion, |
|||
.hljs-template-tag { |
|||
color: #bb1166; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,45 +1,45 @@ |
|||
/* |
|||
|
|||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: white; |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-section, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-link { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #ccc; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: white; |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-section, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-link { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #ccc; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* Base16 Atelier Cave Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Cave Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7e7887; |
|||
} |
|||
|
|||
/* Atelier-Cave Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #be4678; |
|||
} |
|||
|
|||
/* Atelier-Cave Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #aa573c; |
|||
} |
|||
|
|||
/* Atelier-Cave Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #2a9292; |
|||
} |
|||
|
|||
/* Atelier-Cave Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #576ddb; |
|||
} |
|||
|
|||
/* Atelier-Cave Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #955ae7; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #19171c; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #be4678; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #2a9292; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #19171c; |
|||
color: #8b8792; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Cave Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Cave Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7e7887; |
|||
} |
|||
|
|||
/* Atelier-Cave Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #be4678; |
|||
} |
|||
|
|||
/* Atelier-Cave Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #aa573c; |
|||
} |
|||
|
|||
/* Atelier-Cave Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #2a9292; |
|||
} |
|||
|
|||
/* Atelier-Cave Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #576ddb; |
|||
} |
|||
|
|||
/* Atelier-Cave Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #955ae7; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #19171c; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #be4678; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #2a9292; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #19171c; |
|||
color: #8b8792; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,85 +1,85 @@ |
|||
/* Base16 Atelier Cave Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Cave Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #655f6d; |
|||
} |
|||
|
|||
/* Atelier-Cave Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #be4678; |
|||
} |
|||
|
|||
/* Atelier-Cave Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #aa573c; |
|||
} |
|||
|
|||
/* Atelier-Cave Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #2a9292; |
|||
} |
|||
|
|||
/* Atelier-Cave Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #576ddb; |
|||
} |
|||
|
|||
/* Atelier-Cave Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #955ae7; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #19171c; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #be4678; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #2a9292; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #efecf4; |
|||
color: #585260; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Cave Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Cave Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #655f6d; |
|||
} |
|||
|
|||
/* Atelier-Cave Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #be4678; |
|||
} |
|||
|
|||
/* Atelier-Cave Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #aa573c; |
|||
} |
|||
|
|||
/* Atelier-Cave Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #2a9292; |
|||
} |
|||
|
|||
/* Atelier-Cave Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #576ddb; |
|||
} |
|||
|
|||
/* Atelier-Cave Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #955ae7; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #19171c; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #be4678; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #2a9292; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #efecf4; |
|||
color: #585260; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Dune Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Dune Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #999580; |
|||
} |
|||
|
|||
/* Atelier-Dune Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d73737; |
|||
} |
|||
|
|||
/* Atelier-Dune Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b65611; |
|||
} |
|||
|
|||
/* Atelier-Dune Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #60ac39; |
|||
} |
|||
|
|||
/* Atelier-Dune Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #6684e1; |
|||
} |
|||
|
|||
/* Atelier-Dune Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b854d4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #20201d; |
|||
color: #a6a28c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Dune Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Dune Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #999580; |
|||
} |
|||
|
|||
/* Atelier-Dune Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d73737; |
|||
} |
|||
|
|||
/* Atelier-Dune Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b65611; |
|||
} |
|||
|
|||
/* Atelier-Dune Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #60ac39; |
|||
} |
|||
|
|||
/* Atelier-Dune Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #6684e1; |
|||
} |
|||
|
|||
/* Atelier-Dune Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b854d4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #20201d; |
|||
color: #a6a28c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Dune Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Dune Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7d7a68; |
|||
} |
|||
|
|||
/* Atelier-Dune Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d73737; |
|||
} |
|||
|
|||
/* Atelier-Dune Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b65611; |
|||
} |
|||
|
|||
/* Atelier-Dune Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #60ac39; |
|||
} |
|||
|
|||
/* Atelier-Dune Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #6684e1; |
|||
} |
|||
|
|||
/* Atelier-Dune Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b854d4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #fefbec; |
|||
color: #6e6b5e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Dune Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Dune Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7d7a68; |
|||
} |
|||
|
|||
/* Atelier-Dune Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d73737; |
|||
} |
|||
|
|||
/* Atelier-Dune Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b65611; |
|||
} |
|||
|
|||
/* Atelier-Dune Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #60ac39; |
|||
} |
|||
|
|||
/* Atelier-Dune Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #6684e1; |
|||
} |
|||
|
|||
/* Atelier-Dune Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b854d4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #fefbec; |
|||
color: #6e6b5e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Estuary Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Estuary Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #878573; |
|||
} |
|||
|
|||
/* Atelier-Estuary Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ba6236; |
|||
} |
|||
|
|||
/* Atelier-Estuary Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #ae7313; |
|||
} |
|||
|
|||
/* Atelier-Estuary Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7d9726; |
|||
} |
|||
|
|||
/* Atelier-Estuary Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #36a166; |
|||
} |
|||
|
|||
/* Atelier-Estuary Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #5f9182; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #22221b; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ba6236; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #7d9726; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #22221b; |
|||
color: #929181; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Estuary Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Estuary Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #878573; |
|||
} |
|||
|
|||
/* Atelier-Estuary Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ba6236; |
|||
} |
|||
|
|||
/* Atelier-Estuary Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #ae7313; |
|||
} |
|||
|
|||
/* Atelier-Estuary Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7d9726; |
|||
} |
|||
|
|||
/* Atelier-Estuary Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #36a166; |
|||
} |
|||
|
|||
/* Atelier-Estuary Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #5f9182; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #22221b; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ba6236; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #7d9726; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #22221b; |
|||
color: #929181; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Estuary Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Estuary Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #6c6b5a; |
|||
} |
|||
|
|||
/* Atelier-Estuary Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ba6236; |
|||
} |
|||
|
|||
/* Atelier-Estuary Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #ae7313; |
|||
} |
|||
|
|||
/* Atelier-Estuary Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7d9726; |
|||
} |
|||
|
|||
/* Atelier-Estuary Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #36a166; |
|||
} |
|||
|
|||
/* Atelier-Estuary Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #5f9182; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #22221b; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ba6236; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #7d9726; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4f3ec; |
|||
color: #5f5e4e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Estuary Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Estuary Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #6c6b5a; |
|||
} |
|||
|
|||
/* Atelier-Estuary Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ba6236; |
|||
} |
|||
|
|||
/* Atelier-Estuary Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #ae7313; |
|||
} |
|||
|
|||
/* Atelier-Estuary Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7d9726; |
|||
} |
|||
|
|||
/* Atelier-Estuary Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #36a166; |
|||
} |
|||
|
|||
/* Atelier-Estuary Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #5f9182; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #22221b; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ba6236; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #7d9726; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4f3ec; |
|||
color: #5f5e4e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Forest Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Forest Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #9c9491; |
|||
} |
|||
|
|||
/* Atelier-Forest Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #f22c40; |
|||
} |
|||
|
|||
/* Atelier-Forest Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #df5320; |
|||
} |
|||
|
|||
/* Atelier-Forest Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7b9726; |
|||
} |
|||
|
|||
/* Atelier-Forest Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #407ee7; |
|||
} |
|||
|
|||
/* Atelier-Forest Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6666ea; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b1918; |
|||
color: #a8a19f; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Forest Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Forest Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #9c9491; |
|||
} |
|||
|
|||
/* Atelier-Forest Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #f22c40; |
|||
} |
|||
|
|||
/* Atelier-Forest Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #df5320; |
|||
} |
|||
|
|||
/* Atelier-Forest Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7b9726; |
|||
} |
|||
|
|||
/* Atelier-Forest Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #407ee7; |
|||
} |
|||
|
|||
/* Atelier-Forest Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6666ea; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b1918; |
|||
color: #a8a19f; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Forest Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Forest Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #766e6b; |
|||
} |
|||
|
|||
/* Atelier-Forest Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #f22c40; |
|||
} |
|||
|
|||
/* Atelier-Forest Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #df5320; |
|||
} |
|||
|
|||
/* Atelier-Forest Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7b9726; |
|||
} |
|||
|
|||
/* Atelier-Forest Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #407ee7; |
|||
} |
|||
|
|||
/* Atelier-Forest Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6666ea; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f1efee; |
|||
color: #68615e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Forest Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Forest Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #766e6b; |
|||
} |
|||
|
|||
/* Atelier-Forest Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #f22c40; |
|||
} |
|||
|
|||
/* Atelier-Forest Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #df5320; |
|||
} |
|||
|
|||
/* Atelier-Forest Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #7b9726; |
|||
} |
|||
|
|||
/* Atelier-Forest Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #407ee7; |
|||
} |
|||
|
|||
/* Atelier-Forest Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6666ea; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f1efee; |
|||
color: #68615e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Heath Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Heath Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #9e8f9e; |
|||
} |
|||
|
|||
/* Atelier-Heath Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca402b; |
|||
} |
|||
|
|||
/* Atelier-Heath Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #a65926; |
|||
} |
|||
|
|||
/* Atelier-Heath Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #918b3b; |
|||
} |
|||
|
|||
/* Atelier-Heath Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #516aec; |
|||
} |
|||
|
|||
/* Atelier-Heath Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #7b59c0; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b181b; |
|||
color: #ab9bab; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Heath Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Heath Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #9e8f9e; |
|||
} |
|||
|
|||
/* Atelier-Heath Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca402b; |
|||
} |
|||
|
|||
/* Atelier-Heath Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #a65926; |
|||
} |
|||
|
|||
/* Atelier-Heath Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #918b3b; |
|||
} |
|||
|
|||
/* Atelier-Heath Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #516aec; |
|||
} |
|||
|
|||
/* Atelier-Heath Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #7b59c0; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b181b; |
|||
color: #ab9bab; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Heath Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Heath Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #776977; |
|||
} |
|||
|
|||
/* Atelier-Heath Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca402b; |
|||
} |
|||
|
|||
/* Atelier-Heath Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #a65926; |
|||
} |
|||
|
|||
/* Atelier-Heath Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #918b3b; |
|||
} |
|||
|
|||
/* Atelier-Heath Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #516aec; |
|||
} |
|||
|
|||
/* Atelier-Heath Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #7b59c0; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f7f3f7; |
|||
color: #695d69; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Heath Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Heath Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #776977; |
|||
} |
|||
|
|||
/* Atelier-Heath Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca402b; |
|||
} |
|||
|
|||
/* Atelier-Heath Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #a65926; |
|||
} |
|||
|
|||
/* Atelier-Heath Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #918b3b; |
|||
} |
|||
|
|||
/* Atelier-Heath Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #516aec; |
|||
} |
|||
|
|||
/* Atelier-Heath Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #7b59c0; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f7f3f7; |
|||
color: #695d69; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Lakeside Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Lakeside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7195a8; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d22d72; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #935c25; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #568c3b; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #257fad; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6b6bb8; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #161b1d; |
|||
color: #7ea2b4; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Lakeside Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Lakeside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7195a8; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d22d72; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #935c25; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #568c3b; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #257fad; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6b6bb8; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #161b1d; |
|||
color: #7ea2b4; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Lakeside Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Lakeside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5a7b8c; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d22d72; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #935c25; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #568c3b; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #257fad; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6b6bb8; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #ebf8ff; |
|||
color: #516d7b; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Lakeside Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Lakeside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5a7b8c; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d22d72; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #935c25; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #568c3b; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #257fad; |
|||
} |
|||
|
|||
/* Atelier-Lakeside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6b6bb8; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #ebf8ff; |
|||
color: #516d7b; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Plateau Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Plateau Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7e7777; |
|||
} |
|||
|
|||
/* Atelier-Plateau Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca4949; |
|||
} |
|||
|
|||
/* Atelier-Plateau Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b45a3c; |
|||
} |
|||
|
|||
/* Atelier-Plateau Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #4b8b8b; |
|||
} |
|||
|
|||
/* Atelier-Plateau Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #7272ca; |
|||
} |
|||
|
|||
/* Atelier-Plateau Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #8464c4; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #1b1818; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ca4949; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #4b8b8b; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b1818; |
|||
color: #8a8585; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Plateau Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Plateau Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #7e7777; |
|||
} |
|||
|
|||
/* Atelier-Plateau Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca4949; |
|||
} |
|||
|
|||
/* Atelier-Plateau Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b45a3c; |
|||
} |
|||
|
|||
/* Atelier-Plateau Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #4b8b8b; |
|||
} |
|||
|
|||
/* Atelier-Plateau Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #7272ca; |
|||
} |
|||
|
|||
/* Atelier-Plateau Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #8464c4; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #1b1818; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ca4949; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #4b8b8b; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #1b1818; |
|||
color: #8a8585; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Plateau Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Plateau Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #655d5d; |
|||
} |
|||
|
|||
/* Atelier-Plateau Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca4949; |
|||
} |
|||
|
|||
/* Atelier-Plateau Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b45a3c; |
|||
} |
|||
|
|||
/* Atelier-Plateau Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #4b8b8b; |
|||
} |
|||
|
|||
/* Atelier-Plateau Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #7272ca; |
|||
} |
|||
|
|||
/* Atelier-Plateau Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #8464c4; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #1b1818; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ca4949; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #4b8b8b; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4ecec; |
|||
color: #585050; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Plateau Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Plateau Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #655d5d; |
|||
} |
|||
|
|||
/* Atelier-Plateau Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #ca4949; |
|||
} |
|||
|
|||
/* Atelier-Plateau Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #b45a3c; |
|||
} |
|||
|
|||
/* Atelier-Plateau Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #4b8b8b; |
|||
} |
|||
|
|||
/* Atelier-Plateau Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #7272ca; |
|||
} |
|||
|
|||
/* Atelier-Plateau Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #8464c4; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #1b1818; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ca4949; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #4b8b8b; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4ecec; |
|||
color: #585050; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Savanna Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Savanna Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #78877d; |
|||
} |
|||
|
|||
/* Atelier-Savanna Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #b16139; |
|||
} |
|||
|
|||
/* Atelier-Savanna Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #9f713c; |
|||
} |
|||
|
|||
/* Atelier-Savanna Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #489963; |
|||
} |
|||
|
|||
/* Atelier-Savanna Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #478c90; |
|||
} |
|||
|
|||
/* Atelier-Savanna Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #55859b; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #171c19; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #b16139; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #489963; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #171c19; |
|||
color: #87928a; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Savanna Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Savanna Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #78877d; |
|||
} |
|||
|
|||
/* Atelier-Savanna Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #b16139; |
|||
} |
|||
|
|||
/* Atelier-Savanna Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #9f713c; |
|||
} |
|||
|
|||
/* Atelier-Savanna Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #489963; |
|||
} |
|||
|
|||
/* Atelier-Savanna Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #478c90; |
|||
} |
|||
|
|||
/* Atelier-Savanna Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #55859b; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #171c19; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #b16139; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #489963; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #171c19; |
|||
color: #87928a; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* Base16 Atelier Savanna Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Savanna Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5f6d64; |
|||
} |
|||
|
|||
/* Atelier-Savanna Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #b16139; |
|||
} |
|||
|
|||
/* Atelier-Savanna Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #9f713c; |
|||
} |
|||
|
|||
/* Atelier-Savanna Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #489963; |
|||
} |
|||
|
|||
/* Atelier-Savanna Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #478c90; |
|||
} |
|||
|
|||
/* Atelier-Savanna Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #55859b; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #171c19; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #b16139; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #489963; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #ecf4ee; |
|||
color: #526057; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Savanna Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Savanna Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5f6d64; |
|||
} |
|||
|
|||
/* Atelier-Savanna Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #b16139; |
|||
} |
|||
|
|||
/* Atelier-Savanna Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #9f713c; |
|||
} |
|||
|
|||
/* Atelier-Savanna Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #489963; |
|||
} |
|||
|
|||
/* Atelier-Savanna Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #478c90; |
|||
} |
|||
|
|||
/* Atelier-Savanna Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #55859b; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-addition { |
|||
color: #171c19; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #b16139; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #489963; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #ecf4ee; |
|||
color: #526057; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Seaside Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Seaside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #809980; |
|||
} |
|||
|
|||
/* Atelier-Seaside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e6193c; |
|||
} |
|||
|
|||
/* Atelier-Seaside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #87711d; |
|||
} |
|||
|
|||
/* Atelier-Seaside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #29a329; |
|||
} |
|||
|
|||
/* Atelier-Seaside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d62f5; |
|||
} |
|||
|
|||
/* Atelier-Seaside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #ad2bee; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #131513; |
|||
color: #8ca68c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Seaside Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Seaside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #809980; |
|||
} |
|||
|
|||
/* Atelier-Seaside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e6193c; |
|||
} |
|||
|
|||
/* Atelier-Seaside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #87711d; |
|||
} |
|||
|
|||
/* Atelier-Seaside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #29a329; |
|||
} |
|||
|
|||
/* Atelier-Seaside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d62f5; |
|||
} |
|||
|
|||
/* Atelier-Seaside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #ad2bee; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #131513; |
|||
color: #8ca68c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Seaside Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Seaside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #687d68; |
|||
} |
|||
|
|||
/* Atelier-Seaside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e6193c; |
|||
} |
|||
|
|||
/* Atelier-Seaside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #87711d; |
|||
} |
|||
|
|||
/* Atelier-Seaside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #29a329; |
|||
} |
|||
|
|||
/* Atelier-Seaside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d62f5; |
|||
} |
|||
|
|||
/* Atelier-Seaside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #ad2bee; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4fbf4; |
|||
color: #5e6e5e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Seaside Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Seaside Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #687d68; |
|||
} |
|||
|
|||
/* Atelier-Seaside Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #e6193c; |
|||
} |
|||
|
|||
/* Atelier-Seaside Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #87711d; |
|||
} |
|||
|
|||
/* Atelier-Seaside Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #29a329; |
|||
} |
|||
|
|||
/* Atelier-Seaside Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d62f5; |
|||
} |
|||
|
|||
/* Atelier-Seaside Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #ad2bee; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f4fbf4; |
|||
color: #5e6e5e; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Sulphurpool Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Sulphurpool Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #898ea4; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #c94922; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #c76b29; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #ac9739; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d8fd1; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6679cc; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #202746; |
|||
color: #979db4; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Sulphurpool Dark - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Sulphurpool Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #898ea4; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #c94922; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #c76b29; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #ac9739; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d8fd1; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6679cc; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #202746; |
|||
color: #979db4; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,69 +1,69 @@ |
|||
/* Base16 Atelier Sulphurpool Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Sulphurpool Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #6b7394; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #c94922; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #c76b29; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #ac9739; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d8fd1; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6679cc; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f5f7ff; |
|||
color: #5e6687; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Base16 Atelier Sulphurpool Light - Theme */ |
|||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
|||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
|||
|
|||
/* Atelier-Sulphurpool Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #6b7394; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #c94922; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Orange */ |
|||
.hljs-number, |
|||
.hljs-meta, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #c76b29; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #ac9739; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #3d8fd1; |
|||
} |
|||
|
|||
/* Atelier-Sulphurpool Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #6679cc; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #f5f7ff; |
|||
color: #5e6687; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,96 +1,96 @@ |
|||
/* |
|||
|
|||
Atom One Dark by Daniel Gamage |
|||
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax |
|||
|
|||
base: #282c34 |
|||
mono-1: #abb2bf |
|||
mono-2: #818896 |
|||
mono-3: #5c6370 |
|||
hue-1: #56b6c2 |
|||
hue-2: #61aeee |
|||
hue-3: #c678dd |
|||
hue-4: #98c379 |
|||
hue-5: #e06c75 |
|||
hue-5-2: #be5046 |
|||
hue-6: #d19a66 |
|||
hue-6-2: #e6c07b |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #abb2bf; |
|||
background: #282c34; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5c6370; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-keyword, |
|||
.hljs-formula { |
|||
color: #c678dd; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion, |
|||
.hljs-subst { |
|||
color: #e06c75; |
|||
} |
|||
|
|||
.hljs-literal { |
|||
color: #56b6c2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-regexp, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-meta-string { |
|||
color: #98c379; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-class .hljs-title { |
|||
color: #e6c07b; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-type, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-number { |
|||
color: #d19a66; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-meta, |
|||
.hljs-selector-id, |
|||
.hljs-title { |
|||
color: #61aeee; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
/* |
|||
|
|||
Atom One Dark by Daniel Gamage |
|||
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax |
|||
|
|||
base: #282c34 |
|||
mono-1: #abb2bf |
|||
mono-2: #818896 |
|||
mono-3: #5c6370 |
|||
hue-1: #56b6c2 |
|||
hue-2: #61aeee |
|||
hue-3: #c678dd |
|||
hue-4: #98c379 |
|||
hue-5: #e06c75 |
|||
hue-5-2: #be5046 |
|||
hue-6: #d19a66 |
|||
hue-6-2: #e6c07b |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #abb2bf; |
|||
background: #282c34; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #5c6370; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-keyword, |
|||
.hljs-formula { |
|||
color: #c678dd; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion, |
|||
.hljs-subst { |
|||
color: #e06c75; |
|||
} |
|||
|
|||
.hljs-literal { |
|||
color: #56b6c2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-regexp, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-meta-string { |
|||
color: #98c379; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-class .hljs-title { |
|||
color: #e6c07b; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-type, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-number { |
|||
color: #d19a66; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-meta, |
|||
.hljs-selector-id, |
|||
.hljs-title { |
|||
color: #61aeee; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
@ -1,96 +1,96 @@ |
|||
/* |
|||
|
|||
Atom One Light by Daniel Gamage |
|||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax |
|||
|
|||
base: #fafafa |
|||
mono-1: #383a42 |
|||
mono-2: #686b77 |
|||
mono-3: #a0a1a7 |
|||
hue-1: #0184bb |
|||
hue-2: #4078f2 |
|||
hue-3: #a626a4 |
|||
hue-4: #50a14f |
|||
hue-5: #e45649 |
|||
hue-5-2: #c91243 |
|||
hue-6: #986801 |
|||
hue-6-2: #c18401 |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #383a42; |
|||
background: #fafafa; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #a0a1a7; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-keyword, |
|||
.hljs-formula { |
|||
color: #a626a4; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion, |
|||
.hljs-subst { |
|||
color: #e45649; |
|||
} |
|||
|
|||
.hljs-literal { |
|||
color: #0184bb; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-regexp, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-meta-string { |
|||
color: #50a14f; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-class .hljs-title { |
|||
color: #c18401; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-type, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-number { |
|||
color: #986801; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-meta, |
|||
.hljs-selector-id, |
|||
.hljs-title { |
|||
color: #4078f2; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
/* |
|||
|
|||
Atom One Light by Daniel Gamage |
|||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax |
|||
|
|||
base: #fafafa |
|||
mono-1: #383a42 |
|||
mono-2: #686b77 |
|||
mono-3: #a0a1a7 |
|||
hue-1: #0184bb |
|||
hue-2: #4078f2 |
|||
hue-3: #a626a4 |
|||
hue-4: #50a14f |
|||
hue-5: #e45649 |
|||
hue-5-2: #c91243 |
|||
hue-6: #986801 |
|||
hue-6-2: #c18401 |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #383a42; |
|||
background: #fafafa; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #a0a1a7; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-keyword, |
|||
.hljs-formula { |
|||
color: #a626a4; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-tag, |
|||
.hljs-deletion, |
|||
.hljs-subst { |
|||
color: #e45649; |
|||
} |
|||
|
|||
.hljs-literal { |
|||
color: #0184bb; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-regexp, |
|||
.hljs-addition, |
|||
.hljs-attribute, |
|||
.hljs-meta-string { |
|||
color: #50a14f; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-class .hljs-title { |
|||
color: #c18401; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-type, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-number { |
|||
color: #986801; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-meta, |
|||
.hljs-selector-id, |
|||
.hljs-title { |
|||
color: #4078f2; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
@ -1,64 +1,64 @@ |
|||
/* |
|||
|
|||
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background:#b7a68e url(./brown-papersq.png); |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color:#005599; |
|||
font-weight:bold; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #363c69; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-name { |
|||
color: #2c009f; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #802022; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background:#b7a68e url(./brown-papersq.png); |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color:#005599; |
|||
font-weight:bold; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #363c69; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-name { |
|||
color: #2c009f; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #802022; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,60 +1,60 @@ |
|||
/* |
|||
codepen.io Embed Theme |
|||
Author: Justin Perry <http://github.com/ourmaninamsterdam> |
|||
Original theme - https://github.com/chriskempson/tomorrow-theme |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #222; |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-regexp, |
|||
.hljs-meta, |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-params, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-deletion { |
|||
color: #ab875d; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-type, |
|||
.hljs-attribute { |
|||
color: #9b869b; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-addition { |
|||
color: #8f9c6c; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
codepen.io Embed Theme |
|||
Author: Justin Perry <http://github.com/ourmaninamsterdam> |
|||
Original theme - https://github.com/chriskempson/tomorrow-theme |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #222; |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-regexp, |
|||
.hljs-meta, |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-params, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-deletion { |
|||
color: #ab875d; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-type, |
|||
.hljs-attribute { |
|||
color: #9b869b; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-addition { |
|||
color: #8f9c6c; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,71 +1,71 @@ |
|||
/* |
|||
|
|||
Colorbrewer theme |
|||
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> |
|||
Ported by Fabrício Tavares de Oliveira |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-meta, |
|||
.hljs-symbol, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #756bb1; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #636363; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-bullet, |
|||
.hljs-link { |
|||
color: #31a354; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-variable { |
|||
color: #88f; |
|||
} |
|||
|
|||
|
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-strong { |
|||
color: #3182bd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #e6550d; |
|||
} |
|||
/* |
|||
|
|||
Colorbrewer theme |
|||
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> |
|||
Ported by Fabrício Tavares de Oliveira |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-meta, |
|||
.hljs-symbol, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #756bb1; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #636363; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-bullet, |
|||
.hljs-link { |
|||
color: #31a354; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-variable { |
|||
color: #88f; |
|||
} |
|||
|
|||
|
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-strong { |
|||
color: #3182bd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #e6550d; |
|||
} |
|||
|
|||
@ -1,77 +1,77 @@ |
|||
/* |
|||
|
|||
Darcula color scheme from the JetBrains family of IDEs |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #2b2b2b; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #bababa; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-link, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #6896ba; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-selector-class { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-attribute, |
|||
.hljs-name, |
|||
.hljs-variable { |
|||
color: #cb7832; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #b9b9b9; |
|||
} |
|||
|
|||
.hljs-string { |
|||
color: #6a8759; |
|||
} |
|||
|
|||
.hljs-subst, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-symbol, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #e0c46c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #7f7f7f; |
|||
} |
|||
/* |
|||
|
|||
Darcula color scheme from the JetBrains family of IDEs |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #2b2b2b; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #bababa; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-link, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #6896ba; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-selector-class { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-attribute, |
|||
.hljs-name, |
|||
.hljs-variable { |
|||
color: #cb7832; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #b9b9b9; |
|||
} |
|||
|
|||
.hljs-string { |
|||
color: #6a8759; |
|||
} |
|||
|
|||
.hljs-subst, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-symbol, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #e0c46c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #7f7f7f; |
|||
} |
|||
|
|||
@ -1,63 +1,63 @@ |
|||
/* |
|||
|
|||
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #444; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-section, |
|||
.hljs-link { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #ddd; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #d88; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #444; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-section, |
|||
.hljs-link { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #ddd; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #d88; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
/* |
|||
Deprecated due to a typo in the name and left here for compatibility purpose only. |
|||
Please use darcula.css instead. |
|||
*/ |
|||
|
|||
@import url('darcula.css'); |
|||
/* |
|||
Deprecated due to a typo in the name and left here for compatibility purpose only. |
|||
Please use darcula.css instead. |
|||
*/ |
|||
|
|||
@import url('darcula.css'); |
|||
|
|||
@ -1,99 +1,99 @@ |
|||
/* |
|||
|
|||
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; |
|||
} |
|||
/* |
|||
|
|||
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; |
|||
} |
|||
|
|||
@ -1,97 +1,97 @@ |
|||
/* |
|||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #000; |
|||
background: #f8f8ff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #408080; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-subst { |
|||
color: #954121; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #40a070; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag { |
|||
color: #219161; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-section, |
|||
.hljs-type { |
|||
color: #19469d; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #00f; |
|||
} |
|||
|
|||
.hljs-title { |
|||
color: #458; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-attribute { |
|||
color: #000080; |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #b68; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #fdd; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #dfd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #000; |
|||
background: #f8f8ff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #408080; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-subst { |
|||
color: #954121; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #40a070; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag { |
|||
color: #219161; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-section, |
|||
.hljs-type { |
|||
color: #19469d; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #00f; |
|||
} |
|||
|
|||
.hljs-title { |
|||
color: #458; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-attribute { |
|||
color: #000080; |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #b68; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #fdd; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #dfd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,76 +1,76 @@ |
|||
/* |
|||
|
|||
Dracula Theme v1.2.0 |
|||
|
|||
https://github.com/zenorocha/dracula-theme |
|||
|
|||
Copyright 2015, All rights reserved |
|||
|
|||
Code licensed under the MIT license |
|||
http://zenorocha.mit-license.org |
|||
|
|||
@author Éverton Ribeiro <nuxlli@gmail.com> |
|||
@author Zeno Rocha <hi@zenorocha.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282a36; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-section, |
|||
.hljs-link { |
|||
color: #8be9fd; |
|||
} |
|||
|
|||
.hljs-function .hljs-keyword { |
|||
color: #ff79c6; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #f1fa8c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #6272a4; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Dracula Theme v1.2.0 |
|||
|
|||
https://github.com/zenorocha/dracula-theme |
|||
|
|||
Copyright 2015, All rights reserved |
|||
|
|||
Code licensed under the MIT license |
|||
http://zenorocha.mit-license.org |
|||
|
|||
@author Éverton Ribeiro <nuxlli@gmail.com> |
|||
@author Zeno Rocha <hi@zenorocha.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282a36; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-section, |
|||
.hljs-link { |
|||
color: #8be9fd; |
|||
} |
|||
|
|||
.hljs-function .hljs-keyword { |
|||
color: #ff79c6; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-type, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #f1fa8c; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #6272a4; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,71 +1,71 @@ |
|||
/* |
|||
|
|||
FAR Style (c) MajestiC <majestic2k@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000080; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #0ff; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #ff0; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-variable { |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-doctag, |
|||
.hljs-deletion { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-link { |
|||
color: #0f0; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
FAR Style (c) MajestiC <majestic2k@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000080; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #0ff; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition { |
|||
color: #ff0; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-variable { |
|||
color: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-doctag, |
|||
.hljs-deletion { |
|||
color: #888; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-link { |
|||
color: #0f0; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,88 +1,88 @@ |
|||
/* |
|||
Description: Foundation 4 docs style for highlight.js |
|||
Author: Dan Allen <dan.j.allen@gmail.com> |
|||
Website: http://foundation.zurb.com/docs/ |
|||
Version: 1.0 |
|||
Date: 2013-04-02 |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #eee; color: black; |
|||
} |
|||
|
|||
.hljs-link, |
|||
.hljs-emphasis, |
|||
.hljs-attribute, |
|||
.hljs-addition { |
|||
color: #070; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-string, |
|||
.hljs-deletion { |
|||
color: #d14; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-quote, |
|||
.hljs-comment { |
|||
color: #998; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title { |
|||
color: #900; |
|||
} |
|||
|
|||
.hljs-class .hljs-title, |
|||
.hljs-type { |
|||
color: #458; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #336699; |
|||
} |
|||
|
|||
.hljs-bullet { |
|||
color: #997700; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #3344bb; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #099; |
|||
} |
|||
|
|||
.hljs-regexp { |
|||
background-color: #fff0ff; |
|||
color: #880088; |
|||
} |
|||
|
|||
.hljs-symbol { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #007700; |
|||
} |
|||
/* |
|||
Description: Foundation 4 docs style for highlight.js |
|||
Author: Dan Allen <dan.j.allen@gmail.com> |
|||
Website: http://foundation.zurb.com/docs/ |
|||
Version: 1.0 |
|||
Date: 2013-04-02 |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #eee; color: black; |
|||
} |
|||
|
|||
.hljs-link, |
|||
.hljs-emphasis, |
|||
.hljs-attribute, |
|||
.hljs-addition { |
|||
color: #070; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-string, |
|||
.hljs-deletion { |
|||
color: #d14; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-quote, |
|||
.hljs-comment { |
|||
color: #998; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-title { |
|||
color: #900; |
|||
} |
|||
|
|||
.hljs-class .hljs-title, |
|||
.hljs-type { |
|||
color: #458; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #336699; |
|||
} |
|||
|
|||
.hljs-bullet { |
|||
color: #997700; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #3344bb; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #099; |
|||
} |
|||
|
|||
.hljs-regexp { |
|||
background-color: #fff0ff; |
|||
color: #880088; |
|||
} |
|||
|
|||
.hljs-symbol { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #007700; |
|||
} |
|||
|
|||
@ -1,71 +1,71 @@ |
|||
/** |
|||
* GitHub Gist Theme |
|||
* Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: white; |
|||
padding: 0.5em; |
|||
color: #333333; |
|||
overflow-x: auto; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta { |
|||
color: #969896; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-strong, |
|||
.hljs-emphasis, |
|||
.hljs-quote { |
|||
color: #df5000; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type { |
|||
color: #a71d5d; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name { |
|||
color: #63a35c; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333333; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-attr, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #795da3; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #55a532; |
|||
background-color: #eaffea; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #bd2c00; |
|||
background-color: #ffecec; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
/** |
|||
* GitHub Gist Theme |
|||
* Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: white; |
|||
padding: 0.5em; |
|||
color: #333333; |
|||
overflow-x: auto; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta { |
|||
color: #969896; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-strong, |
|||
.hljs-emphasis, |
|||
.hljs-quote { |
|||
color: #df5000; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type { |
|||
color: #a71d5d; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name { |
|||
color: #63a35c; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333333; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-attr, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #795da3; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #55a532; |
|||
background-color: #eaffea; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #bd2c00; |
|||
background-color: #ffecec; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
@ -1,99 +1,99 @@ |
|||
/* |
|||
|
|||
github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #333; |
|||
background: #f8f8f8; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #998; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-subst { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag .hljs-attr { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag { |
|||
color: #d14; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-id { |
|||
color: #900; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-class .hljs-title { |
|||
color: #458; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-attribute { |
|||
color: #000080; |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #009926; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #fdd; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #dfd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #333; |
|||
background: #f8f8f8; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #998; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-subst { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag .hljs-attr { |
|||
color: #008080; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag { |
|||
color: #d14; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-id { |
|||
color: #900; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-type, |
|||
.hljs-class .hljs-title { |
|||
color: #458; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-attribute { |
|||
color: #000080; |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #009926; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet { |
|||
color: #990073; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #fdd; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #dfd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,89 +1,89 @@ |
|||
/* |
|||
|
|||
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: white; |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #800; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-name { |
|||
color: #008; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #660; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-regexp { |
|||
color: #080; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-meta, |
|||
.hljs-number, |
|||
.hljs-link { |
|||
color: #066; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-attr, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-params { |
|||
color: #606; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-subst { |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background-color: #eee; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #9B703F |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #baeeba; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ffc8bd; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: white; |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #800; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-section, |
|||
.hljs-title, |
|||
.hljs-name { |
|||
color: #008; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #660; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-regexp { |
|||
color: #080; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-meta, |
|||
.hljs-number, |
|||
.hljs-link { |
|||
color: #066; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-doctag, |
|||
.hljs-type, |
|||
.hljs-attr, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-params { |
|||
color: #606; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-subst { |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background-color: #eee; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #9B703F |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #baeeba; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #ffc8bd; |
|||
} |
|||
|
|||
.hljs-doctag, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,101 +1,101 @@ |
|||
/* |
|||
|
|||
grayscale style (c) MY Sun <simonmysun@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #333; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-subst { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-formula { |
|||
color: #333; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-id { |
|||
color: #000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-class .hljs-title, |
|||
.hljs-type, |
|||
.hljs-name { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs-regexp { |
|||
color: #333; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link { |
|||
color: #000; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #000; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #fff; |
|||
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #000; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
grayscale style (c) MY Sun <simonmysun@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #333; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-subst { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-literal { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-formula { |
|||
color: #333; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-id { |
|||
color: #000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-class .hljs-title, |
|||
.hljs-type, |
|||
.hljs-name { |
|||
color: #333; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333; |
|||
} |
|||
|
|||
.hljs-regexp { |
|||
color: #333; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link { |
|||
color: #000; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #000; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #999; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #fff; |
|||
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #000; |
|||
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,108 +1,108 @@ |
|||
/* |
|||
|
|||
Gruvbox style (dark) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282828; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #ebdbb2; |
|||
} |
|||
|
|||
/* Gruvbox Red */ |
|||
.hljs-deletion, |
|||
.hljs-formula, |
|||
.hljs-keyword, |
|||
.hljs-link, |
|||
.hljs-selector-tag { |
|||
color: #fb4934; |
|||
} |
|||
|
|||
/* Gruvbox Blue */ |
|||
.hljs-built_in, |
|||
.hljs-emphasis, |
|||
.hljs-name, |
|||
.hljs-quote, |
|||
.hljs-strong, |
|||
.hljs-title, |
|||
.hljs-variable { |
|||
color: #83a598; |
|||
} |
|||
|
|||
/* Gruvbox Yellow */ |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-template-tag, |
|||
.hljs-type { |
|||
color: #fabd2f; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-builtin-name, |
|||
.hljs-doctag, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
/* Gruvbox Orange */ |
|||
.hljs-code, |
|||
.hljs-meta, |
|||
.hljs-regexp, |
|||
.hljs-selector-id, |
|||
.hljs-template-variable { |
|||
color: #fe8019; |
|||
} |
|||
|
|||
/* Gruvbox Green */ |
|||
.hljs-addition, |
|||
.hljs-meta-string, |
|||
.hljs-section, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-class, |
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #b8bb26; |
|||
} |
|||
|
|||
/* Gruvbox Aqua */ |
|||
.hljs-attribute, |
|||
.hljs-bullet, |
|||
.hljs-class, |
|||
.hljs-function, |
|||
.hljs-function .hljs-keyword, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-pseudo, |
|||
.hljs-tag { |
|||
color: #8ec07c; |
|||
} |
|||
|
|||
/* Gruvbox Gray */ |
|||
.hljs-comment { |
|||
color: #928374; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-link_label, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #d3869b; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-strong, |
|||
.hljs-tag { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
Gruvbox style (dark) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282828; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #ebdbb2; |
|||
} |
|||
|
|||
/* Gruvbox Red */ |
|||
.hljs-deletion, |
|||
.hljs-formula, |
|||
.hljs-keyword, |
|||
.hljs-link, |
|||
.hljs-selector-tag { |
|||
color: #fb4934; |
|||
} |
|||
|
|||
/* Gruvbox Blue */ |
|||
.hljs-built_in, |
|||
.hljs-emphasis, |
|||
.hljs-name, |
|||
.hljs-quote, |
|||
.hljs-strong, |
|||
.hljs-title, |
|||
.hljs-variable { |
|||
color: #83a598; |
|||
} |
|||
|
|||
/* Gruvbox Yellow */ |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-template-tag, |
|||
.hljs-type { |
|||
color: #fabd2f; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-builtin-name, |
|||
.hljs-doctag, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
/* Gruvbox Orange */ |
|||
.hljs-code, |
|||
.hljs-meta, |
|||
.hljs-regexp, |
|||
.hljs-selector-id, |
|||
.hljs-template-variable { |
|||
color: #fe8019; |
|||
} |
|||
|
|||
/* Gruvbox Green */ |
|||
.hljs-addition, |
|||
.hljs-meta-string, |
|||
.hljs-section, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-class, |
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #b8bb26; |
|||
} |
|||
|
|||
/* Gruvbox Aqua */ |
|||
.hljs-attribute, |
|||
.hljs-bullet, |
|||
.hljs-class, |
|||
.hljs-function, |
|||
.hljs-function .hljs-keyword, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-pseudo, |
|||
.hljs-tag { |
|||
color: #8ec07c; |
|||
} |
|||
|
|||
/* Gruvbox Gray */ |
|||
.hljs-comment { |
|||
color: #928374; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-link_label, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #d3869b; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-strong, |
|||
.hljs-tag { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,108 +1,108 @@ |
|||
/* |
|||
|
|||
Gruvbox style (light) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #fbf1c7; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #3c3836; |
|||
} |
|||
|
|||
/* Gruvbox Red */ |
|||
.hljs-deletion, |
|||
.hljs-formula, |
|||
.hljs-keyword, |
|||
.hljs-link, |
|||
.hljs-selector-tag { |
|||
color: #9d0006; |
|||
} |
|||
|
|||
/* Gruvbox Blue */ |
|||
.hljs-built_in, |
|||
.hljs-emphasis, |
|||
.hljs-name, |
|||
.hljs-quote, |
|||
.hljs-strong, |
|||
.hljs-title, |
|||
.hljs-variable { |
|||
color: #076678; |
|||
} |
|||
|
|||
/* Gruvbox Yellow */ |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-template-tag, |
|||
.hljs-type { |
|||
color: #b57614; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-builtin-name, |
|||
.hljs-doctag, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
/* Gruvbox Orange */ |
|||
.hljs-code, |
|||
.hljs-meta, |
|||
.hljs-regexp, |
|||
.hljs-selector-id, |
|||
.hljs-template-variable { |
|||
color: #af3a03; |
|||
} |
|||
|
|||
/* Gruvbox Green */ |
|||
.hljs-addition, |
|||
.hljs-meta-string, |
|||
.hljs-section, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-class, |
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #79740e; |
|||
} |
|||
|
|||
/* Gruvbox Aqua */ |
|||
.hljs-attribute, |
|||
.hljs-bullet, |
|||
.hljs-class, |
|||
.hljs-function, |
|||
.hljs-function .hljs-keyword, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-pseudo, |
|||
.hljs-tag { |
|||
color: #427b58; |
|||
} |
|||
|
|||
/* Gruvbox Gray */ |
|||
.hljs-comment { |
|||
color: #928374; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-link_label, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-strong, |
|||
.hljs-tag { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
Gruvbox style (light) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #fbf1c7; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #3c3836; |
|||
} |
|||
|
|||
/* Gruvbox Red */ |
|||
.hljs-deletion, |
|||
.hljs-formula, |
|||
.hljs-keyword, |
|||
.hljs-link, |
|||
.hljs-selector-tag { |
|||
color: #9d0006; |
|||
} |
|||
|
|||
/* Gruvbox Blue */ |
|||
.hljs-built_in, |
|||
.hljs-emphasis, |
|||
.hljs-name, |
|||
.hljs-quote, |
|||
.hljs-strong, |
|||
.hljs-title, |
|||
.hljs-variable { |
|||
color: #076678; |
|||
} |
|||
|
|||
/* Gruvbox Yellow */ |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-template-tag, |
|||
.hljs-type { |
|||
color: #b57614; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-builtin-name, |
|||
.hljs-doctag, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
/* Gruvbox Orange */ |
|||
.hljs-code, |
|||
.hljs-meta, |
|||
.hljs-regexp, |
|||
.hljs-selector-id, |
|||
.hljs-template-variable { |
|||
color: #af3a03; |
|||
} |
|||
|
|||
/* Gruvbox Green */ |
|||
.hljs-addition, |
|||
.hljs-meta-string, |
|||
.hljs-section, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-class, |
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #79740e; |
|||
} |
|||
|
|||
/* Gruvbox Aqua */ |
|||
.hljs-attribute, |
|||
.hljs-bullet, |
|||
.hljs-class, |
|||
.hljs-function, |
|||
.hljs-function .hljs-keyword, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-pseudo, |
|||
.hljs-tag { |
|||
color: #427b58; |
|||
} |
|||
|
|||
/* Gruvbox Gray */ |
|||
.hljs-comment { |
|||
color: #928374; |
|||
} |
|||
|
|||
/* Gruvbox Purple */ |
|||
.hljs-link_label, |
|||
.hljs-literal, |
|||
.hljs-number { |
|||
color: #8f3f71; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-strong, |
|||
.hljs-tag { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* |
|||
* Hopscotch |
|||
* by Jan T. Sott |
|||
* https://github.com/idleberg/Hopscotch |
|||
* |
|||
* This work is licensed under the Creative Commons CC0 1.0 Universal License |
|||
*/ |
|||
|
|||
/* Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #989498; |
|||
} |
|||
|
|||
/* Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-deletion { |
|||
color: #dd464c; |
|||
} |
|||
|
|||
/* Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #fd8b19; |
|||
} |
|||
|
|||
/* Yellow */ |
|||
.hljs-class .hljs-title { |
|||
color: #fdcc59; |
|||
} |
|||
|
|||
/* Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #8fc13e; |
|||
} |
|||
|
|||
/* Aqua */ |
|||
.hljs-meta { |
|||
color: #149b93; |
|||
} |
|||
|
|||
/* Blue */ |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-title { |
|||
color: #1290bf; |
|||
} |
|||
|
|||
/* Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #c85e7c; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: #322931; |
|||
color: #b9b5b8; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
* Hopscotch |
|||
* by Jan T. Sott |
|||
* https://github.com/idleberg/Hopscotch |
|||
* |
|||
* This work is licensed under the Creative Commons CC0 1.0 Universal License |
|||
*/ |
|||
|
|||
/* Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #989498; |
|||
} |
|||
|
|||
/* Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-attribute, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-deletion { |
|||
color: #dd464c; |
|||
} |
|||
|
|||
/* Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params { |
|||
color: #fd8b19; |
|||
} |
|||
|
|||
/* Yellow */ |
|||
.hljs-class .hljs-title { |
|||
color: #fdcc59; |
|||
} |
|||
|
|||
/* Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #8fc13e; |
|||
} |
|||
|
|||
/* Aqua */ |
|||
.hljs-meta { |
|||
color: #149b93; |
|||
} |
|||
|
|||
/* Blue */ |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-title { |
|||
color: #1290bf; |
|||
} |
|||
|
|||
/* Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #c85e7c; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: #322931; |
|||
color: #b9b5b8; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,102 +1,102 @@ |
|||
/* |
|||
|
|||
vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid) |
|||
|
|||
*/ |
|||
|
|||
/*background color*/ |
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #1d1f21; |
|||
} |
|||
|
|||
/*selection color*/ |
|||
.hljs::selection, |
|||
.hljs span::selection { |
|||
background: #373b41; |
|||
} |
|||
|
|||
.hljs::-moz-selection, |
|||
.hljs span::-moz-selection { |
|||
background: #373b41; |
|||
} |
|||
|
|||
/*foreground color*/ |
|||
.hljs { |
|||
color: #c5c8c6; |
|||
} |
|||
|
|||
/*color: fg_yellow*/ |
|||
.hljs-title, |
|||
.hljs-name { |
|||
color: #f0c674; |
|||
} |
|||
|
|||
/*color: fg_comment*/ |
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-meta .hljs-keyword { |
|||
color: #707880; |
|||
} |
|||
|
|||
/*color: fg_red*/ |
|||
.hljs-number, |
|||
.hljs-symbol, |
|||
.hljs-literal, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #cc6666 |
|||
} |
|||
|
|||
/*color: fg_green*/ |
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-addition, |
|||
.hljs-regexp, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #b5bd68; |
|||
} |
|||
|
|||
/*color: fg_purple*/ |
|||
.hljs-attribute, |
|||
.hljs-code, |
|||
.hljs-selector-id { |
|||
color: #b294bb; |
|||
} |
|||
|
|||
/*color: fg_blue*/ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-bullet, |
|||
.hljs-tag { |
|||
color: #81a2be; |
|||
} |
|||
|
|||
/*color: fg_aqua*/ |
|||
.hljs-subst, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #8abeb7; |
|||
} |
|||
|
|||
/*color: fg_orange*/ |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-quote, |
|||
.hljs-section, |
|||
.hljs-selector-class { |
|||
color: #de935f; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid) |
|||
|
|||
*/ |
|||
|
|||
/*background color*/ |
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #1d1f21; |
|||
} |
|||
|
|||
/*selection color*/ |
|||
.hljs::selection, |
|||
.hljs span::selection { |
|||
background: #373b41; |
|||
} |
|||
|
|||
.hljs::-moz-selection, |
|||
.hljs span::-moz-selection { |
|||
background: #373b41; |
|||
} |
|||
|
|||
/*foreground color*/ |
|||
.hljs { |
|||
color: #c5c8c6; |
|||
} |
|||
|
|||
/*color: fg_yellow*/ |
|||
.hljs-title, |
|||
.hljs-name { |
|||
color: #f0c674; |
|||
} |
|||
|
|||
/*color: fg_comment*/ |
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-meta .hljs-keyword { |
|||
color: #707880; |
|||
} |
|||
|
|||
/*color: fg_red*/ |
|||
.hljs-number, |
|||
.hljs-symbol, |
|||
.hljs-literal, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #cc6666 |
|||
} |
|||
|
|||
/*color: fg_green*/ |
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-addition, |
|||
.hljs-regexp, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #b5bd68; |
|||
} |
|||
|
|||
/*color: fg_purple*/ |
|||
.hljs-attribute, |
|||
.hljs-code, |
|||
.hljs-selector-id { |
|||
color: #b294bb; |
|||
} |
|||
|
|||
/*color: fg_blue*/ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-bullet, |
|||
.hljs-tag { |
|||
color: #81a2be; |
|||
} |
|||
|
|||
/*color: fg_aqua*/ |
|||
.hljs-subst, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #8abeb7; |
|||
} |
|||
|
|||
/*color: fg_orange*/ |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-quote, |
|||
.hljs-section, |
|||
.hljs-selector-class { |
|||
color: #de935f; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,97 +1,97 @@ |
|||
/* |
|||
|
|||
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #000; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs-subst, |
|||
.hljs-title { |
|||
font-weight: normal; |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #808080; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #808000; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
background: #efefef; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-literal, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
font-weight: bold; |
|||
color: #000080; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
font-weight: bold; |
|||
color: #0000ff; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-string { |
|||
color: #008000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-formula { |
|||
color: #000; |
|||
background: #d0eded; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #660e7a; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #baeeba; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #ffc8bd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #000; |
|||
background: #fff; |
|||
} |
|||
|
|||
.hljs-subst, |
|||
.hljs-title { |
|||
font-weight: normal; |
|||
color: #000; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #808080; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #808000; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
background: #efefef; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-literal, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
font-weight: bold; |
|||
color: #000080; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
font-weight: bold; |
|||
color: #0000ff; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
font-weight: normal; |
|||
} |
|||
|
|||
.hljs-string { |
|||
color: #008000; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-formula { |
|||
color: #000; |
|||
background: #d0eded; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-doctag { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #660e7a; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background: #baeeba; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background: #ffc8bd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,73 +1,73 @@ |
|||
/* |
|||
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru> |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000; |
|||
color: #f8f8f8; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta { |
|||
color: #7c7c7c; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-tag, |
|||
.hljs-name { |
|||
color: #96cbfe; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-selector-id { |
|||
color: #ffffb6; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition { |
|||
color: #a8ff60; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
color: #daefa3; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #e9c062; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-doctag { |
|||
color: #ffffb6; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-literal { |
|||
color: #c6c5fe; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-deletion { |
|||
color:#ff73fd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru> |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000; |
|||
color: #f8f8f8; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-meta { |
|||
color: #7c7c7c; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-tag, |
|||
.hljs-name { |
|||
color: #96cbfe; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-selector-id { |
|||
color: #ffffb6; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition { |
|||
color: #a8ff60; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
color: #daefa3; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #e9c062; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-doctag { |
|||
color: #ffffb6; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-literal { |
|||
color: #c6c5fe; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-deletion { |
|||
color:#ff73fd; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,74 +1,74 @@ |
|||
/* |
|||
Name: Kimbie (dark) |
|||
Author: Jan T. Sott |
|||
License: Creative Commons Attribution-ShareAlike 4.0 Unported License |
|||
URL: https://github.com/idleberg/Kimbie-highlight.js |
|||
*/ |
|||
|
|||
/* Kimbie Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #d6baad; |
|||
} |
|||
|
|||
/* Kimbie Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-meta { |
|||
color: #dc3958; |
|||
} |
|||
|
|||
/* Kimbie Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #f79a32; |
|||
} |
|||
|
|||
/* Kimbie Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #f06431; |
|||
} |
|||
|
|||
/* Kimbie Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #889b4a; |
|||
} |
|||
|
|||
/* Kimbie Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function { |
|||
color: #98676a; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #221a0f; |
|||
color: #d3af86; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Name: Kimbie (dark) |
|||
Author: Jan T. Sott |
|||
License: Creative Commons Attribution-ShareAlike 4.0 Unported License |
|||
URL: https://github.com/idleberg/Kimbie-highlight.js |
|||
*/ |
|||
|
|||
/* Kimbie Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #d6baad; |
|||
} |
|||
|
|||
/* Kimbie Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-meta { |
|||
color: #dc3958; |
|||
} |
|||
|
|||
/* Kimbie Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #f79a32; |
|||
} |
|||
|
|||
/* Kimbie Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #f06431; |
|||
} |
|||
|
|||
/* Kimbie Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #889b4a; |
|||
} |
|||
|
|||
/* Kimbie Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function { |
|||
color: #98676a; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #221a0f; |
|||
color: #d3af86; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,74 +1,74 @@ |
|||
/* |
|||
Name: Kimbie (light) |
|||
Author: Jan T. Sott |
|||
License: Creative Commons Attribution-ShareAlike 4.0 Unported License |
|||
URL: https://github.com/idleberg/Kimbie-highlight.js |
|||
*/ |
|||
|
|||
/* Kimbie Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #a57a4c; |
|||
} |
|||
|
|||
/* Kimbie Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-meta { |
|||
color: #dc3958; |
|||
} |
|||
|
|||
/* Kimbie Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #f79a32; |
|||
} |
|||
|
|||
/* Kimbie Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #f06431; |
|||
} |
|||
|
|||
/* Kimbie Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #889b4a; |
|||
} |
|||
|
|||
/* Kimbie Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function { |
|||
color: #98676a; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #fbebd4; |
|||
color: #84613d; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Name: Kimbie (light) |
|||
Author: Jan T. Sott |
|||
License: Creative Commons Attribution-ShareAlike 4.0 Unported License |
|||
URL: https://github.com/idleberg/Kimbie-highlight.js |
|||
*/ |
|||
|
|||
/* Kimbie Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #a57a4c; |
|||
} |
|||
|
|||
/* Kimbie Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-meta { |
|||
color: #dc3958; |
|||
} |
|||
|
|||
/* Kimbie Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion, |
|||
.hljs-link { |
|||
color: #f79a32; |
|||
} |
|||
|
|||
/* Kimbie Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #f06431; |
|||
} |
|||
|
|||
/* Kimbie Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #889b4a; |
|||
} |
|||
|
|||
/* Kimbie Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function { |
|||
color: #98676a; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #fbebd4; |
|||
color: #84613d; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,70 +1,70 @@ |
|||
/* |
|||
Description: Magula style for highligh.js |
|||
Author: Ruslan Keba <rukeba@gmail.com> |
|||
Website: http://rukeba.com/ |
|||
Version: 1.0 |
|||
Date: 2009-01-03 |
|||
Music: Aphex Twin / Xtal |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background-color: #f4f4f4; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #050; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-link { |
|||
color: #800; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #00e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-tag, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
color: navy; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Description: Magula style for highligh.js |
|||
Author: Ruslan Keba <rukeba@gmail.com> |
|||
Website: http://rukeba.com/ |
|||
Version: 1.0 |
|||
Date: 2009-01-03 |
|||
Music: Aphex Twin / Xtal |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background-color: #f4f4f4; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: black; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #050; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #777; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-link { |
|||
color: #800; |
|||
} |
|||
|
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #00e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-tag, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
color: navy; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,59 +1,59 @@ |
|||
/* |
|||
Five-color theme from a single blue hue. |
|||
*/ |
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #eaeef3; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #00193a; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-comment { |
|||
color: #738191; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-addition, |
|||
.hljs-tag, |
|||
.hljs-quote, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #0048ab; |
|||
} |
|||
|
|||
.hljs-meta, |
|||
.hljs-subst, |
|||
.hljs-symbol, |
|||
.hljs-regexp, |
|||
.hljs-attribute, |
|||
.hljs-deletion, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-bullet { |
|||
color: #4c81c9; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
Five-color theme from a single blue hue. |
|||
*/ |
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #eaeef3; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #00193a; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-doctag, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-comment { |
|||
color: #738191; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-addition, |
|||
.hljs-tag, |
|||
.hljs-quote, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #0048ab; |
|||
} |
|||
|
|||
.hljs-meta, |
|||
.hljs-subst, |
|||
.hljs-symbol, |
|||
.hljs-regexp, |
|||
.hljs-attribute, |
|||
.hljs-deletion, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-link, |
|||
.hljs-bullet { |
|||
color: #4c81c9; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* |
|||
|
|||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #23241f; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-tag, |
|||
.hljs-subst { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-link { |
|||
color: #ae81ff; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-class { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-name, |
|||
.hljs-attr { |
|||
color: #f92672; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-attribute { |
|||
color: #66d9ef; |
|||
} |
|||
|
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #e6db74; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #75715e; |
|||
} |
|||
/* |
|||
|
|||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #23241f; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-tag, |
|||
.hljs-subst { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal, |
|||
.hljs-link { |
|||
color: #ae81ff; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-selector-class { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-name, |
|||
.hljs-attr { |
|||
color: #f92672; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-attribute { |
|||
color: #66d9ef; |
|||
} |
|||
|
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #f8f8f2; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #e6db74; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #75715e; |
|||
} |
|||
|
|||
@ -1,70 +1,70 @@ |
|||
/* |
|||
Monokai style - ported by Luigi Maselli - http://grigio.org |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #272822; color: #ddd; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-strong, |
|||
.hljs-name { |
|||
color: #f92672; |
|||
} |
|||
|
|||
.hljs-code { |
|||
color: #66d9ef; |
|||
} |
|||
|
|||
.hljs-class .hljs-title { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #bf79db; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-emphasis, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #75715e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-selector-id { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Monokai style - ported by Luigi Maselli - http://grigio.org |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #272822; color: #ddd; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-strong, |
|||
.hljs-name { |
|||
color: #f92672; |
|||
} |
|||
|
|||
.hljs-code { |
|||
color: #66d9ef; |
|||
} |
|||
|
|||
.hljs-class .hljs-title { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-attribute, |
|||
.hljs-symbol, |
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #bf79db; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-emphasis, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #a6e22e; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #75715e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-selector-id { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,88 +1,88 @@ |
|||
/** |
|||
* Obsidian style |
|||
* ported by Alexander Marenin (http://github.com/ioncreature) |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282b2e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-selector-id { |
|||
color: #93c763; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #ffcd22; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #e0e2e4; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #668bb0; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-class .hljs-title, |
|||
.hljs-section { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #d39745; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #557182; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-emphasis, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #8cbbad; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #ec7600; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion { |
|||
color: #818e96; |
|||
} |
|||
|
|||
.hljs-selector-class { |
|||
color: #A082BD |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/** |
|||
* Obsidian style |
|||
* ported by Alexander Marenin (http://github.com/ioncreature) |
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #282b2e; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-selector-id { |
|||
color: #93c763; |
|||
} |
|||
|
|||
.hljs-number { |
|||
color: #ffcd22; |
|||
} |
|||
|
|||
.hljs { |
|||
color: #e0e2e4; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #668bb0; |
|||
} |
|||
|
|||
.hljs-code, |
|||
.hljs-class .hljs-title, |
|||
.hljs-section { |
|||
color: white; |
|||
} |
|||
|
|||
.hljs-regexp, |
|||
.hljs-link { |
|||
color: #d39745; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #557182; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-emphasis, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable { |
|||
color: #8cbbad; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-symbol { |
|||
color: #ec7600; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion { |
|||
color: #818e96; |
|||
} |
|||
|
|||
.hljs-selector-class { |
|||
color: #A082BD |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,74 +1,74 @@ |
|||
/* Ocean Dark Theme */ |
|||
/* https://github.com/gavsiu */ |
|||
/* Original theme - https://github.com/chriskempson/base16 */ |
|||
|
|||
/* Ocean Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #65737e; |
|||
} |
|||
|
|||
/* Ocean Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-deletion { |
|||
color: #bf616a; |
|||
} |
|||
|
|||
/* Ocean Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-meta, |
|||
.hljs-link { |
|||
color: #d08770; |
|||
} |
|||
|
|||
/* Ocean Yellow */ |
|||
.hljs-attribute { |
|||
color: #ebcb8b; |
|||
} |
|||
|
|||
/* Ocean Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #a3be8c; |
|||
} |
|||
|
|||
/* Ocean Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #8fa1b3; |
|||
} |
|||
|
|||
/* Ocean Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b48ead; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #2b303b; |
|||
color: #c0c5ce; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* Ocean Dark Theme */ |
|||
/* https://github.com/gavsiu */ |
|||
/* Original theme - https://github.com/chriskempson/base16 */ |
|||
|
|||
/* Ocean Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #65737e; |
|||
} |
|||
|
|||
/* Ocean Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-deletion { |
|||
color: #bf616a; |
|||
} |
|||
|
|||
/* Ocean Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-meta, |
|||
.hljs-link { |
|||
color: #d08770; |
|||
} |
|||
|
|||
/* Ocean Yellow */ |
|||
.hljs-attribute { |
|||
color: #ebcb8b; |
|||
} |
|||
|
|||
/* Ocean Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #a3be8c; |
|||
} |
|||
|
|||
/* Ocean Blue */ |
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #8fa1b3; |
|||
} |
|||
|
|||
/* Ocean Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #b48ead; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #2b303b; |
|||
color: #c0c5ce; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,72 +1,72 @@ |
|||
/* |
|||
Paraíso (dark) |
|||
Created by Jan T. Sott (http://github.com/idleberg) |
|||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br) |
|||
*/ |
|||
|
|||
/* Paraíso Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #8d8687; |
|||
} |
|||
|
|||
/* Paraíso Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-meta { |
|||
color: #ef6155; |
|||
} |
|||
|
|||
/* Paraíso Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion { |
|||
color: #f99b15; |
|||
} |
|||
|
|||
/* Paraíso Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #fec418; |
|||
} |
|||
|
|||
/* Paraíso Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #48b685; |
|||
} |
|||
|
|||
/* Paraíso Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #815ba4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #2f1e2e; |
|||
color: #a39e9b; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Paraíso (dark) |
|||
Created by Jan T. Sott (http://github.com/idleberg) |
|||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br) |
|||
*/ |
|||
|
|||
/* Paraíso Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #8d8687; |
|||
} |
|||
|
|||
/* Paraíso Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-meta { |
|||
color: #ef6155; |
|||
} |
|||
|
|||
/* Paraíso Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion { |
|||
color: #f99b15; |
|||
} |
|||
|
|||
/* Paraíso Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #fec418; |
|||
} |
|||
|
|||
/* Paraíso Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #48b685; |
|||
} |
|||
|
|||
/* Paraíso Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #815ba4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #2f1e2e; |
|||
color: #a39e9b; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,72 +1,72 @@ |
|||
/* |
|||
Paraíso (light) |
|||
Created by Jan T. Sott (http://github.com/idleberg) |
|||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br) |
|||
*/ |
|||
|
|||
/* Paraíso Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #776e71; |
|||
} |
|||
|
|||
/* Paraíso Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-meta { |
|||
color: #ef6155; |
|||
} |
|||
|
|||
/* Paraíso Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion { |
|||
color: #f99b15; |
|||
} |
|||
|
|||
/* Paraíso Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #fec418; |
|||
} |
|||
|
|||
/* Paraíso Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #48b685; |
|||
} |
|||
|
|||
/* Paraíso Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #815ba4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #e7e9db; |
|||
color: #4f424c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
Paraíso (light) |
|||
Created by Jan T. Sott (http://github.com/idleberg) |
|||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br) |
|||
*/ |
|||
|
|||
/* Paraíso Comment */ |
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #776e71; |
|||
} |
|||
|
|||
/* Paraíso Red */ |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-tag, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-regexp, |
|||
.hljs-link, |
|||
.hljs-meta { |
|||
color: #ef6155; |
|||
} |
|||
|
|||
/* Paraíso Orange */ |
|||
.hljs-number, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-params, |
|||
.hljs-deletion { |
|||
color: #f99b15; |
|||
} |
|||
|
|||
/* Paraíso Yellow */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-attribute { |
|||
color: #fec418; |
|||
} |
|||
|
|||
/* Paraíso Green */ |
|||
.hljs-string, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-addition { |
|||
color: #48b685; |
|||
} |
|||
|
|||
/* Paraíso Purple */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #815ba4; |
|||
} |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
background: #e7e9db; |
|||
color: #4f424c; |
|||
padding: 0.5em; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* |
|||
|
|||
Pojoaque Style by Jason Tate |
|||
http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html |
|||
Based on Solarized Style from http://ethanschoonover.com/solarized |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #dccf8f; |
|||
background: url(./pojoaque.jpg) repeat scroll left top #181914; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #586e75; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-addition { |
|||
color: #b64926; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #468966; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-name { |
|||
color: #ffb03b; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-class .hljs-title, |
|||
.hljs-type, |
|||
.hljs-tag { |
|||
color: #b58900; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #b89859; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-subst, |
|||
.hljs-meta { |
|||
color: #cb4b16; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d3a60c; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #073642; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
Pojoaque Style by Jason Tate |
|||
http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html |
|||
Based on Solarized Style from http://ethanschoonover.com/solarized |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
color: #dccf8f; |
|||
background: url(./pojoaque.jpg) repeat scroll left top #181914; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #586e75; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-addition { |
|||
color: #b64926; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #468966; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-built_in, |
|||
.hljs-name { |
|||
color: #ffb03b; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-class .hljs-title, |
|||
.hljs-type, |
|||
.hljs-tag { |
|||
color: #b58900; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #b89859; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-link, |
|||
.hljs-subst, |
|||
.hljs-meta { |
|||
color: #cb4b16; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #d3a60c; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #073642; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
@ -1,96 +1,96 @@ |
|||
/* |
|||
|
|||
PureBASIC native IDE style ( version 1.0 - April 2016 ) |
|||
|
|||
by Tristano Ajmone <tajmone@gmail.com> |
|||
|
|||
Public Domain |
|||
|
|||
NOTE_1: PureBASIC code syntax highlighting only applies the following classes: |
|||
.hljs-comment |
|||
.hljs-function |
|||
.hljs-keywords |
|||
.hljs-string |
|||
.hljs-symbol |
|||
|
|||
Other classes are added here for the benefit of styling other languages with the look and feel of PureBASIC native IDE style. |
|||
If you need to customize a stylesheet for PureBASIC only, remove all non-relevant classes -- PureBASIC-related classes are followed by |
|||
a "--- used for PureBASIC ... ---" comment on same line. |
|||
|
|||
NOTE_2: Color names provided in comments were derived using "Name that Color" online tool: |
|||
http://chir.ag/projects/name-that-color |
|||
*/ |
|||
|
|||
.hljs { /* Common set of rules required by highlight.js (don'r remove!) */ |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #FFFFDF; /* Half and Half (approx.) */ |
|||
/* --- Uncomment to add PureBASIC native IDE styled font! |
|||
font-family: Consolas; |
|||
*/ |
|||
} |
|||
|
|||
.hljs, /* --- used for PureBASIC base color --- */ |
|||
.hljs-type, /* --- used for PureBASIC Procedures return type --- */ |
|||
.hljs-function, /* --- used for wrapping PureBASIC Procedures definitions --- */ |
|||
.hljs-name, |
|||
.hljs-number, |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-subst { |
|||
color: #000000; /* Black */ |
|||
} |
|||
|
|||
.hljs-comment, /* --- used for PureBASIC Comments --- */ |
|||
.hljs-regexp, |
|||
.hljs-section, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition { |
|||
color: #00AAAA; /* Persian Green (approx.) */ |
|||
} |
|||
|
|||
.hljs-title, /* --- used for PureBASIC Procedures Names --- */ |
|||
.hljs-tag, |
|||
.hljs-variable, |
|||
.hljs-code { |
|||
color: #006666; /* Blue Stone (approx.) */ |
|||
} |
|||
|
|||
.hljs-keyword, /* --- used for PureBASIC Keywords --- */ |
|||
.hljs-class, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-class, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #006666; /* Blue Stone (approx.) */ |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-string, /* --- used for PureBASIC Strings --- */ |
|||
.hljs-selector-attr { |
|||
color: #0080FF; /* Azure Radiance (approx.) */ |
|||
} |
|||
|
|||
.hljs-symbol, /* --- used for PureBASIC Constants --- */ |
|||
.hljs-link, |
|||
.hljs-deletion, |
|||
.hljs-attribute { |
|||
color: #924B72; /* Cannon Pink (approx.) */ |
|||
} |
|||
|
|||
.hljs-meta, |
|||
.hljs-literal, |
|||
.hljs-selector-id { |
|||
color: #924B72; /* Cannon Pink (approx.) */ |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
PureBASIC native IDE style ( version 1.0 - April 2016 ) |
|||
|
|||
by Tristano Ajmone <tajmone@gmail.com> |
|||
|
|||
Public Domain |
|||
|
|||
NOTE_1: PureBASIC code syntax highlighting only applies the following classes: |
|||
.hljs-comment |
|||
.hljs-function |
|||
.hljs-keywords |
|||
.hljs-string |
|||
.hljs-symbol |
|||
|
|||
Other classes are added here for the benefit of styling other languages with the look and feel of PureBASIC native IDE style. |
|||
If you need to customize a stylesheet for PureBASIC only, remove all non-relevant classes -- PureBASIC-related classes are followed by |
|||
a "--- used for PureBASIC ... ---" comment on same line. |
|||
|
|||
NOTE_2: Color names provided in comments were derived using "Name that Color" online tool: |
|||
http://chir.ag/projects/name-that-color |
|||
*/ |
|||
|
|||
.hljs { /* Common set of rules required by highlight.js (don'r remove!) */ |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #FFFFDF; /* Half and Half (approx.) */ |
|||
/* --- Uncomment to add PureBASIC native IDE styled font! |
|||
font-family: Consolas; |
|||
*/ |
|||
} |
|||
|
|||
.hljs, /* --- used for PureBASIC base color --- */ |
|||
.hljs-type, /* --- used for PureBASIC Procedures return type --- */ |
|||
.hljs-function, /* --- used for wrapping PureBASIC Procedures definitions --- */ |
|||
.hljs-name, |
|||
.hljs-number, |
|||
.hljs-attr, |
|||
.hljs-params, |
|||
.hljs-subst { |
|||
color: #000000; /* Black */ |
|||
} |
|||
|
|||
.hljs-comment, /* --- used for PureBASIC Comments --- */ |
|||
.hljs-regexp, |
|||
.hljs-section, |
|||
.hljs-selector-pseudo, |
|||
.hljs-addition { |
|||
color: #00AAAA; /* Persian Green (approx.) */ |
|||
} |
|||
|
|||
.hljs-title, /* --- used for PureBASIC Procedures Names --- */ |
|||
.hljs-tag, |
|||
.hljs-variable, |
|||
.hljs-code { |
|||
color: #006666; /* Blue Stone (approx.) */ |
|||
} |
|||
|
|||
.hljs-keyword, /* --- used for PureBASIC Keywords --- */ |
|||
.hljs-class, |
|||
.hljs-meta-keyword, |
|||
.hljs-selector-class, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name { |
|||
color: #006666; /* Blue Stone (approx.) */ |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-string, /* --- used for PureBASIC Strings --- */ |
|||
.hljs-selector-attr { |
|||
color: #0080FF; /* Azure Radiance (approx.) */ |
|||
} |
|||
|
|||
.hljs-symbol, /* --- used for PureBASIC Constants --- */ |
|||
.hljs-link, |
|||
.hljs-deletion, |
|||
.hljs-attribute { |
|||
color: #924B72; /* Cannon Pink (approx.) */ |
|||
} |
|||
|
|||
.hljs-meta, |
|||
.hljs-literal, |
|||
.hljs-selector-id { |
|||
color: #924B72; /* Cannon Pink (approx.) */ |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* |
|||
|
|||
Qt Creator dark color scheme |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000000; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst, |
|||
.hljs-tag, |
|||
.hljs-title { |
|||
color: #aaaaaa; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #ff55ff; |
|||
} |
|||
|
|||
.hljs-code |
|||
.hljs-selector-class { |
|||
color: #aaaaff; |
|||
} |
|||
|
|||
.hljs-emphasis, |
|||
.hljs-stronge, |
|||
.hljs-type { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-symbol, |
|||
.hljs-name { |
|||
color: #ffff55; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #ff5555; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #8888ff; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition, |
|||
.hljs-link { |
|||
color: #ff55ff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #55ffff; |
|||
} |
|||
/* |
|||
|
|||
Qt Creator dark color scheme |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #000000; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst, |
|||
.hljs-tag, |
|||
.hljs-title { |
|||
color: #aaaaaa; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #a8a8a2; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #ff55ff; |
|||
} |
|||
|
|||
.hljs-code |
|||
.hljs-selector-class { |
|||
color: #aaaaff; |
|||
} |
|||
|
|||
.hljs-emphasis, |
|||
.hljs-stronge, |
|||
.hljs-type { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-symbol, |
|||
.hljs-name { |
|||
color: #ffff55; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #ff5555; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #8888ff; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition, |
|||
.hljs-link { |
|||
color: #ff55ff; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #55ffff; |
|||
} |
|||
|
|||
@ -1,83 +1,83 @@ |
|||
/* |
|||
|
|||
Qt Creator light color scheme |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #ffffff; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst, |
|||
.hljs-tag, |
|||
.hljs-title { |
|||
color: #000000; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #000000; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #000080; |
|||
} |
|||
|
|||
.hljs-code |
|||
.hljs-selector-class { |
|||
color: #800080; |
|||
} |
|||
|
|||
.hljs-emphasis, |
|||
.hljs-stronge, |
|||
.hljs-type { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-symbol, |
|||
.hljs-name { |
|||
color: #808000; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #800000; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #0055AF; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition, |
|||
.hljs-link { |
|||
color: #008000; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #008000; |
|||
} |
|||
/* |
|||
|
|||
Qt Creator light color scheme |
|||
|
|||
*/ |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #ffffff; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst, |
|||
.hljs-tag, |
|||
.hljs-title { |
|||
color: #000000; |
|||
} |
|||
|
|||
.hljs-strong, |
|||
.hljs-emphasis { |
|||
color: #000000; |
|||
} |
|||
|
|||
.hljs-bullet, |
|||
.hljs-quote, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-literal { |
|||
color: #000080; |
|||
} |
|||
|
|||
.hljs-code |
|||
.hljs-selector-class { |
|||
color: #800080; |
|||
} |
|||
|
|||
.hljs-emphasis, |
|||
.hljs-stronge, |
|||
.hljs-type { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-function, |
|||
.hljs-section, |
|||
.hljs-symbol, |
|||
.hljs-name { |
|||
color: #808000; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #800000; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-params, |
|||
.hljs-class .hljs-title { |
|||
color: #0055AF; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-selector-id, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-type, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-addition, |
|||
.hljs-link { |
|||
color: #008000; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta, |
|||
.hljs-deletion { |
|||
color: #008000; |
|||
} |
|||
|
|||
@ -1,106 +1,106 @@ |
|||
/* |
|||
|
|||
Railscasts-like style (c) Visoft, Inc. (Damien White) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #232323; |
|||
color: #e6e1dc; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #bc9458; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #c26230; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #a5c261; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
color: #519f50; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name { |
|||
color: #e8bf6a; |
|||
} |
|||
|
|||
.hljs-type { |
|||
color: #da4939; |
|||
} |
|||
|
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-attr, |
|||
.hljs-link { |
|||
color: #6d9cbe; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #d0d0ff; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #cda869; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #9b859d; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #ffc66d; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #144212; |
|||
color: #e6e1dc; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #600; |
|||
color: #e6e1dc; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-selector-class { |
|||
color: #9b703f; |
|||
} |
|||
|
|||
.hljs-selector-id { |
|||
color: #8b98ab; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
/* |
|||
|
|||
Railscasts-like style (c) Visoft, Inc. (Damien White) |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #232323; |
|||
color: #e6e1dc; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #bc9458; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag { |
|||
color: #c26230; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-number, |
|||
.hljs-regexp, |
|||
.hljs-variable, |
|||
.hljs-template-variable { |
|||
color: #a5c261; |
|||
} |
|||
|
|||
.hljs-subst { |
|||
color: #519f50; |
|||
} |
|||
|
|||
.hljs-tag, |
|||
.hljs-name { |
|||
color: #e8bf6a; |
|||
} |
|||
|
|||
.hljs-type { |
|||
color: #da4939; |
|||
} |
|||
|
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-attr, |
|||
.hljs-link { |
|||
color: #6d9cbe; |
|||
} |
|||
|
|||
.hljs-params { |
|||
color: #d0d0ff; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #cda869; |
|||
} |
|||
|
|||
.hljs-meta { |
|||
color: #9b859d; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-section { |
|||
color: #ffc66d; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
background-color: #144212; |
|||
color: #e6e1dc; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
background-color: #600; |
|||
color: #e6e1dc; |
|||
display: inline-block; |
|||
width: 100%; |
|||
} |
|||
|
|||
.hljs-selector-class { |
|||
color: #9b703f; |
|||
} |
|||
|
|||
.hljs-selector-id { |
|||
color: #8b98ab; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
@ -1,85 +1,85 @@ |
|||
/* |
|||
|
|||
Style with support for rainbow parens |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #474949; |
|||
color: #d1d9e1; |
|||
} |
|||
|
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #969896; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-addition { |
|||
color: #cc99cc; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #f99157; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #8abeb7; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-section, |
|||
.hljs-built_in { |
|||
color: #b5bd68; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-selector-id, |
|||
.hljs-class .hljs-title { |
|||
color: #ffcc66; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-meta, |
|||
.hljs-link { |
|||
color: #f99157; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #eee8d5; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-attribute { |
|||
color: #81a2be; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
Style with support for rainbow parens |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #474949; |
|||
color: #d1d9e1; |
|||
} |
|||
|
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #969896; |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-type, |
|||
.hljs-addition { |
|||
color: #cc99cc; |
|||
} |
|||
|
|||
.hljs-number, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #f99157; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #8abeb7; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-name, |
|||
.hljs-section, |
|||
.hljs-built_in { |
|||
color: #b5bd68; |
|||
} |
|||
|
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-selector-id, |
|||
.hljs-class .hljs-title { |
|||
color: #ffcc66; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-meta, |
|||
.hljs-link { |
|||
color: #f99157; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #eee8d5; |
|||
} |
|||
|
|||
.hljs-attr, |
|||
.hljs-attribute { |
|||
color: #81a2be; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,108 +1,108 @@ |
|||
/* |
|||
|
|||
highlight.js style for Microtik RouterOS script |
|||
|
|||
*/ |
|||
|
|||
.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-selector-tag, |
|||
.hljs-meta-keyword, |
|||
.hljs-doctag, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #0E9A00; |
|||
} |
|||
|
|||
.hljs-function { |
|||
color: #99069A; |
|||
} |
|||
|
|||
.hljs-builtin-name { |
|||
color: #99069A; |
|||
} |
|||
|
|||
/* 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: #0C9A9A; |
|||
} |
|||
|
|||
|
|||
/* 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; |
|||
} |
|||
/* |
|||
|
|||
highlight.js style for Microtik RouterOS script |
|||
|
|||
*/ |
|||
|
|||
.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-selector-tag, |
|||
.hljs-meta-keyword, |
|||
.hljs-doctag, |
|||
.hljs-name { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-attribute { |
|||
color: #0E9A00; |
|||
} |
|||
|
|||
.hljs-function { |
|||
color: #99069A; |
|||
} |
|||
|
|||
.hljs-builtin-name { |
|||
color: #99069A; |
|||
} |
|||
|
|||
/* 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: #0C9A9A; |
|||
} |
|||
|
|||
|
|||
/* 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; |
|||
} |
|||
|
|||
@ -1,72 +1,72 @@ |
|||
/* |
|||
|
|||
School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 15px 0.5em 0.5em 30px; |
|||
font-size: 11px; |
|||
line-height:16px; |
|||
} |
|||
|
|||
pre{ |
|||
background:#f6f6ae url(./school-book.png); |
|||
border-top: solid 2px #d2e8b9; |
|||
border-bottom: solid 1px #d2e8b9; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color:#005599; |
|||
font-weight:bold; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #3e5915; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-link { |
|||
color: #2c009f; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #e60415; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
/* |
|||
|
|||
School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 15px 0.5em 0.5em 30px; |
|||
font-size: 11px; |
|||
line-height:16px; |
|||
} |
|||
|
|||
pre{ |
|||
background:#f6f6ae url(./school-book.png); |
|||
border-top: solid 2px #d2e8b9; |
|||
border-bottom: solid 1px #d2e8b9; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal { |
|||
color:#005599; |
|||
font-weight:bold; |
|||
} |
|||
|
|||
.hljs, |
|||
.hljs-subst { |
|||
color: #3e5915; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute, |
|||
.hljs-built_in, |
|||
.hljs-builtin-name, |
|||
.hljs-addition, |
|||
.hljs-variable, |
|||
.hljs-template-tag, |
|||
.hljs-template-variable, |
|||
.hljs-link { |
|||
color: #2c009f; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote, |
|||
.hljs-deletion, |
|||
.hljs-meta { |
|||
color: #e60415; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-type, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
@ -1,84 +1,84 @@ |
|||
/* |
|||
|
|||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #002b36; |
|||
color: #839496; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #586e75; |
|||
} |
|||
|
|||
/* Solarized Green */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-addition { |
|||
color: #859900; |
|||
} |
|||
|
|||
/* Solarized Cyan */ |
|||
.hljs-number, |
|||
.hljs-string, |
|||
.hljs-meta .hljs-meta-string, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #2aa198; |
|||
} |
|||
|
|||
/* Solarized Blue */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #268bd2; |
|||
} |
|||
|
|||
/* Solarized Yellow */ |
|||
.hljs-attribute, |
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-class .hljs-title, |
|||
.hljs-type { |
|||
color: #b58900; |
|||
} |
|||
|
|||
/* Solarized Orange */ |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-meta, |
|||
.hljs-meta .hljs-keyword, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-link { |
|||
color: #cb4b16; |
|||
} |
|||
|
|||
/* Solarized Red */ |
|||
.hljs-built_in, |
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #073642; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
/* |
|||
|
|||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com> |
|||
|
|||
*/ |
|||
|
|||
.hljs { |
|||
display: block; |
|||
overflow-x: auto; |
|||
padding: 0.5em; |
|||
background: #002b36; |
|||
color: #839496; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-quote { |
|||
color: #586e75; |
|||
} |
|||
|
|||
/* Solarized Green */ |
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-addition { |
|||
color: #859900; |
|||
} |
|||
|
|||
/* Solarized Cyan */ |
|||
.hljs-number, |
|||
.hljs-string, |
|||
.hljs-meta .hljs-meta-string, |
|||
.hljs-literal, |
|||
.hljs-doctag, |
|||
.hljs-regexp { |
|||
color: #2aa198; |
|||
} |
|||
|
|||
/* Solarized Blue */ |
|||
.hljs-title, |
|||
.hljs-section, |
|||
.hljs-name, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class { |
|||
color: #268bd2; |
|||
} |
|||
|
|||
/* Solarized Yellow */ |
|||
.hljs-attribute, |
|||
.hljs-attr, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-class .hljs-title, |
|||
.hljs-type { |
|||
color: #b58900; |
|||
} |
|||
|
|||
/* Solarized Orange */ |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-subst, |
|||
.hljs-meta, |
|||
.hljs-meta .hljs-keyword, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo, |
|||
.hljs-link { |
|||
color: #cb4b16; |
|||
} |
|||
|
|||
/* Solarized Red */ |
|||
.hljs-built_in, |
|||
.hljs-deletion { |
|||
color: #dc322f; |
|||
} |
|||
|
|||
.hljs-formula { |
|||
background: #073642; |
|||
} |
|||
|
|||
.hljs-emphasis { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.hljs-strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue