mirror of https://github.com/avecms/AVE.cms.git
M@d D3n
5 years ago
13 changed files with 1076 additions and 0 deletions
@ -0,0 +1,194 @@
|
||||
<script language="Javascript" type="text/javascript"> |
||||
var sess = '{$sess}'; |
||||
</script> |
||||
|
||||
<div class="title"> |
||||
<h5>{#SYS_GROUPS#}</h5> |
||||
</div> |
||||
|
||||
<div class="widget" style="margin-top: 0px;"> |
||||
<div class="body"> |
||||
{#SYS_GROUPS_TIP#} |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="breadCrumbHolder module"> |
||||
<div class="breadCrumb module"> |
||||
<ul> |
||||
<li class="firstB"><a href="index.php" title="{#MAIN_PAGE#}">{#MAIN_PAGE#}</a></li> |
||||
<li> |
||||
<a href="index.php?do=sysblocks&cp={$sess}" title="">{#SYSBLOCK_LIST_LINK#}</a> |
||||
</li> |
||||
<li>{#SYS_GROUPS#}</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="widgets"> |
||||
<table class="first tableButtons" cellpadding="0" cellspacing="0" width="100%" id="sysblocksButtons"> |
||||
<colgroup> |
||||
<col width="25%"> |
||||
<col width="25%"> |
||||
<col width="25%"> |
||||
<col width="25%"> |
||||
</colgroup> |
||||
<tbody> |
||||
<tr> |
||||
<td> |
||||
<a class="button greyishBtn topBtn" href="index.php?do=sysblocks&cp={$sess}">{#SYSBLOCK_LIST_LINK#}</a> |
||||
</td> |
||||
<td> |
||||
<a class="button greenBtn topBtn" href="index.php?do=sysblocks&action=new&cp={$sess}">{#SYSBLOCK_BUTTON_ADD#}</a> |
||||
</td> |
||||
<td> |
||||
<a class="button basicBtn topBtn" href="index.php?do=sysblocks&action=groups&cp={$sess}">{#SYS_GROUPS#}</a> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
|
||||
{if $groups} |
||||
<div class="widget first"> |
||||
|
||||
<div class="head"> |
||||
<h5 class="iFrames">{#SYS_GROUPS#}</h5> |
||||
</div> |
||||
|
||||
<div id="groups_list"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic" id="GroupsList"> |
||||
<col width="10"> |
||||
<col width="10"> |
||||
<col> |
||||
<col width="10"> |
||||
<thead> |
||||
<tr> |
||||
<td align="center">ID</td> |
||||
<td align="center"><a href="javascript:void(0);" class="topDir link" style="cursor: help;" title="{#SYS_GROUPS_SORT_TIP#}">[?]</a></td> |
||||
<td align="center">{#SYS_GROUPS_GROUP_TITLE#}</td> |
||||
<td align="center"></td> |
||||
</tr> |
||||
</thead> |
||||
|
||||
<tbody> |
||||
{foreach from=$groups item=group} |
||||
<tr {if $groups|@count >= 2} data-id="group_{$group.id}" class="group_tbody"{/if}> |
||||
<td align="center"> |
||||
{$group.id} |
||||
</td> |
||||
<td align="center"> |
||||
<a class="icon_sprite ico_move{if $groups|@count < 2}_no{/if}" style="cursor:move"></a> |
||||
</td> |
||||
<td> |
||||
{$group.title} |
||||
</td> |
||||
<td align="center"> |
||||
<a href="index.php?do=sysblocks&action=delgroup&id={$group.id}&cp={$sess}" class="ConfirmDelete topleftDir icon_sprite ico_delete" title="{#SYS_GROUPS_DELETE#}" dir="{#SYS_GROUPS_DELETE#}" name="{#SYS_GROUPS_DELETE_H#}"></a> |
||||
</td> |
||||
</tr> |
||||
{/foreach} |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
</div> |
||||
|
||||
{else} |
||||
|
||||
<div class="widget first"> |
||||
|
||||
<div class="head"> |
||||
<h5 class="iFrames">{#SYS_GROUPS#}</h5> |
||||
</div> |
||||
|
||||
<div id="groups_list"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic" id="GroupsList"> |
||||
<col width="36"> |
||||
<col> |
||||
<col width="36"> |
||||
<thead> |
||||
<tr> |
||||
<td align="center"></td> |
||||
<td align="center"></td> |
||||
<td align="center"></td> |
||||
</tr> |
||||
</thead> |
||||
<tbody class="field_tbody"> |
||||
<tr> |
||||
<td align="center" colspan="10"> |
||||
<ul class="messages"> |
||||
<li class="highlight red">{#SYS_NO_GROUPS#}</li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
|
||||
</table> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
{/if} |
||||
|
||||
<div class="widget first"> |
||||
|
||||
<div class="head collapsible" id="opened"> |
||||
<h5>{#SYS_GROUPS_NEW#}</h5> |
||||
</div> |
||||
|
||||
<div style="display: block;"> |
||||
<form id="newfld" action="index.php?do=sysblocks&action=newgroup&cp={$sess}" method="post" class="mainForm"> |
||||
<table cellpadding="0" cellspacing="0" width="100%" class="tableStatic"> |
||||
<col width="250"> |
||||
<col> |
||||
<thead> |
||||
<tr> |
||||
<td></td> |
||||
<td></td> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr> |
||||
<td> |
||||
{#SYS_GROUP_TITLE#} |
||||
</td> |
||||
<td> |
||||
<div class="pr12"> |
||||
<input name="title" type="text" id="title" value="" autocomplete="off" /> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td> |
||||
{#SYS_GROUP_DESCRIPTION#} |
||||
</td> |
||||
<td> |
||||
<div class="pr12"> |
||||
<textarea name="description" id="description" rows="8" cols="" class="mousetrap"></textarea> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<div class="rowElem"> |
||||
<input class="basicBtn AddNewField" type="submit" value="{#SYS_GROUP_BTN#}" /> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<script language="javascript"> |
||||
|
||||
$(document).ready(function(){ldelim} |
||||
|
||||
// сортировка |
||||
$('#GroupsList tbody').tableSortable({ldelim} |
||||
items: '.group_tbody', |
||||
url: 'index.php?do=sysblocks&action=groupssort&cp={$sess}', |
||||
success: true |
||||
{rdelim}); |
||||
|
||||
{rdelim}); |
||||
</script> |
@ -0,0 +1,42 @@
|
||||
/* Based on https://github.com/dempfi/ayu */ |
||||
|
||||
.cm-s-ayu-dark.CodeMirror { background: #0a0e14; color: #b3b1ad; } |
||||
.cm-s-ayu-dark div.CodeMirror-selected { background: #273747; } |
||||
.cm-s-ayu-dark .CodeMirror-line::selection, .cm-s-ayu-dark .CodeMirror-line > span::selection, .cm-s-ayu-dark .CodeMirror-line > span > span::selection { background: rgba(39, 55, 71, 99); } |
||||
.cm-s-ayu-dark .CodeMirror-line::-moz-selection, .cm-s-ayu-dark .CodeMirror-line > span::-moz-selection, .cm-s-ayu-dark .CodeMirror-line > span > span::-moz-selection { background: rgba(39, 55, 71, 99); } |
||||
.cm-s-ayu-dark .CodeMirror-gutters { background: #0a0e14; border-right: 0px; } |
||||
.cm-s-ayu-dark .CodeMirror-guttermarker { color: white; } |
||||
.cm-s-ayu-dark .CodeMirror-guttermarker-subtle { color: #3d424d; } |
||||
.cm-s-ayu-dark .CodeMirror-linenumber { color: #3d424d; } |
||||
.cm-s-ayu-dark .CodeMirror-cursor { border-left: 1px solid #e6b450; } |
||||
|
||||
.cm-s-ayu-dark span.cm-comment { color: #626a73; } |
||||
.cm-s-ayu-dark span.cm-atom { color: #ae81ff; } |
||||
.cm-s-ayu-dark span.cm-number { color: #e6b450; } |
||||
|
||||
.cm-s-ayu-dark span.cm-comment.cm-attribute { color: #ffb454; } |
||||
.cm-s-ayu-dark span.cm-comment.cm-def { color: rgba(57, 186, 230, 80); } |
||||
.cm-s-ayu-dark span.cm-comment.cm-tag { color: #39bae6; } |
||||
.cm-s-ayu-dark span.cm-comment.cm-type { color: #5998a6; } |
||||
|
||||
.cm-s-ayu-dark span.cm-property, .cm-s-ayu-dark span.cm-attribute { color: #ffb454; } |
||||
.cm-s-ayu-dark span.cm-keyword { color: #ff8f40; } |
||||
.cm-s-ayu-dark span.cm-builtin { color: #e6b450; } |
||||
.cm-s-ayu-dark span.cm-string { color: #c2d94c; } |
||||
|
||||
.cm-s-ayu-dark span.cm-variable { color: #b3b1ad; } |
||||
.cm-s-ayu-dark span.cm-variable-2 { color: #f07178; } |
||||
.cm-s-ayu-dark span.cm-variable-3 { color: #39bae6; } |
||||
.cm-s-ayu-dark span.cm-type { color: #ff8f40; } |
||||
.cm-s-ayu-dark span.cm-def { color: #ffee99; } |
||||
.cm-s-ayu-dark span.cm-bracket { color: #f8f8f2; } |
||||
.cm-s-ayu-dark span.cm-tag { color: rgba(57, 186, 230, 80); } |
||||
.cm-s-ayu-dark span.cm-header { color: #c2d94c; } |
||||
.cm-s-ayu-dark span.cm-link { color: #39bae6; } |
||||
.cm-s-ayu-dark span.cm-error { color: #ff3333; } |
||||
|
||||
.cm-s-ayu-dark .CodeMirror-activeline-background { background: #01060e; } |
||||
.cm-s-ayu-dark .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,43 @@
|
||||
/* Based on https://github.com/dempfi/ayu */ |
||||
|
||||
.cm-s-ayu-mirage.CodeMirror { background: #1f2430; color: #cbccc6; } |
||||
.cm-s-ayu-mirage div.CodeMirror-selected { background: #34455a; } |
||||
.cm-s-ayu-mirage .CodeMirror-line::selection, .cm-s-ayu-mirage .CodeMirror-line > span::selection, .cm-s-ayu-mirage .CodeMirror-line > span > span::selection { background: #34455a; } |
||||
.cm-s-ayu-mirage .CodeMirror-line::-moz-selection, .cm-s-ayu-mirage .CodeMirror-line > span::-moz-selection, .cm-s-ayu-mirage .CodeMirror-line > span > span::-moz-selection { background: rgba(25, 30, 42, 99); } |
||||
.cm-s-ayu-mirage .CodeMirror-gutters { background: #1f2430; border-right: 0px; } |
||||
.cm-s-ayu-mirage .CodeMirror-guttermarker { color: white; } |
||||
.cm-s-ayu-mirage .CodeMirror-guttermarker-subtle { color: rgba(112, 122, 140, 66); } |
||||
.cm-s-ayu-mirage .CodeMirror-linenumber { color: rgba(61, 66, 77, 99); } |
||||
.cm-s-ayu-mirage .CodeMirror-cursor { border-left: 1px solid #ffcc66; } |
||||
|
||||
.cm-s-ayu-mirage span.cm-comment { color: #5c6773; font-style:italic; } |
||||
.cm-s-ayu-mirage span.cm-atom { color: #ae81ff; } |
||||
.cm-s-ayu-mirage span.cm-number { color: #ffcc66; } |
||||
|
||||
.cm-s-ayu-mirage span.cm-comment.cm-attribute { color: #ffd580; } |
||||
.cm-s-ayu-mirage span.cm-comment.cm-def { color: #d4bfff; } |
||||
.cm-s-ayu-mirage span.cm-comment.cm-tag { color: #5ccfe6; } |
||||
.cm-s-ayu-mirage span.cm-comment.cm-type { color: #5998a6; } |
||||
|
||||
.cm-s-ayu-mirage span.cm-property { color: #f29e74; } |
||||
.cm-s-ayu-mirage span.cm-attribute { color: #ffd580; } |
||||
.cm-s-ayu-mirage span.cm-keyword { color: #ffa759; } |
||||
.cm-s-ayu-mirage span.cm-builtin { color: #ffcc66; } |
||||
.cm-s-ayu-mirage span.cm-string { color: #bae67e; } |
||||
|
||||
.cm-s-ayu-mirage span.cm-variable { color: #cbccc6; } |
||||
.cm-s-ayu-mirage span.cm-variable-2 { color: #f28779; } |
||||
.cm-s-ayu-mirage span.cm-variable-3 { color: #5ccfe6; } |
||||
.cm-s-ayu-mirage span.cm-type { color: #ffa759; } |
||||
.cm-s-ayu-mirage span.cm-def { color: #ffd580; } |
||||
.cm-s-ayu-mirage span.cm-bracket { color: rgba(92, 207, 230, 80); } |
||||
.cm-s-ayu-mirage span.cm-tag { color: #5ccfe6; } |
||||
.cm-s-ayu-mirage span.cm-header { color: #bae67e; } |
||||
.cm-s-ayu-mirage span.cm-link { color: #5ccfe6; } |
||||
.cm-s-ayu-mirage span.cm-error { color: #ff3333; } |
||||
|
||||
.cm-s-ayu-mirage .CodeMirror-activeline-background { background: #191e2a; } |
||||
.cm-s-ayu-mirage .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,53 @@
|
||||
/** |
||||
Name: IntelliJ IDEA darcula theme |
||||
From IntelliJ IDEA by JetBrains |
||||
*/ |
||||
|
||||
.cm-s-darcula { font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif;} |
||||
.cm-s-darcula.CodeMirror { background: #2B2B2B; color: #A9B7C6; } |
||||
|
||||
.cm-s-darcula span.cm-meta { color: #BBB529; } |
||||
.cm-s-darcula span.cm-number { color: #6897BB; } |
||||
.cm-s-darcula span.cm-keyword { color: #CC7832; line-height: 1em; font-weight: bold; } |
||||
.cm-s-darcula span.cm-def { color: #A9B7C6; font-style: italic; } |
||||
.cm-s-darcula span.cm-variable { color: #A9B7C6; } |
||||
.cm-s-darcula span.cm-variable-2 { color: #A9B7C6; } |
||||
.cm-s-darcula span.cm-variable-3 { color: #9876AA; } |
||||
.cm-s-darcula span.cm-type { color: #AABBCC; font-weight: bold; } |
||||
.cm-s-darcula span.cm-property { color: #FFC66D; } |
||||
.cm-s-darcula span.cm-operator { color: #A9B7C6; } |
||||
.cm-s-darcula span.cm-string { color: #6A8759; } |
||||
.cm-s-darcula span.cm-string-2 { color: #6A8759; } |
||||
.cm-s-darcula span.cm-comment { color: #61A151; font-style: italic; } |
||||
.cm-s-darcula span.cm-link { color: #CC7832; } |
||||
.cm-s-darcula span.cm-atom { color: #CC7832; } |
||||
.cm-s-darcula span.cm-error { color: #BC3F3C; } |
||||
.cm-s-darcula span.cm-tag { color: #629755; font-weight: bold; font-style: italic; text-decoration: underline; } |
||||
.cm-s-darcula span.cm-attribute { color: #6897bb; } |
||||
.cm-s-darcula span.cm-qualifier { color: #6A8759; } |
||||
.cm-s-darcula span.cm-bracket { color: #A9B7C6; } |
||||
.cm-s-darcula span.cm-builtin { color: #FF9E59; } |
||||
.cm-s-darcula span.cm-special { color: #FF9E59; } |
||||
.cm-s-darcula span.cm-matchhighlight { color: #FFFFFF; background-color: rgba(50, 89, 48, .7); font-weight: normal;} |
||||
.cm-s-darcula span.cm-searching { color: #FFFFFF; background-color: rgba(61, 115, 59, .7); font-weight: normal;} |
||||
|
||||
.cm-s-darcula .CodeMirror-cursor { border-left: 1px solid #A9B7C6; } |
||||
.cm-s-darcula .CodeMirror-activeline-background { background: #323232; } |
||||
.cm-s-darcula .CodeMirror-gutters { background: #313335; border-right: 1px solid #313335; } |
||||
.cm-s-darcula .CodeMirror-guttermarker { color: #FFEE80; } |
||||
.cm-s-darcula .CodeMirror-guttermarker-subtle { color: #D0D0D0; } |
||||
.cm-s-darcula .CodeMirrir-linenumber { color: #606366; } |
||||
.cm-s-darcula .CodeMirror-matchingbracket { background-color: #3B514D; color: #FFEF28 !important; font-weight: bold; } |
||||
|
||||
.cm-s-darcula div.CodeMirror-selected { background: #214283; } |
||||
|
||||
.CodeMirror-hints.darcula { |
||||
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; |
||||
color: #9C9E9E; |
||||
background-color: #3B3E3F !important; |
||||
} |
||||
|
||||
.CodeMirror-hints.darcula .CodeMirror-hint-active { |
||||
background-color: #494D4E !important; |
||||
color: #9C9E9E !important; |
||||
} |
@ -0,0 +1,37 @@
|
||||
/* |
||||
|
||||
Name: gruvbox-dark |
||||
Author: kRkk (https://github.com/krkk) |
||||
|
||||
Original gruvbox color scheme by Pavel Pertsev (https://github.com/morhetz/gruvbox) |
||||
|
||||
*/ |
||||
|
||||
.cm-s-gruvbox-dark.CodeMirror, .cm-s-gruvbox-dark .CodeMirror-gutters { background-color: #282828; color: #bdae93; } |
||||
.cm-s-gruvbox-dark .CodeMirror-gutters {background: #282828; border-right: 0px;} |
||||
.cm-s-gruvbox-dark .CodeMirror-linenumber {color: #7c6f64;} |
||||
.cm-s-gruvbox-dark .CodeMirror-cursor { border-left: 1px solid #ebdbb2; } |
||||
.cm-s-gruvbox-dark div.CodeMirror-selected { background: #928374; } |
||||
.cm-s-gruvbox-dark span.cm-meta { color: #83a598; } |
||||
|
||||
.cm-s-gruvbox-dark span.cm-comment { color: #928374; } |
||||
.cm-s-gruvbox-dark span.cm-number, span.cm-atom { color: #d3869b; } |
||||
.cm-s-gruvbox-dark span.cm-keyword { color: #f84934; } |
||||
|
||||
.cm-s-gruvbox-dark span.cm-variable { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-variable-2 { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-variable-3, .cm-s-gruvbox-dark span.cm-type { color: #fabd2f; } |
||||
.cm-s-gruvbox-dark span.cm-operator { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-callee { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-def { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-property { color: #ebdbb2; } |
||||
.cm-s-gruvbox-dark span.cm-string { color: #b8bb26; } |
||||
.cm-s-gruvbox-dark span.cm-string-2 { color: #8ec07c; } |
||||
.cm-s-gruvbox-dark span.cm-qualifier { color: #8ec07c; } |
||||
.cm-s-gruvbox-dark span.cm-attribute { color: #8ec07c; } |
||||
|
||||
.cm-s-gruvbox-dark .CodeMirror-activeline-background { background: #3c3836; } |
||||
.cm-s-gruvbox-dark .CodeMirror-matchingbracket { background: #928374; color:#282828 !important; } |
||||
|
||||
.cm-s-gruvbox-dark span.cm-builtin { color: #fe8019; } |
||||
.cm-s-gruvbox-dark span.cm-tag { color: #fe8019; } |
@ -0,0 +1,42 @@
|
||||
/** |
||||
Name: IDEA default theme |
||||
From IntelliJ IDEA by JetBrains |
||||
*/ |
||||
|
||||
.cm-s-idea span.cm-meta { color: #808000; } |
||||
.cm-s-idea span.cm-number { color: #0000FF; } |
||||
.cm-s-idea span.cm-keyword { line-height: 1em; font-weight: bold; color: #000080; } |
||||
.cm-s-idea span.cm-atom { font-weight: bold; color: #000080; } |
||||
.cm-s-idea span.cm-def { color: #000000; } |
||||
.cm-s-idea span.cm-variable { color: black; } |
||||
.cm-s-idea span.cm-variable-2 { color: black; } |
||||
.cm-s-idea span.cm-variable-3, .cm-s-idea span.cm-type { color: black; } |
||||
.cm-s-idea span.cm-property { color: black; } |
||||
.cm-s-idea span.cm-operator { color: black; } |
||||
.cm-s-idea span.cm-comment { color: #808080; } |
||||
.cm-s-idea span.cm-string { color: #008000; } |
||||
.cm-s-idea span.cm-string-2 { color: #008000; } |
||||
.cm-s-idea span.cm-qualifier { color: #555; } |
||||
.cm-s-idea span.cm-error { color: #FF0000; } |
||||
.cm-s-idea span.cm-attribute { color: #0000FF; } |
||||
.cm-s-idea span.cm-tag { color: #000080; } |
||||
.cm-s-idea span.cm-link { color: #0000FF; } |
||||
.cm-s-idea .CodeMirror-activeline-background { background: #FFFAE3; } |
||||
|
||||
.cm-s-idea span.cm-builtin { color: #30a; } |
||||
.cm-s-idea span.cm-bracket { color: #cc7; } |
||||
.cm-s-idea { font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;} |
||||
|
||||
|
||||
.cm-s-idea .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; } |
||||
|
||||
.CodeMirror-hints.idea { |
||||
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; |
||||
color: #616569; |
||||
background-color: #ebf3fd !important; |
||||
} |
||||
|
||||
.CodeMirror-hints.idea .CodeMirror-hint-active { |
||||
background-color: #a2b8c9 !important; |
||||
color: #5c6065 !important; |
||||
} |
@ -0,0 +1,135 @@
|
||||
/* |
||||
Name: material |
||||
Author: Mattia Astorino (http://github.com/equinusocio) |
||||
Website: https://material-theme.site/ |
||||
*/ |
||||
|
||||
.cm-s-material-darker.CodeMirror { |
||||
background-color: #212121; |
||||
color: #EEFFFF; |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-gutters { |
||||
background: #212121; |
||||
color: #545454; |
||||
border: none; |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-guttermarker, |
||||
.cm-s-material-darker .CodeMirror-guttermarker-subtle, |
||||
.cm-s-material-darker .CodeMirror-linenumber { |
||||
color: #545454; |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-cursor { |
||||
border-left: 1px solid #FFCC00; |
||||
} |
||||
|
||||
.cm-s-material-darker div.CodeMirror-selected { |
||||
background: rgba(97, 97, 97, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-darker.CodeMirror-focused div.CodeMirror-selected { |
||||
background: rgba(97, 97, 97, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-line::selection, |
||||
.cm-s-material-darker .CodeMirror-line>span::selection, |
||||
.cm-s-material-darker .CodeMirror-line>span>span::selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-line::-moz-selection, |
||||
.cm-s-material-darker .CodeMirror-line>span::-moz-selection, |
||||
.cm-s-material-darker .CodeMirror-line>span>span::-moz-selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-activeline-background { |
||||
background: rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-keyword { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-operator { |
||||
color: #89DDFF; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-variable-2 { |
||||
color: #EEFFFF; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-variable-3, |
||||
.cm-s-material-darker .cm-type { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-builtin { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-atom { |
||||
color: #F78C6C; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-number { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-def { |
||||
color: #82AAFF; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-string { |
||||
color: #C3E88D; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-string-2 { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-comment { |
||||
color: #545454; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-variable { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-tag { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-meta { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-attribute { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-property { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-qualifier { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
.cm-s-material-darker .cm-variable-3, |
||||
.cm-s-material-darker .cm-type { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
|
||||
.cm-s-material-darker .cm-error { |
||||
color: rgba(255, 255, 255, 1.0); |
||||
background-color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-darker .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,135 @@
|
||||
/* |
||||
Name: material |
||||
Author: Mattia Astorino (http://github.com/equinusocio) |
||||
Website: https://material-theme.site/ |
||||
*/ |
||||
|
||||
.cm-s-material-ocean.CodeMirror { |
||||
background-color: #0F111A; |
||||
color: #8F93A2; |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-gutters { |
||||
background: #0F111A; |
||||
color: #464B5D; |
||||
border: none; |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-guttermarker, |
||||
.cm-s-material-ocean .CodeMirror-guttermarker-subtle, |
||||
.cm-s-material-ocean .CodeMirror-linenumber { |
||||
color: #464B5D; |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-cursor { |
||||
border-left: 1px solid #FFCC00; |
||||
} |
||||
|
||||
.cm-s-material-ocean div.CodeMirror-selected { |
||||
background: rgba(113, 124, 180, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-ocean.CodeMirror-focused div.CodeMirror-selected { |
||||
background: rgba(113, 124, 180, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-line::selection, |
||||
.cm-s-material-ocean .CodeMirror-line>span::selection, |
||||
.cm-s-material-ocean .CodeMirror-line>span>span::selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-line::-moz-selection, |
||||
.cm-s-material-ocean .CodeMirror-line>span::-moz-selection, |
||||
.cm-s-material-ocean .CodeMirror-line>span>span::-moz-selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-activeline-background { |
||||
background: rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-keyword { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-operator { |
||||
color: #89DDFF; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-variable-2 { |
||||
color: #EEFFFF; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-variable-3, |
||||
.cm-s-material-ocean .cm-type { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-builtin { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-atom { |
||||
color: #F78C6C; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-number { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-def { |
||||
color: #82AAFF; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-string { |
||||
color: #C3E88D; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-string-2 { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-comment { |
||||
color: #464B5D; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-variable { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-tag { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-meta { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-attribute { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-property { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-qualifier { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
.cm-s-material-ocean .cm-variable-3, |
||||
.cm-s-material-ocean .cm-type { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
|
||||
.cm-s-material-ocean .cm-error { |
||||
color: rgba(255, 255, 255, 1.0); |
||||
background-color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-ocean .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,135 @@
|
||||
/* |
||||
Name: material |
||||
Author: Mattia Astorino (http://github.com/equinusocio) |
||||
Website: https://material-theme.site/ |
||||
*/ |
||||
|
||||
.cm-s-material-palenight.CodeMirror { |
||||
background-color: #292D3E; |
||||
color: #A6ACCD; |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-gutters { |
||||
background: #292D3E; |
||||
color: #676E95; |
||||
border: none; |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-guttermarker, |
||||
.cm-s-material-palenight .CodeMirror-guttermarker-subtle, |
||||
.cm-s-material-palenight .CodeMirror-linenumber { |
||||
color: #676E95; |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-cursor { |
||||
border-left: 1px solid #FFCC00; |
||||
} |
||||
|
||||
.cm-s-material-palenight div.CodeMirror-selected { |
||||
background: rgba(113, 124, 180, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-palenight.CodeMirror-focused div.CodeMirror-selected { |
||||
background: rgba(113, 124, 180, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-line::selection, |
||||
.cm-s-material-palenight .CodeMirror-line>span::selection, |
||||
.cm-s-material-palenight .CodeMirror-line>span>span::selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-line::-moz-selection, |
||||
.cm-s-material-palenight .CodeMirror-line>span::-moz-selection, |
||||
.cm-s-material-palenight .CodeMirror-line>span>span::-moz-selection { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-activeline-background { |
||||
background: rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-keyword { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-operator { |
||||
color: #89DDFF; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-variable-2 { |
||||
color: #EEFFFF; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-variable-3, |
||||
.cm-s-material-palenight .cm-type { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-builtin { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-atom { |
||||
color: #F78C6C; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-number { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-def { |
||||
color: #82AAFF; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-string { |
||||
color: #C3E88D; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-string-2 { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-comment { |
||||
color: #676E95; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-variable { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-tag { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-meta { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-attribute { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-property { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-qualifier { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
.cm-s-material-palenight .cm-variable-3, |
||||
.cm-s-material-palenight .cm-type { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
|
||||
.cm-s-material-palenight .cm-error { |
||||
color: rgba(255, 255, 255, 1.0); |
||||
background-color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-material-palenight .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,143 @@
|
||||
/* |
||||
Name: Moxer Theme |
||||
Author: Mattia Astorino (http://github.com/equinusocio) |
||||
Website: https://github.com/moxer-theme/moxer-code |
||||
*/ |
||||
|
||||
.cm-s-moxer.CodeMirror { |
||||
background-color: #090A0F; |
||||
color: #8E95B4; |
||||
line-height: 1.8; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-gutters { |
||||
background: #090A0F; |
||||
color: #35394B; |
||||
border: none; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-guttermarker, |
||||
.cm-s-moxer .CodeMirror-guttermarker-subtle, |
||||
.cm-s-moxer .CodeMirror-linenumber { |
||||
color: #35394B; |
||||
} |
||||
|
||||
|
||||
.cm-s-moxer .CodeMirror-cursor { |
||||
border-left: 1px solid #FFCC00; |
||||
} |
||||
|
||||
.cm-s-moxer div.CodeMirror-selected { |
||||
background: rgba(128, 203, 196, 0.2); |
||||
} |
||||
|
||||
.cm-s-moxer.CodeMirror-focused div.CodeMirror-selected { |
||||
background: #212431; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-line::selection, |
||||
.cm-s-moxer .CodeMirror-line>span::selection, |
||||
.cm-s-moxer .CodeMirror-line>span>span::selection { |
||||
background: #212431; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-line::-moz-selection, |
||||
.cm-s-moxer .CodeMirror-line>span::-moz-selection, |
||||
.cm-s-moxer .CodeMirror-line>span>span::-moz-selection { |
||||
background: #212431; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-activeline-background, |
||||
.cm-s-moxer .CodeMirror-activeline-gutter .CodeMirror-linenumber { |
||||
background: rgba(33, 36, 49, 0.5); |
||||
} |
||||
|
||||
.cm-s-moxer .cm-keyword { |
||||
color: #D46C6C; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-operator { |
||||
color: #D46C6C; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-variable-2 { |
||||
color: #81C5DA; |
||||
} |
||||
|
||||
|
||||
.cm-s-moxer .cm-variable-3, |
||||
.cm-s-moxer .cm-type { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-builtin { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-atom { |
||||
color: #A99BE2; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-number { |
||||
color: #7CA4C0; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-def { |
||||
color: #F5DFA5; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-line .cm-def ~ .cm-def { |
||||
color: #81C5DA; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-string { |
||||
color: #B2E4AE; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-string-2 { |
||||
color: #f07178; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-comment { |
||||
color: #3F445A; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-variable { |
||||
color: #8E95B4; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-tag { |
||||
color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-meta { |
||||
color: #FFCB6B; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-attribute { |
||||
color: #C792EA; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-property { |
||||
color: #81C5DA; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-qualifier { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
.cm-s-moxer .cm-variable-3, |
||||
.cm-s-moxer .cm-type { |
||||
color: #DECB6B; |
||||
} |
||||
|
||||
|
||||
.cm-s-moxer .cm-error { |
||||
color: rgba(255, 255, 255, 1.0); |
||||
background-color: #FF5370; |
||||
} |
||||
|
||||
.cm-s-moxer .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,42 @@
|
||||
/* Based on arcticicestudio's Nord theme */ |
||||
/* https://github.com/arcticicestudio/nord */ |
||||
|
||||
.cm-s-nord.CodeMirror { background: #2e3440; color: #d8dee9; } |
||||
.cm-s-nord div.CodeMirror-selected { background: #434c5e; } |
||||
.cm-s-nord .CodeMirror-line::selection, .cm-s-nord .CodeMirror-line > span::selection, .cm-s-nord .CodeMirror-line > span > span::selection { background: #3b4252; } |
||||
.cm-s-nord .CodeMirror-line::-moz-selection, .cm-s-nord .CodeMirror-line > span::-moz-selection, .cm-s-nord .CodeMirror-line > span > span::-moz-selection { background: #3b4252; } |
||||
.cm-s-nord .CodeMirror-gutters { background: #2e3440; border-right: 0px; } |
||||
.cm-s-nord .CodeMirror-guttermarker { color: #4c566a; } |
||||
.cm-s-nord .CodeMirror-guttermarker-subtle { color: #4c566a; } |
||||
.cm-s-nord .CodeMirror-linenumber { color: #4c566a; } |
||||
.cm-s-nord .CodeMirror-cursor { border-left: 1px solid #f8f8f0; } |
||||
|
||||
.cm-s-nord span.cm-comment { color: #4c566a; } |
||||
.cm-s-nord span.cm-atom { color: #b48ead; } |
||||
.cm-s-nord span.cm-number { color: #b48ead; } |
||||
|
||||
.cm-s-nord span.cm-comment.cm-attribute { color: #97b757; } |
||||
.cm-s-nord span.cm-comment.cm-def { color: #bc9262; } |
||||
.cm-s-nord span.cm-comment.cm-tag { color: #bc6283; } |
||||
.cm-s-nord span.cm-comment.cm-type { color: #5998a6; } |
||||
|
||||
.cm-s-nord span.cm-property, .cm-s-nord span.cm-attribute { color: #8FBCBB; } |
||||
.cm-s-nord span.cm-keyword { color: #81A1C1; } |
||||
.cm-s-nord span.cm-builtin { color: #81A1C1; } |
||||
.cm-s-nord span.cm-string { color: #A3BE8C; } |
||||
|
||||
.cm-s-nord span.cm-variable { color: #d8dee9; } |
||||
.cm-s-nord span.cm-variable-2 { color: #d8dee9; } |
||||
.cm-s-nord span.cm-variable-3, .cm-s-nord span.cm-type { color: #d8dee9; } |
||||
.cm-s-nord span.cm-def { color: #8FBCBB; } |
||||
.cm-s-nord span.cm-bracket { color: #81A1C1; } |
||||
.cm-s-nord span.cm-tag { color: #bf616a; } |
||||
.cm-s-nord span.cm-header { color: #b48ead; } |
||||
.cm-s-nord span.cm-link { color: #b48ead; } |
||||
.cm-s-nord span.cm-error { background: #bf616a; color: #f8f8f0; } |
||||
|
||||
.cm-s-nord .CodeMirror-activeline-background { background: #3b4252; } |
||||
.cm-s-nord .CodeMirror-matchingbracket { |
||||
text-decoration: underline; |
||||
color: white !important; |
||||
} |
@ -0,0 +1,16 @@
|
||||
.cm-s-ssms span.cm-keyword { color: blue; } |
||||
.cm-s-ssms span.cm-comment { color: darkgreen; } |
||||
.cm-s-ssms span.cm-string { color: red; } |
||||
.cm-s-ssms span.cm-def { color: black; } |
||||
.cm-s-ssms span.cm-variable { color: black; } |
||||
.cm-s-ssms span.cm-variable-2 { color: black; } |
||||
.cm-s-ssms span.cm-atom { color: darkgray; } |
||||
.cm-s-ssms .CodeMirror-linenumber { color: teal; } |
||||
.cm-s-ssms .CodeMirror-activeline-background { background: #ffffff; } |
||||
.cm-s-ssms span.cm-string-2 { color: #FF00FF; } |
||||
.cm-s-ssms span.cm-operator, |
||||
.cm-s-ssms span.cm-bracket, |
||||
.cm-s-ssms span.cm-punctuation { color: darkgray; } |
||||
.cm-s-ssms .CodeMirror-gutters { border-right: 3px solid #ffee62; background-color: #ffffff; } |
||||
.cm-s-ssms div.CodeMirror-selected { background: #ADD6FF; } |
||||
|
@ -0,0 +1,59 @@
|
||||
/* |
||||
|
||||
Name: yoncé |
||||
Author: Thomas MacLean (http://github.com/thomasmaclean) |
||||
|
||||
Original yoncé color scheme by Mina Markham (https://github.com/minamarkham) |
||||
|
||||
*/ |
||||
|
||||
.cm-s-yonce.CodeMirror { background: #1C1C1C; color: #d4d4d4; } /**/ |
||||
.cm-s-yonce div.CodeMirror-selected { background: rgba(252, 69, 133, 0.478); } /**/ |
||||
.cm-s-yonce .CodeMirror-selectedtext, |
||||
.cm-s-yonce .CodeMirror-selected, |
||||
.cm-s-yonce .CodeMirror-line::selection, |
||||
.cm-s-yonce .CodeMirror-line > span::selection, |
||||
.cm-s-yonce .CodeMirror-line > span > span::selection, |
||||
.cm-s-yonce .CodeMirror-line::-moz-selection, |
||||
.cm-s-yonce .CodeMirror-line > span::-moz-selection, |
||||
.cm-s-yonce .CodeMirror-line > span > span::-moz-selection { background: rgba(252, 67, 132, 0.47); } |
||||
|
||||
.cm-s-yonce.CodeMirror pre { padding-left: 0px; } |
||||
.cm-s-yonce .CodeMirror-gutters {background: #1C1C1C; border-right: 0px;} |
||||
.cm-s-yonce .CodeMirror-linenumber {color: #777777; padding-right: 10px; } |
||||
.cm-s-yonce .CodeMirror-activeline .CodeMirror-linenumber.CodeMirror-gutter-elt { background: #1C1C1C; color: #fc4384; } |
||||
.cm-s-yonce .CodeMirror-linenumber { color: #777; } |
||||
.cm-s-yonce .CodeMirror-cursor { border-left: 2px solid #FC4384; } |
||||
.cm-s-yonce .cm-searching { background: rgba(243, 155, 53, .3) !important; outline: 1px solid #F39B35; } |
||||
.cm-s-yonce .cm-searching.CodeMirror-selectedtext { background: rgba(243, 155, 53, .7) !important; color: white; } |
||||
|
||||
.cm-s-yonce .cm-keyword { color: #00A7AA; } /**/ |
||||
.cm-s-yonce .cm-atom { color: #F39B35; } |
||||
.cm-s-yonce .cm-number, .cm-s-yonce span.cm-type { color: #A06FCA; } /**/ |
||||
.cm-s-yonce .cm-def { color: #98E342; } |
||||
.cm-s-yonce .cm-property, |
||||
.cm-s-yonce span.cm-variable { color: #D4D4D4; font-style: italic; } |
||||
.cm-s-yonce span.cm-variable-2 { color: #da7dae; font-style: italic; } |
||||
.cm-s-yonce span.cm-variable-3 { color: #A06FCA; } |
||||
.cm-s-yonce .cm-type.cm-def { color: #FC4384; font-style: normal; text-decoration: underline; } |
||||
.cm-s-yonce .cm-property.cm-def { color: #FC4384; font-style: normal; } |
||||
.cm-s-yonce .cm-callee { color: #FC4384; font-style: normal; } |
||||
.cm-s-yonce .cm-operator { color: #FC4384; } /**/ |
||||
.cm-s-yonce .cm-qualifier, |
||||
.cm-s-yonce .cm-tag { color: #FC4384; } |
||||
.cm-s-yonce .cm-tag.cm-bracket { color: #D4D4D4; } |
||||
.cm-s-yonce .cm-attribute { color: #A06FCA; } |
||||
.cm-s-yonce .cm-comment { color:#696d70; font-style:italic; font-weight:normal; } /**/ |
||||
.cm-s-yonce .cm-comment.cm-tag { color: #FC4384 } |
||||
.cm-s-yonce .cm-comment.cm-attribute { color: #D4D4D4; } |
||||
.cm-s-yonce .cm-string { color:#E6DB74; } /**/ |
||||
.cm-s-yonce .cm-string-2 { color:#F39B35; } /*?*/ |
||||
.cm-s-yonce .cm-meta { color: #D4D4D4; background: inherit; } |
||||
.cm-s-yonce .cm-builtin { color: #FC4384; } /*?*/ |
||||
.cm-s-yonce .cm-header { color: #da7dae; } |
||||
.cm-s-yonce .cm-hr { color: #98E342; } |
||||
.cm-s-yonce .cm-link { color:#696d70; font-style:italic; text-decoration:none; } /**/ |
||||
.cm-s-yonce .cm-error { border-bottom: 1px solid #C42412; } |
||||
|
||||
.cm-s-yonce .CodeMirror-activeline-background { background: #272727; } |
||||
.cm-s-yonce .CodeMirror-matchingbracket { outline:1px solid grey; color:#D4D4D4 !important; } |
Loading…
Reference in new issue