mirror of https://github.com/abpframework/abp.git
committed by
GitHub
170 changed files with 22726 additions and 22551 deletions
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,406 +1,412 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function($) { |
(function ($) { |
||||
|
if (!$) { |
||||
|
throw "abp/jquery library requires the jquery library included to the page!"; |
||||
|
} |
||||
|
|
||||
if (!$) { |
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
||||
throw "abp/jquery library requires the jquery library included to the page!"; |
|
||||
} |
|
||||
|
|
||||
// ABP CORE OVERRIDES /////////////////////////////////////////////////////
|
|
||||
|
|
||||
abp.message._showMessage = function (message, title) { |
abp.message._showMessage = function (message, title) { |
||||
alert((title || '') + ' ' + message); |
alert((title || "") + " " + message); |
||||
|
|
||||
return $.Deferred(function ($dfd) { |
return $.Deferred(function ($dfd) { |
||||
$dfd.resolve(); |
$dfd.resolve(); |
||||
}); |
}); |
||||
}; |
}; |
||||
|
|
||||
abp.message.confirm = function (message, titleOrCallback, callback) { |
abp.message.confirm = function (message, titleOrCallback, callback) { |
||||
if (titleOrCallback && !(typeof titleOrCallback == 'string')) { |
if (titleOrCallback && !(typeof titleOrCallback == "string")) { |
||||
callback = titleOrCallback; |
callback = titleOrCallback; |
||||
} |
} |
||||
|
|
||||
var result = confirm(message); |
var result = confirm(message); |
||||
callback && callback(result); |
callback && callback(result); |
||||
|
|
||||
return $.Deferred(function ($dfd) { |
return $.Deferred(function ($dfd) { |
||||
$dfd.resolve(result); |
$dfd.resolve(result); |
||||
}); |
}); |
||||
}; |
}; |
||||
|
|
||||
abp.utils.isFunction = function (obj) { |
abp.utils.isFunction = function (obj) { |
||||
return $.isFunction(obj); |
return $.isFunction(obj); |
||||
}; |
}; |
||||
|
|
||||
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
// JQUERY EXTENSIONS //////////////////////////////////////////////////////
|
||||
|
|
||||
$.fn.findWithSelf = function (selector) { |
$.fn.findWithSelf = function (selector) { |
||||
return this.filter(selector).add(this.find(selector)); |
return this.filter(selector).add(this.find(selector)); |
||||
}; |
}; |
||||
|
|
||||
// DOM ////////////////////////////////////////////////////////////////////
|
// DOM ////////////////////////////////////////////////////////////////////
|
||||
|
|
||||
abp.dom = abp.dom || {}; |
abp.dom = abp.dom || {}; |
||||
|
|
||||
abp.dom.onNodeAdded = function (callback) { |
abp.dom.onNodeAdded = function (callback) { |
||||
abp.event.on('abp.dom.nodeAdded', callback); |
abp.event.on("abp.dom.nodeAdded", callback); |
||||
}; |
}; |
||||
|
|
||||
abp.dom.onNodeRemoved = function (callback) { |
abp.dom.onNodeRemoved = function (callback) { |
||||
abp.event.on('abp.dom.nodeRemoved', callback); |
abp.event.on("abp.dom.nodeRemoved", callback); |
||||
}; |
}; |
||||
|
|
||||
var mutationObserverCallback = function (mutationsList) { |
var mutationObserverCallback = function (mutationsList) { |
||||
for (var i = 0; i < mutationsList.length; i++) { |
for (var i = 0; i < mutationsList.length; i++) { |
||||
var mutation = mutationsList[i]; |
var mutation = mutationsList[i]; |
||||
if (mutation.type === 'childList') { |
if (mutation.type === "childList") { |
||||
if (mutation.addedNodes && mutation.removedNodes.length) { |
if (mutation.addedNodes && mutation.removedNodes.length) { |
||||
for (var k = 0; k < mutation.removedNodes.length; k++) { |
for (var k = 0; k < mutation.removedNodes.length; k++) { |
||||
abp.event.trigger( |
abp.event.trigger("abp.dom.nodeRemoved", { |
||||
'abp.dom.nodeRemoved', |
$el: $(mutation.removedNodes[k]), |
||||
{ |
}); |
||||
$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, { |
if (mutation.addedNodes && mutation.addedNodes.length) { |
||||
defaultOpts: { |
for (var j = 0; j < mutation.addedNodes.length; j++) { |
||||
dataType: 'json', |
abp.event.trigger("abp.dom.nodeAdded", { |
||||
type: 'POST', |
$el: $(mutation.addedNodes[j]), |
||||
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; |
|
||||
|
|
||||
var responseJSON = jqXHR.responseJSON ? jqXHR.responseJSON : JSON.parse(jqXHR.responseText); |
|
||||
|
|
||||
if (userOptions.abpHandleError !== false) { |
|
||||
messagePromise = abp.ajax.showError(responseJSON.error); |
|
||||
} |
|
||||
|
|
||||
abp.ajax.logError(responseJSON.error); |
|
||||
|
|
||||
$dfd && $dfd.reject(responseJSON.error, jqXHR); |
|
||||
userOptions.error && userOptions.error(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 () { |
$(function () { |
||||
this.state = UrlStates.LOADED; |
new MutationObserver(mutationObserverCallback).observe($("body")[0], { |
||||
for (var i = 0; i < this.loadCallbacks.length; i++) { |
subtree: true, |
||||
this.loadCallbacks[i](); |
childList: true, |
||||
} |
}); |
||||
}; |
}); |
||||
|
|
||||
UrlInfo.prototype.failed = function () { |
// AJAX ///////////////////////////////////////////////////////////////////
|
||||
this.state = UrlStates.FAILED; |
|
||||
for (var i = 0; i < this.failCallbacks.length; i++) { |
abp.ajax = function (userOptions) { |
||||
this.failCallbacks[i](); |
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; |
||||
|
|
||||
|
var responseJSON = jqXHR.responseJSON |
||||
|
? jqXHR.responseJSON |
||||
|
: JSON.parse(jqXHR.responseText); |
||||
|
|
||||
|
if (userOptions.abpHandleError !== false) { |
||||
|
messagePromise = abp.ajax.showError(responseJSON.error); |
||||
|
} |
||||
|
|
||||
|
abp.ajax.logError(responseJSON.error); |
||||
|
|
||||
|
$dfd && $dfd.reject(responseJSON.error, jqXHR); |
||||
|
userOptions.error && userOptions.error(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); |
||||
} |
} |
||||
}; |
} |
||||
|
}, |
||||
UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { |
|
||||
switch (this.state) { |
unblockUI: function (options) { |
||||
case UrlStates.LOADED: |
if (options.blockUI) { |
||||
loadCallback && loadCallback(); |
if (options.blockUI === true) { |
||||
break; |
//unblock whole page
|
||||
case UrlStates.FAILED: |
abp.ui.clearBusy(); |
||||
failCallback && failCallback(); |
} else { |
||||
break; |
//unblock an element
|
||||
case UrlStates.LOADING: |
abp.ui.clearBusy(options.blockUI); |
||||
this.addCallbacks(loadCallback, failCallback); |
|
||||
break; |
|
||||
} |
} |
||||
}; |
} |
||||
|
}, |
||||
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
|
||||
loadCallback && this.loadCallbacks.push(loadCallback); |
ajaxSendHandler: function (event, request, settings) { |
||||
failCallback && this.failCallbacks.push(failCallback); |
var token = abp.security.antiForgery.getToken(); |
||||
}; |
if (!token) { |
||||
|
return; |
||||
/* ResourceLoader API */ |
} |
||||
|
|
||||
abp.ResourceLoader = (function () { |
if ( |
||||
|
!settings.headers || |
||||
var _urlInfos = {}; |
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](); |
||||
|
} |
||||
|
}; |
||||
|
|
||||
function getCacheKey(url) { |
UrlInfo.prototype.failed = function () { |
||||
return url; |
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; |
||||
|
} |
||||
|
}; |
||||
|
|
||||
function appendTimeToUrl(url) { |
UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { |
||||
|
loadCallback && this.loadCallbacks.push(loadCallback); |
||||
|
failCallback && this.failCallbacks.push(failCallback); |
||||
|
}; |
||||
|
|
||||
if (url.indexOf('?') < 0) { |
/* ResourceLoader API */ |
||||
url += '?'; |
|
||||
} else { |
|
||||
url += '&'; |
|
||||
} |
|
||||
|
|
||||
url += '_=' + new Date().getTime(); |
abp.ResourceLoader = (function () { |
||||
|
var _urlInfos = {}; |
||||
|
|
||||
return url; |
function getCacheKey(url) { |
||||
} |
return url; |
||||
|
} |
||||
|
|
||||
var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { |
function appendTimeToUrl(url) { |
||||
|
if (url.indexOf("?") < 0) { |
||||
|
url += "?"; |
||||
|
} else { |
||||
|
url += "&"; |
||||
|
} |
||||
|
|
||||
var cacheKey = getCacheKey(url); |
url += "_=" + new Date().getTime(); |
||||
|
|
||||
var urlInfo = _urlInfos[cacheKey]; |
return url; |
||||
|
} |
||||
|
|
||||
if (urlInfo) { |
var _loadFromUrl = function ( |
||||
urlInfo.handleCallbacks(loadCallback, failCallback); |
url, |
||||
return; |
loadCallback, |
||||
} |
failCallback, |
||||
|
serverLoader |
||||
|
) { |
||||
|
var cacheKey = getCacheKey(url); |
||||
|
|
||||
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
var urlInfo = _urlInfos[cacheKey]; |
||||
urlInfo.addCallbacks(loadCallback, failCallback); |
|
||||
|
|
||||
serverLoader(urlInfo); |
if (urlInfo) { |
||||
}; |
urlInfo.handleCallbacks(loadCallback, failCallback); |
||||
|
return; |
||||
|
} |
||||
|
|
||||
var _loadScript = function (url, loadCallback, failCallback) { |
_urlInfos[cacheKey] = urlInfo = new UrlInfo(url); |
||||
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
urlInfo.addCallbacks(loadCallback, failCallback); |
||||
$.get({ |
|
||||
url: url, |
|
||||
dataType: 'text' |
|
||||
}) |
|
||||
.done(function (script) { |
|
||||
$.globalEval(script); |
|
||||
urlInfo.succeed(); |
|
||||
}) |
|
||||
.fail(function () { |
|
||||
urlInfo.failed(); |
|
||||
}); |
|
||||
}); |
|
||||
}; |
|
||||
|
|
||||
var _loadStyle = function (url) { |
serverLoader(urlInfo); |
||||
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
}; |
||||
|
|
||||
$('<link/>', { |
var _loadScript = function (url, loadCallback, failCallback) { |
||||
rel: 'stylesheet', |
_loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { |
||||
type: 'text/css', |
$.get({ |
||||
href: appendTimeToUrl(url) |
url: url, |
||||
}).appendTo('head'); |
dataType: "text", |
||||
}); |
}) |
||||
}; |
.done(function (script) { |
||||
|
$.globalEval(script); |
||||
|
urlInfo.succeed(); |
||||
|
}) |
||||
|
.fail(function () { |
||||
|
urlInfo.failed(); |
||||
|
}); |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
return { |
var _loadStyle = function (url) { |
||||
loadScript: _loadScript, |
_loadFromUrl(url, undefined, undefined, function (urlInfo) { |
||||
loadStyle: _loadStyle |
$("<link/>", { |
||||
} |
rel: "stylesheet", |
||||
})(); |
type: "text/css", |
||||
|
href: appendTimeToUrl(url), |
||||
|
}).appendTo("head"); |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
})(jQuery); |
return { |
||||
|
loadScript: _loadScript, |
||||
|
loadStyle: _loadStyle, |
||||
|
}; |
||||
|
})(); |
||||
|
})(jQuery); |
||||
|
|||||
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(tooltipTriggerEl) |
return new bootstrap.Tooltip(tooltipTriggerEl) |
||||
}); |
}); |
||||
})(); |
})(); |
||||
|
|||||
@ -1,56 +1,56 @@ |
|||||
@keyframes spin { |
@keyframes spin { |
||||
0% { |
0% { |
||||
transform: translateZ(0) rotate(0deg); |
transform: translateZ(0) rotate(0deg); |
||||
} |
} |
||||
|
|
||||
100% { |
100% { |
||||
transform: translateZ(0) rotate(360deg); |
transform: translateZ(0) rotate(360deg); |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
.abp-block-area { |
.abp-block-area { |
||||
position: fixed; |
position: fixed; |
||||
top: 0; |
top: 0; |
||||
left: 0; |
left: 0; |
||||
width: 100%; |
width: 100%; |
||||
height: 100%; |
height: 100%; |
||||
z-index: 102; |
z-index: 102; |
||||
background-color: #fff; |
background-color: #fff; |
||||
opacity: .8; |
opacity: .8; |
||||
transition: opacity .25s; |
transition: opacity .25s; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-disappearing { |
.abp-block-area.abp-block-area-disappearing { |
||||
opacity: 0; |
opacity: 0; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:after { |
.abp-block-area.abp-block-area-busy:after { |
||||
content: attr(data-text); |
content: attr(data-text); |
||||
display: block; |
display: block; |
||||
max-width: 125px; |
max-width: 125px; |
||||
position: absolute; |
position: absolute; |
||||
top: 50%; |
top: 50%; |
||||
left: 50%; |
left: 50%; |
||||
transform: translate(-50%, -50%); |
transform: translate(-50%, -50%); |
||||
font-size: 20px; |
font-size: 20px; |
||||
font-family: sans-serif; |
font-family: sans-serif; |
||||
color: #343a40; |
color: #343a40; |
||||
text-align: center; |
text-align: center; |
||||
text-transform: uppercase; |
text-transform: uppercase; |
||||
} |
} |
||||
|
|
||||
.abp-block-area.abp-block-area-busy:before { |
.abp-block-area.abp-block-area-busy:before { |
||||
content: ""; |
content: ""; |
||||
display: block; |
display: block; |
||||
width: 150px; |
width: 150px; |
||||
height: 150px; |
height: 150px; |
||||
border-radius: 50%; |
border-radius: 50%; |
||||
border-width: 2px; |
border-width: 2px; |
||||
border-style: solid; |
border-style: solid; |
||||
border-color: transparent #228ae6 #228ae6 #228ae6; |
border-color: transparent #228ae6 #228ae6 #228ae6; |
||||
position: absolute; |
position: absolute; |
||||
top: calc(50% - 75px); |
top: calc(50% - 75px); |
||||
left: calc(50% - 75px); |
left: calc(50% - 75px); |
||||
will-change: transform; |
will-change: transform; |
||||
animation: spin .75s infinite ease-in-out; |
animation: spin .75s infinite ease-in-out; |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,46 +1,46 @@ |
|||||
var abp = abp || {}; |
var abp = abp || {}; |
||||
(function () { |
(function () { |
||||
|
|
||||
if (!luxon) { |
if (!luxon) { |
||||
throw "abp/luxon library requires the luxon library included to the page!"; |
throw "abp/luxon library requires the luxon library included to the page!"; |
||||
} |
} |
||||
|
|
||||
/* TIMING *************************************************/ |
/* TIMING *************************************************/ |
||||
|
|
||||
abp.timing = abp.timing || {}; |
abp.timing = abp.timing || {}; |
||||
|
|
||||
var setObjectValue = function (obj, property, value) { |
var setObjectValue = function (obj, property, value) { |
||||
if (typeof property === "string") { |
if (typeof property === "string") { |
||||
property = property.split('.'); |
property = property.split('.'); |
||||
} |
} |
||||
|
|
||||
if (property.length > 1) { |
if (property.length > 1) { |
||||
var p = property.shift(); |
var p = property.shift(); |
||||
setObjectValue(obj[p], property, value); |
setObjectValue(obj[p], property, value); |
||||
} else { |
} else { |
||||
obj[property[0]] = value; |
obj[property[0]] = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
var getObjectValue = function (obj, property) { |
var getObjectValue = function (obj, property) { |
||||
return property.split('.').reduce((a, v) => a[v], obj) |
return property.split('.').reduce((a, v) => a[v], obj) |
||||
} |
} |
||||
|
|
||||
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
abp.timing.convertFieldsToIsoDate = function (form, fields) { |
||||
for (var field of fields) { |
for (var field of fields) { |
||||
var dateTime = luxon.DateTime |
var dateTime = luxon.DateTime |
||||
.fromFormat( |
.fromFormat( |
||||
getObjectValue(form, field), |
getObjectValue(form, field), |
||||
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
abp.localization.currentCulture.dateTimeFormat.shortDatePattern, |
||||
{locale: abp.localization.currentCulture.cultureName} |
{locale: abp.localization.currentCulture.cultureName} |
||||
); |
); |
||||
|
|
||||
if (!dateTime.invalid) { |
if (!dateTime.invalid) { |
||||
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss")) |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
return form; |
return form; |
||||
} |
} |
||||
|
|
||||
})(jQuery); |
})(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 () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { |
||||
return new bootstrap.Popover(popoverTriggerEl) |
return new bootstrap.Popover(popoverTriggerEl) |
||||
}) |
}) |
||||
})(); |
})(); |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
(function () { |
(function () { |
||||
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { |
||||
return new bootstrap.Tooltip(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> |
* Agate by Taufik Nurrohman <https://github.com/tovic> |
||||
* ---------------------------------------------------- |
* ---------------------------------------------------- |
||||
* |
* |
||||
* #ade5fc |
* #ade5fc |
||||
* #a2fca2 |
* #a2fca2 |
||||
* #c6b4f0 |
* #c6b4f0 |
||||
* #d36363 |
* #d36363 |
||||
* #fcc28c |
* #fcc28c |
||||
* #fc9b9b |
* #fc9b9b |
||||
* #ffa |
* #ffa |
||||
* #fff |
* #fff |
||||
* #333 |
* #333 |
||||
* #62c8f3 |
* #62c8f3 |
||||
* #888 |
* #888 |
||||
* |
* |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #333; |
background: #333; |
||||
color: white; |
color: white; |
||||
} |
} |
||||
|
|
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-code, |
.hljs-code, |
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-tag { |
.hljs-tag { |
||||
color: #62c8f3; |
color: #62c8f3; |
||||
} |
} |
||||
|
|
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ade5fc; |
color: #ade5fc; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #a2fca2; |
color: #a2fca2; |
||||
} |
} |
||||
|
|
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name { |
.hljs-builtin-name { |
||||
color: #ffa; |
color: #ffa; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #d36363; |
color: #d36363; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal { |
.hljs-literal { |
||||
color: #fcc28c; |
color: #fcc28c; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-code { |
.hljs-code { |
||||
color: #888; |
color: #888; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #c6b4f0; |
color: #c6b4f0; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #fc9b9b; |
color: #fc9b9b; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #fc9b9b; |
background-color: #fc9b9b; |
||||
color: #333; |
color: #333; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #a2fca2; |
background-color: #a2fca2; |
||||
color: #333; |
color: #333; |
||||
} |
} |
||||
|
|
||||
.hljs a { |
.hljs a { |
||||
color: inherit; |
color: inherit; |
||||
} |
} |
||||
|
|
||||
.hljs a:focus, |
.hljs a:focus, |
||||
.hljs a:hover { |
.hljs a:hover { |
||||
color: inherit; |
color: inherit; |
||||
text-decoration: underline; |
text-decoration: underline; |
||||
} |
} |
||||
|
|||||
@ -1,66 +1,66 @@ |
|||||
/* |
/* |
||||
Date: 24 Fev 2015 |
Date: 24 Fev 2015 |
||||
Author: Pedro Oliveira <kanytu@gmail . com> |
Author: Pedro Oliveira <kanytu@gmail . com> |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
color: #a9b7c6; |
color: #a9b7c6; |
||||
background: #282b2e; |
background: #282b2e; |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #6897BB; |
color: #6897BB; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #cc7832; |
color: #cc7832; |
||||
} |
} |
||||
|
|
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #629755; |
color: #629755; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #808080; |
color: #808080; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #bbb529; |
color: #bbb529; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #6A8759; |
color: #6A8759; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-type { |
.hljs-type { |
||||
color: #ffc66d; |
color: #ffc66d; |
||||
} |
} |
||||
|
|
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #e8bf6a; |
color: #e8bf6a; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,88 +1,88 @@ |
|||||
/* |
/* |
||||
|
|
||||
Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc> |
Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #FFFFFF; |
background: #FFFFFF; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #434f54; |
color: #434f54; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-name { |
.hljs-name { |
||||
color: #00979D; |
color: #00979D; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-code, |
.hljs-code, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #D35400; |
color: #D35400; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo { |
.hljs-selector-pseudo { |
||||
color: #00979D; |
color: #00979D; |
||||
} |
} |
||||
|
|
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #005C5F; |
color: #005C5F; |
||||
} |
} |
||||
|
|
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #880000; |
color: #880000; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-comment { |
.hljs-comment { |
||||
color: rgba(149,165,166,.8); |
color: rgba(149,165,166,.8); |
||||
} |
} |
||||
|
|
||||
.hljs-meta-keyword { |
.hljs-meta-keyword { |
||||
color: #728E00; |
color: #728E00; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #728E00; |
color: #728E00; |
||||
color: #434f54; |
color: #434f54; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-function { |
.hljs-function { |
||||
color: #728E00; |
color: #728E00; |
||||
} |
} |
||||
|
|
||||
.hljs-number { |
.hljs-number { |
||||
color: #8A7B52; |
color: #8A7B52; |
||||
} |
} |
||||
|
|||||
@ -1,73 +1,73 @@ |
|||||
/* |
/* |
||||
Date: 17.V.2011 |
Date: 17.V.2011 |
||||
Author: pumbur <pumbur@pumbur.net> |
Author: pumbur <pumbur@pumbur.net> |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #222; |
background: #222; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #aaa; |
color: #aaa; |
||||
} |
} |
||||
|
|
||||
.hljs-section { |
.hljs-section { |
||||
color: #fff; |
color: #fff; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #444; |
color: #444; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-regexp { |
.hljs-regexp { |
||||
color: #ffcc33; |
color: #ffcc33; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #00cc66; |
color: #00cc66; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #32aaee; |
color: #32aaee; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #6644aa; |
color: #6644aa; |
||||
} |
} |
||||
|
|
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-template-tag { |
.hljs-template-tag { |
||||
color: #bb1166; |
color: #bb1166; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,45 +1,45 @@ |
|||||
/* |
/* |
||||
|
|
||||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: white; |
background: white; |
||||
color: black; |
color: black; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #888; |
color: #888; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #ccc; |
color: #ccc; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,83 +1,83 @@ |
|||||
/* Base16 Atelier Cave Dark - Theme */ |
/* Base16 Atelier Cave Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Cave Comment */ |
/* Atelier-Cave Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #7e7887; |
color: #7e7887; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Red */ |
/* Atelier-Cave Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #be4678; |
color: #be4678; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Orange */ |
/* Atelier-Cave Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #aa573c; |
color: #aa573c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Green */ |
/* Atelier-Cave Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #2a9292; |
color: #2a9292; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Blue */ |
/* Atelier-Cave Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #576ddb; |
color: #576ddb; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Purple */ |
/* Atelier-Cave Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #955ae7; |
color: #955ae7; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #19171c; |
color: #19171c; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #be4678; |
background-color: #be4678; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #2a9292; |
background-color: #2a9292; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #19171c; |
background: #19171c; |
||||
color: #8b8792; |
color: #8b8792; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,85 +1,85 @@ |
|||||
/* Base16 Atelier Cave Light - Theme */ |
/* Base16 Atelier Cave Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Cave Comment */ |
/* Atelier-Cave Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #655f6d; |
color: #655f6d; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Red */ |
/* Atelier-Cave Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #be4678; |
color: #be4678; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Orange */ |
/* Atelier-Cave Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #aa573c; |
color: #aa573c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Green */ |
/* Atelier-Cave Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #2a9292; |
color: #2a9292; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Blue */ |
/* Atelier-Cave Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #576ddb; |
color: #576ddb; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Cave Purple */ |
/* Atelier-Cave Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #955ae7; |
color: #955ae7; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #19171c; |
color: #19171c; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #be4678; |
background-color: #be4678; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #2a9292; |
background-color: #2a9292; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #efecf4; |
background: #efecf4; |
||||
color: #585260; |
color: #585260; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Dune Dark - Theme */ |
/* Base16 Atelier Dune Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Dune Comment */ |
/* Atelier-Dune Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #999580; |
color: #999580; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Red */ |
/* Atelier-Dune Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #d73737; |
color: #d73737; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Orange */ |
/* Atelier-Dune Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #b65611; |
color: #b65611; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Green */ |
/* Atelier-Dune Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #60ac39; |
color: #60ac39; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Blue */ |
/* Atelier-Dune Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #6684e1; |
color: #6684e1; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Purple */ |
/* Atelier-Dune Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #b854d4; |
color: #b854d4; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #20201d; |
background: #20201d; |
||||
color: #a6a28c; |
color: #a6a28c; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Dune Light - Theme */ |
/* Base16 Atelier Dune Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Dune Comment */ |
/* Atelier-Dune Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #7d7a68; |
color: #7d7a68; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Red */ |
/* Atelier-Dune Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #d73737; |
color: #d73737; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Orange */ |
/* Atelier-Dune Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #b65611; |
color: #b65611; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Green */ |
/* Atelier-Dune Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #60ac39; |
color: #60ac39; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Blue */ |
/* Atelier-Dune Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #6684e1; |
color: #6684e1; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Dune Purple */ |
/* Atelier-Dune Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #b854d4; |
color: #b854d4; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #fefbec; |
background: #fefbec; |
||||
color: #6e6b5e; |
color: #6e6b5e; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Estuary Dark - Theme */ |
/* Base16 Atelier Estuary Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Estuary Comment */ |
/* Atelier-Estuary Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #878573; |
color: #878573; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Red */ |
/* Atelier-Estuary Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ba6236; |
color: #ba6236; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Orange */ |
/* Atelier-Estuary Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #ae7313; |
color: #ae7313; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Green */ |
/* Atelier-Estuary Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #7d9726; |
color: #7d9726; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Blue */ |
/* Atelier-Estuary Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #36a166; |
color: #36a166; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Purple */ |
/* Atelier-Estuary Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #5f9182; |
color: #5f9182; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #22221b; |
color: #22221b; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #ba6236; |
background-color: #ba6236; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #7d9726; |
background-color: #7d9726; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #22221b; |
background: #22221b; |
||||
color: #929181; |
color: #929181; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Estuary Light - Theme */ |
/* Base16 Atelier Estuary Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Estuary Comment */ |
/* Atelier-Estuary Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #6c6b5a; |
color: #6c6b5a; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Red */ |
/* Atelier-Estuary Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ba6236; |
color: #ba6236; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Orange */ |
/* Atelier-Estuary Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #ae7313; |
color: #ae7313; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Green */ |
/* Atelier-Estuary Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #7d9726; |
color: #7d9726; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Blue */ |
/* Atelier-Estuary Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #36a166; |
color: #36a166; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Estuary Purple */ |
/* Atelier-Estuary Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #5f9182; |
color: #5f9182; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #22221b; |
color: #22221b; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #ba6236; |
background-color: #ba6236; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #7d9726; |
background-color: #7d9726; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f4f3ec; |
background: #f4f3ec; |
||||
color: #5f5e4e; |
color: #5f5e4e; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Forest Dark - Theme */ |
/* Base16 Atelier Forest Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Forest Comment */ |
/* Atelier-Forest Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #9c9491; |
color: #9c9491; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Red */ |
/* Atelier-Forest Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #f22c40; |
color: #f22c40; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Orange */ |
/* Atelier-Forest Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #df5320; |
color: #df5320; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Green */ |
/* Atelier-Forest Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #7b9726; |
color: #7b9726; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Blue */ |
/* Atelier-Forest Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #407ee7; |
color: #407ee7; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Purple */ |
/* Atelier-Forest Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6666ea; |
color: #6666ea; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #1b1918; |
background: #1b1918; |
||||
color: #a8a19f; |
color: #a8a19f; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Forest Light - Theme */ |
/* Base16 Atelier Forest Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Forest Comment */ |
/* Atelier-Forest Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #766e6b; |
color: #766e6b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Red */ |
/* Atelier-Forest Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #f22c40; |
color: #f22c40; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Orange */ |
/* Atelier-Forest Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #df5320; |
color: #df5320; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Green */ |
/* Atelier-Forest Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #7b9726; |
color: #7b9726; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Blue */ |
/* Atelier-Forest Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #407ee7; |
color: #407ee7; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Forest Purple */ |
/* Atelier-Forest Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6666ea; |
color: #6666ea; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f1efee; |
background: #f1efee; |
||||
color: #68615e; |
color: #68615e; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Heath Dark - Theme */ |
/* Base16 Atelier Heath Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Heath Comment */ |
/* Atelier-Heath Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #9e8f9e; |
color: #9e8f9e; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Red */ |
/* Atelier-Heath Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ca402b; |
color: #ca402b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Orange */ |
/* Atelier-Heath Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #a65926; |
color: #a65926; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Green */ |
/* Atelier-Heath Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #918b3b; |
color: #918b3b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Blue */ |
/* Atelier-Heath Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #516aec; |
color: #516aec; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Purple */ |
/* Atelier-Heath Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #7b59c0; |
color: #7b59c0; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #1b181b; |
background: #1b181b; |
||||
color: #ab9bab; |
color: #ab9bab; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Heath Light - Theme */ |
/* Base16 Atelier Heath Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Heath Comment */ |
/* Atelier-Heath Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #776977; |
color: #776977; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Red */ |
/* Atelier-Heath Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ca402b; |
color: #ca402b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Orange */ |
/* Atelier-Heath Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #a65926; |
color: #a65926; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Green */ |
/* Atelier-Heath Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #918b3b; |
color: #918b3b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Blue */ |
/* Atelier-Heath Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #516aec; |
color: #516aec; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Heath Purple */ |
/* Atelier-Heath Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #7b59c0; |
color: #7b59c0; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f7f3f7; |
background: #f7f3f7; |
||||
color: #695d69; |
color: #695d69; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Lakeside Dark - Theme */ |
/* Base16 Atelier Lakeside Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Lakeside Comment */ |
/* Atelier-Lakeside Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #7195a8; |
color: #7195a8; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Red */ |
/* Atelier-Lakeside Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #d22d72; |
color: #d22d72; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Orange */ |
/* Atelier-Lakeside Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #935c25; |
color: #935c25; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Green */ |
/* Atelier-Lakeside Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #568c3b; |
color: #568c3b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Blue */ |
/* Atelier-Lakeside Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #257fad; |
color: #257fad; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Purple */ |
/* Atelier-Lakeside Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6b6bb8; |
color: #6b6bb8; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #161b1d; |
background: #161b1d; |
||||
color: #7ea2b4; |
color: #7ea2b4; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Lakeside Light - Theme */ |
/* Base16 Atelier Lakeside Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Lakeside Comment */ |
/* Atelier-Lakeside Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #5a7b8c; |
color: #5a7b8c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Red */ |
/* Atelier-Lakeside Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #d22d72; |
color: #d22d72; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Orange */ |
/* Atelier-Lakeside Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #935c25; |
color: #935c25; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Green */ |
/* Atelier-Lakeside Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #568c3b; |
color: #568c3b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Blue */ |
/* Atelier-Lakeside Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #257fad; |
color: #257fad; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Lakeside Purple */ |
/* Atelier-Lakeside Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6b6bb8; |
color: #6b6bb8; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #ebf8ff; |
background: #ebf8ff; |
||||
color: #516d7b; |
color: #516d7b; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Plateau Dark - Theme */ |
/* Base16 Atelier Plateau Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Plateau Comment */ |
/* Atelier-Plateau Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #7e7777; |
color: #7e7777; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Red */ |
/* Atelier-Plateau Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ca4949; |
color: #ca4949; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Orange */ |
/* Atelier-Plateau Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #b45a3c; |
color: #b45a3c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Green */ |
/* Atelier-Plateau Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #4b8b8b; |
color: #4b8b8b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Blue */ |
/* Atelier-Plateau Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #7272ca; |
color: #7272ca; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Purple */ |
/* Atelier-Plateau Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #8464c4; |
color: #8464c4; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #1b1818; |
color: #1b1818; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #ca4949; |
background-color: #ca4949; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #4b8b8b; |
background-color: #4b8b8b; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #1b1818; |
background: #1b1818; |
||||
color: #8a8585; |
color: #8a8585; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Plateau Light - Theme */ |
/* Base16 Atelier Plateau Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Plateau Comment */ |
/* Atelier-Plateau Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #655d5d; |
color: #655d5d; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Red */ |
/* Atelier-Plateau Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #ca4949; |
color: #ca4949; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Orange */ |
/* Atelier-Plateau Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #b45a3c; |
color: #b45a3c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Green */ |
/* Atelier-Plateau Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #4b8b8b; |
color: #4b8b8b; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Blue */ |
/* Atelier-Plateau Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #7272ca; |
color: #7272ca; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Plateau Purple */ |
/* Atelier-Plateau Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #8464c4; |
color: #8464c4; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #1b1818; |
color: #1b1818; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #ca4949; |
background-color: #ca4949; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #4b8b8b; |
background-color: #4b8b8b; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f4ecec; |
background: #f4ecec; |
||||
color: #585050; |
color: #585050; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Savanna Dark - Theme */ |
/* Base16 Atelier Savanna Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Savanna Comment */ |
/* Atelier-Savanna Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #78877d; |
color: #78877d; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Red */ |
/* Atelier-Savanna Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #b16139; |
color: #b16139; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Orange */ |
/* Atelier-Savanna Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #9f713c; |
color: #9f713c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Green */ |
/* Atelier-Savanna Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #489963; |
color: #489963; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Blue */ |
/* Atelier-Savanna Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #478c90; |
color: #478c90; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Purple */ |
/* Atelier-Savanna Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #55859b; |
color: #55859b; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #171c19; |
color: #171c19; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #b16139; |
background-color: #b16139; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #489963; |
background-color: #489963; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #171c19; |
background: #171c19; |
||||
color: #87928a; |
color: #87928a; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,84 +1,84 @@ |
|||||
/* Base16 Atelier Savanna Light - Theme */ |
/* Base16 Atelier Savanna Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Savanna Comment */ |
/* Atelier-Savanna Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #5f6d64; |
color: #5f6d64; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Red */ |
/* Atelier-Savanna Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #b16139; |
color: #b16139; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Orange */ |
/* Atelier-Savanna Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #9f713c; |
color: #9f713c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Green */ |
/* Atelier-Savanna Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #489963; |
color: #489963; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Blue */ |
/* Atelier-Savanna Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #478c90; |
color: #478c90; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Savanna Purple */ |
/* Atelier-Savanna Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #55859b; |
color: #55859b; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #171c19; |
color: #171c19; |
||||
display: inline-block; |
display: inline-block; |
||||
width: 100%; |
width: 100%; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background-color: #b16139; |
background-color: #b16139; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background-color: #489963; |
background-color: #489963; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #ecf4ee; |
background: #ecf4ee; |
||||
color: #526057; |
color: #526057; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Seaside Dark - Theme */ |
/* Base16 Atelier Seaside Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Seaside Comment */ |
/* Atelier-Seaside Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #809980; |
color: #809980; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Red */ |
/* Atelier-Seaside Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #e6193c; |
color: #e6193c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Orange */ |
/* Atelier-Seaside Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #87711d; |
color: #87711d; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Green */ |
/* Atelier-Seaside Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #29a329; |
color: #29a329; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Blue */ |
/* Atelier-Seaside Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #3d62f5; |
color: #3d62f5; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Purple */ |
/* Atelier-Seaside Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #ad2bee; |
color: #ad2bee; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #131513; |
background: #131513; |
||||
color: #8ca68c; |
color: #8ca68c; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Seaside Light - Theme */ |
/* Base16 Atelier Seaside Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Seaside Comment */ |
/* Atelier-Seaside Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #687d68; |
color: #687d68; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Red */ |
/* Atelier-Seaside Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #e6193c; |
color: #e6193c; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Orange */ |
/* Atelier-Seaside Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #87711d; |
color: #87711d; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Green */ |
/* Atelier-Seaside Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #29a329; |
color: #29a329; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Blue */ |
/* Atelier-Seaside Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #3d62f5; |
color: #3d62f5; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Seaside Purple */ |
/* Atelier-Seaside Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #ad2bee; |
color: #ad2bee; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f4fbf4; |
background: #f4fbf4; |
||||
color: #5e6e5e; |
color: #5e6e5e; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Sulphurpool Dark - Theme */ |
/* Base16 Atelier Sulphurpool Dark - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Sulphurpool Comment */ |
/* Atelier-Sulphurpool Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #898ea4; |
color: #898ea4; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Red */ |
/* Atelier-Sulphurpool Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #c94922; |
color: #c94922; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Orange */ |
/* Atelier-Sulphurpool Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #c76b29; |
color: #c76b29; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Green */ |
/* Atelier-Sulphurpool Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #ac9739; |
color: #ac9739; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Blue */ |
/* Atelier-Sulphurpool Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #3d8fd1; |
color: #3d8fd1; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Purple */ |
/* Atelier-Sulphurpool Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6679cc; |
color: #6679cc; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #202746; |
background: #202746; |
||||
color: #979db4; |
color: #979db4; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,69 +1,69 @@ |
|||||
/* Base16 Atelier Sulphurpool Light - Theme */ |
/* Base16 Atelier Sulphurpool Light - Theme */ |
||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */ |
/* 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) */ |
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ |
||||
|
|
||||
/* Atelier-Sulphurpool Comment */ |
/* Atelier-Sulphurpool Comment */ |
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #6b7394; |
color: #6b7394; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Red */ |
/* Atelier-Sulphurpool Red */ |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #c94922; |
color: #c94922; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Orange */ |
/* Atelier-Sulphurpool Orange */ |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-params { |
.hljs-params { |
||||
color: #c76b29; |
color: #c76b29; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Green */ |
/* Atelier-Sulphurpool Green */ |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #ac9739; |
color: #ac9739; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Blue */ |
/* Atelier-Sulphurpool Blue */ |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #3d8fd1; |
color: #3d8fd1; |
||||
} |
} |
||||
|
|
||||
/* Atelier-Sulphurpool Purple */ |
/* Atelier-Sulphurpool Purple */ |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #6679cc; |
color: #6679cc; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
background: #f5f7ff; |
background: #f5f7ff; |
||||
color: #5e6687; |
color: #5e6687; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,96 +1,96 @@ |
|||||
/* |
/* |
||||
|
|
||||
Atom One Dark by Daniel Gamage |
Atom One Dark by Daniel Gamage |
||||
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax |
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax |
||||
|
|
||||
base: #282c34 |
base: #282c34 |
||||
mono-1: #abb2bf |
mono-1: #abb2bf |
||||
mono-2: #818896 |
mono-2: #818896 |
||||
mono-3: #5c6370 |
mono-3: #5c6370 |
||||
hue-1: #56b6c2 |
hue-1: #56b6c2 |
||||
hue-2: #61aeee |
hue-2: #61aeee |
||||
hue-3: #c678dd |
hue-3: #c678dd |
||||
hue-4: #98c379 |
hue-4: #98c379 |
||||
hue-5: #e06c75 |
hue-5: #e06c75 |
||||
hue-5-2: #be5046 |
hue-5-2: #be5046 |
||||
hue-6: #d19a66 |
hue-6: #d19a66 |
||||
hue-6-2: #e6c07b |
hue-6-2: #e6c07b |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
color: #abb2bf; |
color: #abb2bf; |
||||
background: #282c34; |
background: #282c34; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #5c6370; |
color: #5c6370; |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-formula { |
.hljs-formula { |
||||
color: #c678dd; |
color: #c678dd; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #e06c75; |
color: #e06c75; |
||||
} |
} |
||||
|
|
||||
.hljs-literal { |
.hljs-literal { |
||||
color: #56b6c2; |
color: #56b6c2; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-meta-string { |
.hljs-meta-string { |
||||
color: #98c379; |
color: #98c379; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-class .hljs-title { |
.hljs-class .hljs-title { |
||||
color: #e6c07b; |
color: #e6c07b; |
||||
} |
} |
||||
|
|
||||
.hljs-attr, |
.hljs-attr, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo, |
.hljs-selector-pseudo, |
||||
.hljs-number { |
.hljs-number { |
||||
color: #d19a66; |
color: #d19a66; |
||||
} |
} |
||||
|
|
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-title { |
.hljs-title { |
||||
color: #61aeee; |
color: #61aeee; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-link { |
.hljs-link { |
||||
text-decoration: underline; |
text-decoration: underline; |
||||
} |
} |
||||
|
|||||
@ -1,96 +1,96 @@ |
|||||
/* |
/* |
||||
|
|
||||
Atom One Light by Daniel Gamage |
Atom One Light by Daniel Gamage |
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax |
Original One Light Syntax theme from https://github.com/atom/one-light-syntax |
||||
|
|
||||
base: #fafafa |
base: #fafafa |
||||
mono-1: #383a42 |
mono-1: #383a42 |
||||
mono-2: #686b77 |
mono-2: #686b77 |
||||
mono-3: #a0a1a7 |
mono-3: #a0a1a7 |
||||
hue-1: #0184bb |
hue-1: #0184bb |
||||
hue-2: #4078f2 |
hue-2: #4078f2 |
||||
hue-3: #a626a4 |
hue-3: #a626a4 |
||||
hue-4: #50a14f |
hue-4: #50a14f |
||||
hue-5: #e45649 |
hue-5: #e45649 |
||||
hue-5-2: #c91243 |
hue-5-2: #c91243 |
||||
hue-6: #986801 |
hue-6: #986801 |
||||
hue-6-2: #c18401 |
hue-6-2: #c18401 |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
color: #383a42; |
color: #383a42; |
||||
background: #fafafa; |
background: #fafafa; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #a0a1a7; |
color: #a0a1a7; |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-formula { |
.hljs-formula { |
||||
color: #a626a4; |
color: #a626a4; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #e45649; |
color: #e45649; |
||||
} |
} |
||||
|
|
||||
.hljs-literal { |
.hljs-literal { |
||||
color: #0184bb; |
color: #0184bb; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-meta-string { |
.hljs-meta-string { |
||||
color: #50a14f; |
color: #50a14f; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-class .hljs-title { |
.hljs-class .hljs-title { |
||||
color: #c18401; |
color: #c18401; |
||||
} |
} |
||||
|
|
||||
.hljs-attr, |
.hljs-attr, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo, |
.hljs-selector-pseudo, |
||||
.hljs-number { |
.hljs-number { |
||||
color: #986801; |
color: #986801; |
||||
} |
} |
||||
|
|
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-title { |
.hljs-title { |
||||
color: #4078f2; |
color: #4078f2; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-link { |
.hljs-link { |
||||
text-decoration: underline; |
text-decoration: underline; |
||||
} |
} |
||||
|
|||||
@ -1,64 +1,64 @@ |
|||||
/* |
/* |
||||
|
|
||||
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background:#b7a68e url(./brown-papersq.png); |
background:#b7a68e url(./brown-papersq.png); |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal { |
.hljs-literal { |
||||
color:#005599; |
color:#005599; |
||||
font-weight:bold; |
font-weight:bold; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #363c69; |
color: #363c69; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-name { |
.hljs-name { |
||||
color: #2c009f; |
color: #2c009f; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #802022; |
color: #802022; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,60 +1,60 @@ |
|||||
/* |
/* |
||||
codepen.io Embed Theme |
codepen.io Embed Theme |
||||
Author: Justin Perry <http://github.com/ourmaninamsterdam> |
Author: Justin Perry <http://github.com/ourmaninamsterdam> |
||||
Original theme - https://github.com/chriskempson/tomorrow-theme |
Original theme - https://github.com/chriskempson/tomorrow-theme |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #222; |
background: #222; |
||||
color: #fff; |
color: #fff; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #777; |
color: #777; |
||||
} |
} |
||||
|
|
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-params, |
.hljs-params, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #ab875d; |
color: #ab875d; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-attribute { |
.hljs-attribute { |
||||
color: #9b869b; |
color: #9b869b; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #8f9c6c; |
color: #8f9c6c; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,71 +1,71 @@ |
|||||
/* |
/* |
||||
|
|
||||
Colorbrewer theme |
Colorbrewer theme |
||||
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> |
Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> |
||||
Ported by Fabrício Tavares de Oliveira |
Ported by Fabrício Tavares de Oliveira |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #fff; |
background: #fff; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #000; |
color: #000; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-meta, |
.hljs-meta, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #756bb1; |
color: #756bb1; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #636363; |
color: #636363; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #31a354; |
color: #31a354; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-variable { |
.hljs-variable { |
||||
color: #88f; |
color: #88f; |
||||
} |
} |
||||
|
|
||||
|
|
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-strong { |
.hljs-strong { |
||||
color: #3182bd; |
color: #3182bd; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-attribute { |
.hljs-attribute { |
||||
color: #e6550d; |
color: #e6550d; |
||||
} |
} |
||||
|
|||||
@ -1,77 +1,77 @@ |
|||||
/* |
/* |
||||
|
|
||||
Darcula color scheme from the JetBrains family of IDEs |
Darcula color scheme from the JetBrains family of IDEs |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #2b2b2b; |
background: #2b2b2b; |
||||
} |
} |
||||
|
|
||||
.hljs { |
.hljs { |
||||
color: #bababa; |
color: #bababa; |
||||
} |
} |
||||
|
|
||||
.hljs-strong, |
.hljs-strong, |
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
color: #a8a8a2; |
color: #a8a8a2; |
||||
} |
} |
||||
|
|
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-literal { |
.hljs-literal { |
||||
color: #6896ba; |
color: #6896ba; |
||||
} |
} |
||||
|
|
||||
.hljs-code, |
.hljs-code, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #a6e22e; |
color: #a6e22e; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-variable { |
.hljs-variable { |
||||
color: #cb7832; |
color: #cb7832; |
||||
} |
} |
||||
|
|
||||
.hljs-params { |
.hljs-params { |
||||
color: #b9b9b9; |
color: #b9b9b9; |
||||
} |
} |
||||
|
|
||||
.hljs-string { |
.hljs-string { |
||||
color: #6a8759; |
color: #6a8759; |
||||
} |
} |
||||
|
|
||||
.hljs-subst, |
.hljs-subst, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo, |
.hljs-selector-pseudo, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #e0c46c; |
color: #e0c46c; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #7f7f7f; |
color: #7f7f7f; |
||||
} |
} |
||||
|
|||||
@ -1,63 +1,63 @@ |
|||||
/* |
/* |
||||
|
|
||||
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #444; |
background: #444; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-link { |
.hljs-link { |
||||
color: white; |
color: white; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #ddd; |
color: #ddd; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable { |
.hljs-template-variable { |
||||
color: #d88; |
color: #d88; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #777; |
color: #777; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,6 +1,6 @@ |
|||||
/* |
/* |
||||
Deprecated due to a typo in the name and left here for compatibility purpose only. |
Deprecated due to a typo in the name and left here for compatibility purpose only. |
||||
Please use darcula.css instead. |
Please use darcula.css instead. |
||||
*/ |
*/ |
||||
|
|
||||
@import url('darcula.css'); |
@import url('darcula.css'); |
||||
|
|||||
@ -1,99 +1,99 @@ |
|||||
/* |
/* |
||||
|
|
||||
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> |
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #F0F0F0; |
background: #F0F0F0; |
||||
} |
} |
||||
|
|
||||
|
|
||||
/* Base color: saturation 0; */ |
/* Base color: saturation 0; */ |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #444; |
color: #444; |
||||
} |
} |
||||
|
|
||||
.hljs-comment { |
.hljs-comment { |
||||
color: #888888; |
color: #888888; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-meta-keyword, |
.hljs-meta-keyword, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-name { |
.hljs-name { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
|
|
||||
/* User color: hue: 0 */ |
/* User color: hue: 0 */ |
||||
|
|
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #880000; |
color: #880000; |
||||
} |
} |
||||
|
|
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section { |
.hljs-section { |
||||
color: #880000; |
color: #880000; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo { |
.hljs-selector-pseudo { |
||||
color: #BC6060; |
color: #BC6060; |
||||
} |
} |
||||
|
|
||||
|
|
||||
/* Language color: hue: 90; */ |
/* Language color: hue: 90; */ |
||||
|
|
||||
.hljs-literal { |
.hljs-literal { |
||||
color: #78A960; |
color: #78A960; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-code, |
.hljs-code, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #397300; |
color: #397300; |
||||
} |
} |
||||
|
|
||||
|
|
||||
/* Meta color: hue: 200 */ |
/* Meta color: hue: 200 */ |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #1f7199; |
color: #1f7199; |
||||
} |
} |
||||
|
|
||||
.hljs-meta-string { |
.hljs-meta-string { |
||||
color: #4d99bf; |
color: #4d99bf; |
||||
} |
} |
||||
|
|
||||
|
|
||||
/* Misc effects */ |
/* Misc effects */ |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,97 +1,97 @@ |
|||||
/* |
/* |
||||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) |
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
color: #000; |
color: #000; |
||||
background: #f8f8ff; |
background: #f8f8ff; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #408080; |
color: #408080; |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #954121; |
color: #954121; |
||||
} |
} |
||||
|
|
||||
.hljs-number { |
.hljs-number { |
||||
color: #40a070; |
color: #40a070; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-doctag { |
.hljs-doctag { |
||||
color: #219161; |
color: #219161; |
||||
} |
} |
||||
|
|
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-type { |
.hljs-type { |
||||
color: #19469d; |
color: #19469d; |
||||
} |
} |
||||
|
|
||||
.hljs-params { |
.hljs-params { |
||||
color: #00f; |
color: #00f; |
||||
} |
} |
||||
|
|
||||
.hljs-title { |
.hljs-title { |
||||
color: #458; |
color: #458; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-attribute { |
.hljs-attribute { |
||||
color: #000080; |
color: #000080; |
||||
font-weight: normal; |
font-weight: normal; |
||||
} |
} |
||||
|
|
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable { |
.hljs-template-variable { |
||||
color: #008080; |
color: #008080; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #b68; |
color: #b68; |
||||
} |
} |
||||
|
|
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #990073; |
color: #990073; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name { |
.hljs-builtin-name { |
||||
color: #0086b3; |
color: #0086b3; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #999; |
color: #999; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background: #fdd; |
background: #fdd; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background: #dfd; |
background: #dfd; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
@ -1,76 +1,76 @@ |
|||||
/* |
/* |
||||
|
|
||||
Dracula Theme v1.2.0 |
Dracula Theme v1.2.0 |
||||
|
|
||||
https://github.com/zenorocha/dracula-theme |
https://github.com/zenorocha/dracula-theme |
||||
|
|
||||
Copyright 2015, All rights reserved |
Copyright 2015, All rights reserved |
||||
|
|
||||
Code licensed under the MIT license |
Code licensed under the MIT license |
||||
http://zenorocha.mit-license.org |
http://zenorocha.mit-license.org |
||||
|
|
||||
@author Éverton Ribeiro <nuxlli@gmail.com> |
@author Éverton Ribeiro <nuxlli@gmail.com> |
||||
@author Zeno Rocha <hi@zenorocha.com> |
@author Zeno Rocha <hi@zenorocha.com> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #282a36; |
background: #282a36; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #8be9fd; |
color: #8be9fd; |
||||
} |
} |
||||
|
|
||||
.hljs-function .hljs-keyword { |
.hljs-function .hljs-keyword { |
||||
color: #ff79c6; |
color: #ff79c6; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #f8f8f2; |
color: #f8f8f2; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-addition, |
.hljs-addition, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable { |
.hljs-template-variable { |
||||
color: #f1fa8c; |
color: #f1fa8c; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-deletion, |
.hljs-deletion, |
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #6272a4; |
color: #6272a4; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,71 +1,71 @@ |
|||||
/* |
/* |
||||
|
|
||||
FAR Style (c) MajestiC <majestic2k@gmail.com> |
FAR Style (c) MajestiC <majestic2k@gmail.com> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #000080; |
background: #000080; |
||||
} |
} |
||||
|
|
||||
.hljs, |
.hljs, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #0ff; |
color: #0ff; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name, |
.hljs-builtin-name, |
||||
.hljs-template-tag, |
.hljs-template-tag, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #ff0; |
color: #ff0; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-variable { |
.hljs-variable { |
||||
color: #fff; |
color: #fff; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-doctag, |
.hljs-doctag, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #888; |
color: #888; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #0f0; |
color: #0f0; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #008080; |
color: #008080; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|||||
@ -1,88 +1,88 @@ |
|||||
/* |
/* |
||||
Description: Foundation 4 docs style for highlight.js |
Description: Foundation 4 docs style for highlight.js |
||||
Author: Dan Allen <dan.j.allen@gmail.com> |
Author: Dan Allen <dan.j.allen@gmail.com> |
||||
Website: http://foundation.zurb.com/docs/ |
Website: http://foundation.zurb.com/docs/ |
||||
Version: 1.0 |
Version: 1.0 |
||||
Date: 2013-04-02 |
Date: 2013-04-02 |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
background: #eee; color: black; |
background: #eee; color: black; |
||||
} |
} |
||||
|
|
||||
.hljs-link, |
.hljs-link, |
||||
.hljs-emphasis, |
.hljs-emphasis, |
||||
.hljs-attribute, |
.hljs-attribute, |
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #070; |
color: #070; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong, |
.hljs-strong, |
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #d14; |
color: #d14; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-quote, |
.hljs-quote, |
||||
.hljs-comment { |
.hljs-comment { |
||||
color: #998; |
color: #998; |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-title { |
.hljs-title { |
||||
color: #900; |
color: #900; |
||||
} |
} |
||||
|
|
||||
.hljs-class .hljs-title, |
.hljs-class .hljs-title, |
||||
.hljs-type { |
.hljs-type { |
||||
color: #458; |
color: #458; |
||||
} |
} |
||||
|
|
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable { |
.hljs-template-variable { |
||||
color: #336699; |
color: #336699; |
||||
} |
} |
||||
|
|
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #997700; |
color: #997700; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #3344bb; |
color: #3344bb; |
||||
} |
} |
||||
|
|
||||
.hljs-code, |
.hljs-code, |
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag { |
.hljs-selector-tag { |
||||
color: #099; |
color: #099; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp { |
.hljs-regexp { |
||||
background-color: #fff0ff; |
background-color: #fff0ff; |
||||
color: #880088; |
color: #880088; |
||||
} |
} |
||||
|
|
||||
.hljs-symbol { |
.hljs-symbol { |
||||
color: #990073; |
color: #990073; |
||||
} |
} |
||||
|
|
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class { |
.hljs-selector-class { |
||||
color: #007700; |
color: #007700; |
||||
} |
} |
||||
|
|||||
@ -1,71 +1,71 @@ |
|||||
/** |
/** |
||||
* GitHub Gist Theme |
* GitHub Gist Theme |
||||
* Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro |
* Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro |
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
background: white; |
background: white; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
color: #333333; |
color: #333333; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #969896; |
color: #969896; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-strong, |
.hljs-strong, |
||||
.hljs-emphasis, |
.hljs-emphasis, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #df5000; |
color: #df5000; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-type { |
.hljs-type { |
||||
color: #a71d5d; |
color: #a71d5d; |
||||
} |
} |
||||
|
|
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet, |
.hljs-bullet, |
||||
.hljs-attribute { |
.hljs-attribute { |
||||
color: #0086b3; |
color: #0086b3; |
||||
} |
} |
||||
|
|
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-name { |
.hljs-name { |
||||
color: #63a35c; |
color: #63a35c; |
||||
} |
} |
||||
|
|
||||
.hljs-tag { |
.hljs-tag { |
||||
color: #333333; |
color: #333333; |
||||
} |
} |
||||
|
|
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-attr, |
.hljs-attr, |
||||
.hljs-selector-id, |
.hljs-selector-id, |
||||
.hljs-selector-class, |
.hljs-selector-class, |
||||
.hljs-selector-attr, |
.hljs-selector-attr, |
||||
.hljs-selector-pseudo { |
.hljs-selector-pseudo { |
||||
color: #795da3; |
color: #795da3; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
color: #55a532; |
color: #55a532; |
||||
background-color: #eaffea; |
background-color: #eaffea; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
color: #bd2c00; |
color: #bd2c00; |
||||
background-color: #ffecec; |
background-color: #ffecec; |
||||
} |
} |
||||
|
|
||||
.hljs-link { |
.hljs-link { |
||||
text-decoration: underline; |
text-decoration: underline; |
||||
} |
} |
||||
|
|||||
@ -1,99 +1,99 @@ |
|||||
/* |
/* |
||||
|
|
||||
github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
||||
|
|
||||
*/ |
*/ |
||||
|
|
||||
.hljs { |
.hljs { |
||||
display: block; |
display: block; |
||||
overflow-x: auto; |
overflow-x: auto; |
||||
padding: 0.5em; |
padding: 0.5em; |
||||
color: #333; |
color: #333; |
||||
background: #f8f8f8; |
background: #f8f8f8; |
||||
} |
} |
||||
|
|
||||
.hljs-comment, |
.hljs-comment, |
||||
.hljs-quote { |
.hljs-quote { |
||||
color: #998; |
color: #998; |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-keyword, |
.hljs-keyword, |
||||
.hljs-selector-tag, |
.hljs-selector-tag, |
||||
.hljs-subst { |
.hljs-subst { |
||||
color: #333; |
color: #333; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-number, |
.hljs-number, |
||||
.hljs-literal, |
.hljs-literal, |
||||
.hljs-variable, |
.hljs-variable, |
||||
.hljs-template-variable, |
.hljs-template-variable, |
||||
.hljs-tag .hljs-attr { |
.hljs-tag .hljs-attr { |
||||
color: #008080; |
color: #008080; |
||||
} |
} |
||||
|
|
||||
.hljs-string, |
.hljs-string, |
||||
.hljs-doctag { |
.hljs-doctag { |
||||
color: #d14; |
color: #d14; |
||||
} |
} |
||||
|
|
||||
.hljs-title, |
.hljs-title, |
||||
.hljs-section, |
.hljs-section, |
||||
.hljs-selector-id { |
.hljs-selector-id { |
||||
color: #900; |
color: #900; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-subst { |
.hljs-subst { |
||||
font-weight: normal; |
font-weight: normal; |
||||
} |
} |
||||
|
|
||||
.hljs-type, |
.hljs-type, |
||||
.hljs-class .hljs-title { |
.hljs-class .hljs-title { |
||||
color: #458; |
color: #458; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-tag, |
.hljs-tag, |
||||
.hljs-name, |
.hljs-name, |
||||
.hljs-attribute { |
.hljs-attribute { |
||||
color: #000080; |
color: #000080; |
||||
font-weight: normal; |
font-weight: normal; |
||||
} |
} |
||||
|
|
||||
.hljs-regexp, |
.hljs-regexp, |
||||
.hljs-link { |
.hljs-link { |
||||
color: #009926; |
color: #009926; |
||||
} |
} |
||||
|
|
||||
.hljs-symbol, |
.hljs-symbol, |
||||
.hljs-bullet { |
.hljs-bullet { |
||||
color: #990073; |
color: #990073; |
||||
} |
} |
||||
|
|
||||
.hljs-built_in, |
.hljs-built_in, |
||||
.hljs-builtin-name { |
.hljs-builtin-name { |
||||
color: #0086b3; |
color: #0086b3; |
||||
} |
} |
||||
|
|
||||
.hljs-meta { |
.hljs-meta { |
||||
color: #999; |
color: #999; |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.hljs-deletion { |
.hljs-deletion { |
||||
background: #fdd; |
background: #fdd; |
||||
} |
} |
||||
|
|
||||
.hljs-addition { |
.hljs-addition { |
||||
background: #dfd; |
background: #dfd; |
||||
} |
} |
||||
|
|
||||
.hljs-emphasis { |
.hljs-emphasis { |
||||
font-style: italic; |
font-style: italic; |
||||
} |
} |
||||
|
|
||||
.hljs-strong { |
.hljs-strong { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|||||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue