mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2025-01-14 15:18:00 -05:00
Improved code snippet support
- Static Gist embeds show titles and link to the Gist - Stylesheets refactored to remove !important and references to Gist classes - Renamed links for include code - Removed sometimes incorrect title attribute on code snippet links
This commit is contained in:
parent
a6b8efe4a2
commit
6a964fec8f
@ -1,32 +1,35 @@
|
|||||||
.highlight, html .gist .gist-file .gist-syntax .gist-highlight {
|
p, li {
|
||||||
table td.code { width: 100%; }
|
code {
|
||||||
.line-numbers {
|
@extend .mono;
|
||||||
text-align: right;
|
display: inline-block;
|
||||||
font-size: 13px;
|
white-space: no-wrap;
|
||||||
line-height: 1.45em;
|
background: #fff;
|
||||||
@if lightness($base03) > lightness(#555) {
|
font-size: .8em;
|
||||||
background: lighten($base03, 1) $noise-bg !important;
|
line-height: 1.5em;
|
||||||
border-right: 1px solid darken($base02, 2) !important;
|
color: #555;
|
||||||
@include box-shadow(lighten($base03, 2) -1px 0 inset);
|
border: 1px solid #ddd;
|
||||||
text-shadow: lighten($base02, 2) 0 -1px;
|
@include border-radius(.4em);
|
||||||
} @else {
|
padding: 0 .3em;
|
||||||
background: $base02 $noise-bg !important;
|
margin: -1px 0;
|
||||||
border-right: 1px solid darken($base03, 2) !important;
|
|
||||||
@include box-shadow(lighten($base02, 2) -1px 0 inset);
|
|
||||||
text-shadow: darken($base02, 10) 0 -1px;
|
|
||||||
}
|
}
|
||||||
span { color: $base01 !important; }
|
pre code { font-size: 1em; background: none; border: none; }
|
||||||
padding: .8em !important;
|
|
||||||
@include border-radius(0);
|
|
||||||
}
|
|
||||||
border: 1px solid $pre-border !important;
|
|
||||||
}
|
|
||||||
figure.code, .gist-file, pre {
|
|
||||||
@include box-shadow(rgba(#000, .06) 0 0 10px);
|
|
||||||
.highlight pre { @include box-shadow(none); }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pre .line.marked {
|
pre {
|
||||||
|
background: $pre-bg $noise-bg;
|
||||||
|
@include border-radius(.4em);
|
||||||
|
@extend .mono;
|
||||||
|
border: 1px solid $pre-border;
|
||||||
|
line-height: 1.45em;
|
||||||
|
font-size: 13px;
|
||||||
|
margin-bottom: 2.1em;
|
||||||
|
padding: .8em 1em;
|
||||||
|
color: $pre-color;
|
||||||
|
overflow: auto;
|
||||||
|
@if $code-selection-color != false {
|
||||||
|
@include selection($code-selection);
|
||||||
|
}
|
||||||
|
.marked {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
&:after {
|
&:after {
|
||||||
@ -42,189 +45,11 @@ pre .line.marked {
|
|||||||
&.end:after {
|
&.end:after {
|
||||||
border-bottom: 1px solid $marker-border;
|
border-bottom: 1px solid $marker-border;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
html .gist .gist-file {
|
|
||||||
margin-bottom: 1.8em;
|
|
||||||
position: relative;
|
|
||||||
border: none;
|
|
||||||
padding-top: image-height("code_bg.png") !important;
|
|
||||||
.gist-syntax {
|
|
||||||
border-bottom: 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
.gist-highlight{
|
|
||||||
background: $base03 !important;
|
|
||||||
pre {
|
|
||||||
@extend .pre-code;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.gist-meta {
|
|
||||||
padding: .6em 0.8em;
|
|
||||||
border: 1px solid lighten($base02, 2) !important;
|
|
||||||
color: $base01;
|
|
||||||
font-size: .7em !important;
|
|
||||||
@if lightness($base03) > lightness(#555) {
|
|
||||||
background: lighten($base03, 2) $noise-bg;
|
|
||||||
border: 1px solid $pre-border !important;
|
|
||||||
border-top: 1px solid lighten($base03, 2) !important;
|
|
||||||
} @else {
|
|
||||||
background: $base02 $noise-bg;
|
|
||||||
}
|
|
||||||
@extend .sans;
|
|
||||||
line-height: 1.5em;
|
|
||||||
a {
|
|
||||||
color: mix($base1, $base01) !important;
|
|
||||||
@include hover-link;
|
|
||||||
&:hover { color: $base1 !important; }
|
|
||||||
}
|
|
||||||
a[href*='#file'] {
|
|
||||||
position: absolute; top: 0; left:0; right:-10px;
|
|
||||||
color: #474747 !important;
|
|
||||||
@extend .code-title;
|
|
||||||
&:hover { color: $link-color !important; }
|
|
||||||
}
|
|
||||||
a[href*=raw]{
|
|
||||||
@extend .download-source;
|
|
||||||
top: .4em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
background: $pre-bg $noise-bg;
|
|
||||||
@include border-radius(.4em);
|
|
||||||
@extend .mono;
|
|
||||||
border: 1px solid $pre-border;
|
|
||||||
line-height: 1.45em;
|
|
||||||
font-size: 13px;
|
|
||||||
margin-bottom: 2.1em;
|
|
||||||
padding: .8em 1em;
|
|
||||||
color: $pre-color;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
h3.filename {
|
|
||||||
@extend .code-title;
|
|
||||||
+ pre { @include border-top-radius(0px); }
|
|
||||||
}
|
|
||||||
|
|
||||||
p, li {
|
|
||||||
code {
|
|
||||||
@extend .mono;
|
|
||||||
display: inline-block;
|
|
||||||
white-space: no-wrap;
|
|
||||||
background: #fff;
|
|
||||||
font-size: .8em;
|
|
||||||
line-height: 1.5em;
|
|
||||||
color: #555;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
@include border-radius(.4em);
|
|
||||||
padding: 0 .3em;
|
|
||||||
margin: -1px 0;
|
|
||||||
}
|
|
||||||
pre code { font-size: 1em !important; background: none; border: none; }
|
|
||||||
}
|
|
||||||
|
|
||||||
.pre-code {
|
|
||||||
font-family: $mono !important;
|
|
||||||
overflow: scroll;
|
|
||||||
overflow-y: hidden;
|
|
||||||
display: block;
|
|
||||||
padding: .8em !important;
|
|
||||||
overflow-x: auto;
|
|
||||||
line-height: 1.45em;
|
|
||||||
background: $base03 $noise-bg !important;
|
|
||||||
color: $base1 !important;
|
|
||||||
span { color: $base1 !important; }
|
|
||||||
span { font-style: normal !important; font-weight: normal !important; }
|
|
||||||
|
|
||||||
.c { color: $base01 !important; font-style: italic !important; } /* Comment */
|
|
||||||
.cm { color: $base01 !important; font-style: italic !important; } /* Comment.Multiline */
|
|
||||||
.cp { color: $base01 !important; font-style: italic !important; } /* Comment.Preproc */
|
|
||||||
.c1 { color: $base01 !important; font-style: italic !important; } /* Comment.Single */
|
|
||||||
.cs { color: $base01 !important; font-weight: bold !important; font-style: italic !important; } /* Comment.Special */
|
|
||||||
.err { color: $solar-red !important; background: none !important; } /* Error */
|
|
||||||
.k { color: $solar-orange !important; } /* Keyword */
|
|
||||||
.o { color: $base1 !important; font-weight: bold !important; } /* Operator */
|
|
||||||
.p { color: $base1 !important; } /* Operator */
|
|
||||||
.ow { color: $solar-cyan !important; font-weight: bold !important; } /* Operator.Word */
|
|
||||||
.gd { color: $base1 !important; background-color: mix($solar-red, $base03, 25%) !important; display: inline-block; } /* Generic.Deleted */
|
|
||||||
.gd .x { color: $base1 !important; background-color: mix($solar-red, $base03, 35%) !important; display: inline-block; } /* Generic.Deleted.Specific */
|
|
||||||
.ge { color: $base1 !important; font-style: italic !important; } /* Generic.Emph */
|
|
||||||
//.gr { color: #aa0000 } /* Generic.Error */
|
|
||||||
.gh { color: $base01 !important; } /* Generic.Heading */
|
|
||||||
.gi { color: $base1 !important; background-color: mix($solar-green, $base03, 20%) !important; display: inline-block; } /* Generic.Inserted */
|
|
||||||
.gi .x { color: $base1 !important; background-color: mix($solar-green, $base03, 40%) !important; display: inline-block; } /* Generic.Inserted.Specific */
|
|
||||||
//.go { color: #888888 } /* Generic.Output */
|
|
||||||
//.gp { color: #555555 } /* Generic.Prompt */
|
|
||||||
.gs { color: $base1 !important; font-weight: bold !important; } /* Generic.Strong */
|
|
||||||
.gu { color: $solar-violet !important; } /* Generic.Subheading */
|
|
||||||
//.gt { color: #aa0000 } /* Generic.Traceback */
|
|
||||||
.kc { color: $solar-green !important; font-weight: bold !important; } /* Keyword.Constant */
|
|
||||||
.kd { color: $solar-blue !important; } /* Keyword.Declaration */
|
|
||||||
.kp { color: $solar-orange !important; font-weight: bold !important; } /* Keyword.Pseudo */
|
|
||||||
.kr { color: $solar-magenta !important; font-weight: bold !important; } /* Keyword.Reserved */
|
|
||||||
.kt { color: $solar-cyan !important; } /* Keyword.Type */
|
|
||||||
.n { color: $solar-blue !important; }
|
|
||||||
.na { color: $solar-blue !important; } /* Name.Attribute */
|
|
||||||
.nb { color: $solar-green !important; } /* Name.Builtin */
|
|
||||||
.nc { color: $solar-magenta !important;} /* Name.Class */
|
|
||||||
.no { color: $solar-yellow !important; } /* Name.Constant */
|
|
||||||
//.ni { color: #800080 } /* Name.Entity */
|
|
||||||
.nl { color: $solar-green !important; }
|
|
||||||
.ne { color: $solar-blue !important; font-weight: bold !important; } /* Name.Exception */
|
|
||||||
.nf { color: $solar-blue !important; font-weight: bold !important; } /* Name.Function */
|
|
||||||
.nn { color: $solar-yellow !important; } /* Name.Namespace */
|
|
||||||
.nt { color: $solar-blue !important; font-weight: bold !important; } /* Name.Tag */
|
|
||||||
.nx { color: $solar-yellow !Important; }
|
|
||||||
//.bp { color: #999999 } /* Name.Builtin.Pseudo */
|
|
||||||
//.vc { color: #008080 } /* Name.Variable.Class */
|
|
||||||
.vg { color: $solar-blue !important; } /* Name.Variable.Global */
|
|
||||||
.vi { color: $solar-blue !important; } /* Name.Variable.Instance */
|
|
||||||
.nv { color: $solar-blue !important; } /* Name.Variable */
|
|
||||||
//.w { color: #bbbbbb } /* Text.Whitespace */
|
|
||||||
.mf { color: $solar-cyan !important; } /* Literal.Number.Float */
|
|
||||||
.m { color: $solar-cyan !important; } /* Literal.Number */
|
|
||||||
.mh { color: $solar-cyan !important; } /* Literal.Number.Hex */
|
|
||||||
.mi { color: $solar-cyan !important; } /* Literal.Number.Integer */
|
|
||||||
//.mo { color: #009999 } /* Literal.Number.Oct */
|
|
||||||
.s { color: $solar-cyan !important; } /* Literal.String */
|
|
||||||
//.sb { color: #d14 } /* Literal.String.Backtick */
|
|
||||||
//.sc { color: #d14 } /* Literal.String.Char */
|
|
||||||
.sd { color: $solar-cyan !important; } /* Literal.String.Doc */
|
|
||||||
.s2 { color: $solar-cyan !important; } /* Literal.String.Double */
|
|
||||||
.se { color: $solar-red !important; } /* Literal.String.Escape */
|
|
||||||
//.sh { color: #d14 } /* Literal.String.Heredoc */
|
|
||||||
.si { color: $solar-blue !important; } /* Literal.String.Interpol */
|
|
||||||
//.sx { color: #d14 } /* Literal.String.Other */
|
|
||||||
.sr { color: $solar-cyan !important; } /* Literal.String.Regex */
|
|
||||||
.s1 { color: $solar-cyan !important; } /* Literal.String.Single */
|
|
||||||
//.ss { color: #990073 } /* Literal.String.Symbol */
|
|
||||||
//.il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
||||||
div { .gd, .gd .x, .gi, .gi .x { display: inline-block; width: 100%; }}
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight, .gist-highlight {
|
|
||||||
pre { background: none; @include border-radius(none); border: none; padding: 0; margin-bottom: 0; }
|
|
||||||
margin-bottom: 1.8em;
|
|
||||||
background: $base03;
|
|
||||||
overflow-y: hidden;
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
$solar-scroll-bg: rgba(#fff, .15);
|
|
||||||
$solar-scroll-thumb: rgba(#fff, .2);
|
|
||||||
@if lightness($base03) > lightness(#555) {
|
|
||||||
$solar-scroll-bg: rgba(#000, .15);
|
|
||||||
$solar-scroll-thumb: rgba(#000, .15);
|
|
||||||
}
|
|
||||||
|
|
||||||
pre, .highlight, .gist-highlight {
|
|
||||||
&::-webkit-scrollbar { height: .5em; background: $solar-scroll-bg; }
|
|
||||||
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight code { @extend .pre-code; background: #000;}
|
|
||||||
figure.code {
|
figure.code {
|
||||||
|
@include box-shadow(rgba(#000, .06) 0 0 10px);
|
||||||
background: none;
|
background: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
@ -232,21 +57,6 @@ figure.code {
|
|||||||
pre { margin-bottom: 0; }
|
pre { margin-bottom: 0; }
|
||||||
figcaption {
|
figcaption {
|
||||||
position: relative;
|
position: relative;
|
||||||
@extend .code-title;
|
|
||||||
a { @extend .download-source; }
|
|
||||||
}
|
|
||||||
.highlight {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
@if $code-selection-color != false {
|
|
||||||
@include selection($code-selection);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.code-title {
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 2em;
|
line-height: 2em;
|
||||||
@ -254,7 +64,7 @@ pre {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
@include border-top-radius(5px);
|
@include border-top-radius(5px);
|
||||||
font-family: "Helvetica Neue", Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
|
font-family: "Helvetica Neue", Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
|
||||||
background-color: #aaaaaa; // image-url("code_bg.png") top repeat-x;
|
background-color: #aaaaaa;
|
||||||
@if lightness($base03) <= lightness(#555) {
|
@if lightness($base03) <= lightness(#555) {
|
||||||
text-shadow: #cbcccc 0 1px 0;
|
text-shadow: #cbcccc 0 1px 0;
|
||||||
color: #555;
|
color: #555;
|
||||||
@ -277,13 +87,147 @@ pre {
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
a {
|
||||||
|
|
||||||
.download-source {
|
|
||||||
position: absolute; right: .8em;
|
position: absolute; right: .8em;
|
||||||
@include hover-link;
|
@include hover-link;
|
||||||
color: inherit !important;
|
color: inherit;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
border: 1px solid $pre-border;
|
||||||
|
background: $base03;
|
||||||
|
overflow-y: hidden;
|
||||||
|
overflow-x: auto;
|
||||||
|
pre {
|
||||||
|
background: none;
|
||||||
|
@include border-radius(0px);
|
||||||
|
@include box-shadow(none);
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-family: $mono;
|
||||||
|
overflow: scroll;
|
||||||
|
overflow-y: hidden;
|
||||||
|
display: block;
|
||||||
|
padding: .8em;
|
||||||
|
overflow-x: auto;
|
||||||
|
line-height: 1.45em;
|
||||||
|
background: $base03 $noise-bg;
|
||||||
|
color: $base1;
|
||||||
|
span {
|
||||||
|
color: $base1;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table td.code { width: 100%; }
|
||||||
|
|
||||||
|
.line-numbers {
|
||||||
|
@include border-radius(0);
|
||||||
|
text-align: right;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.45em;
|
||||||
|
padding: .8em;
|
||||||
|
|
||||||
|
@if lightness($base03) > lightness(#555) {
|
||||||
|
background: lighten($base03, 1) $noise-bg;
|
||||||
|
border-right: 1px solid darken($base02, 2);
|
||||||
|
@include box-shadow(lighten($base03, 2) -1px 0 inset);
|
||||||
|
text-shadow: lighten($base02, 2) 0 -1px;
|
||||||
|
} @else {
|
||||||
|
background: $base02 $noise-bg;
|
||||||
|
border-right: 1px solid darken($base03, 2);
|
||||||
|
@include box-shadow(lighten($base02, 2) -1px 0 inset);
|
||||||
|
text-shadow: darken($base02, 10) 0 -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span { color: $base01; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.c { color: $base01; font-style: italic; } /* Comment */
|
||||||
|
.cm { color: $base01; font-style: italic; } /* Comment.Multiline */
|
||||||
|
.cp { color: $base01; font-style: italic; } /* Comment.Preproc */
|
||||||
|
.c1 { color: $base01; font-style: italic; } /* Comment.Single */
|
||||||
|
.cs { color: $base01; font-weight: bold; font-style: italic; } /* Comment.Special */
|
||||||
|
.err { color: $solar-red; background: none; } /* Error */
|
||||||
|
.k { color: $solar-orange; } /* Keyword */
|
||||||
|
.o { color: $base1; font-weight: bold; } /* Operator */
|
||||||
|
.p { color: $base1; } /* Operator */
|
||||||
|
.ow { color: $solar-cyan; font-weight: bold; } /* Operator.Word */
|
||||||
|
.gd { color: $base1; background-color: mix($solar-red, $base03, 25%); display: inline-block; } /* Generic.Deleted */
|
||||||
|
.gd .x { color: $base1; background-color: mix($solar-red, $base03, 35%); display: inline-block; } /* Generic.Deleted.Specific */
|
||||||
|
.ge { color: $base1; font-style: italic; } /* Generic.Emph */
|
||||||
|
//.gr { color: #aa0000 } /* Generic.Error */
|
||||||
|
.gh { color: $base01; } /* Generic.Heading */
|
||||||
|
.gi { color: $base1; background-color: mix($solar-green, $base03, 20%); display: inline-block; } /* Generic.Inserted */
|
||||||
|
.gi .x { color: $base1; background-color: mix($solar-green, $base03, 40%); display: inline-block; } /* Generic.Inserted.Specific */
|
||||||
|
//.go { color: #888888 } /* Generic.Output */
|
||||||
|
//.gp { color: #555555 } /* Generic.Prompt */
|
||||||
|
.gs { color: $base1; font-weight: bold; } /* Generic.Strong */
|
||||||
|
.gu { color: $solar-violet; } /* Generic.Subheading */
|
||||||
|
//.gt { color: #aa0000 } /* Generic.Traceback */
|
||||||
|
.kc { color: $solar-green; font-weight: bold; } /* Keyword.Constant */
|
||||||
|
.kd { color: $solar-blue; } /* Keyword.Declaration */
|
||||||
|
.kp { color: $solar-orange; font-weight: bold; } /* Keyword.Pseudo */
|
||||||
|
.kr { color: $solar-magenta; font-weight: bold; } /* Keyword.Reserved */
|
||||||
|
.kt { color: $solar-cyan; } /* Keyword.Type */
|
||||||
|
.n { color: $solar-blue; }
|
||||||
|
.na { color: $solar-blue; } /* Name.Attribute */
|
||||||
|
.nb { color: $solar-green; } /* Name.Builtin */
|
||||||
|
.nc { color: $solar-magenta;} /* Name.Class */
|
||||||
|
.no { color: $solar-yellow; } /* Name.Constant */
|
||||||
|
//.ni { color: #800080 } /* Name.Entity */
|
||||||
|
.nl { color: $solar-green; }
|
||||||
|
.ne { color: $solar-blue; font-weight: bold; } /* Name.Exception */
|
||||||
|
.nf { color: $solar-blue; font-weight: bold; } /* Name.Function */
|
||||||
|
.nn { color: $solar-yellow; } /* Name.Namespace */
|
||||||
|
.nt { color: $solar-blue; font-weight: bold; } /* Name.Tag */
|
||||||
|
.nx { color: $solar-yellow !Important; }
|
||||||
|
//.bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||||
|
//.vc { color: #008080 } /* Name.Variable.Class */
|
||||||
|
.vg { color: $solar-blue; } /* Name.Variable.Global */
|
||||||
|
.vi { color: $solar-blue; } /* Name.Variable.Instance */
|
||||||
|
.nv { color: $solar-blue; } /* Name.Variable */
|
||||||
|
//.w { color: #bbbbbb } /* Text.Whitespace */
|
||||||
|
.mf { color: $solar-cyan; } /* Literal.Number.Float */
|
||||||
|
.m { color: $solar-cyan; } /* Literal.Number */
|
||||||
|
.mh { color: $solar-cyan; } /* Literal.Number.Hex */
|
||||||
|
.mi { color: $solar-cyan; } /* Literal.Number.Integer */
|
||||||
|
//.mo { color: #009999 } /* Literal.Number.Oct */
|
||||||
|
.s { color: $solar-cyan; } /* Literal.String */
|
||||||
|
//.sb { color: #d14 } /* Literal.String.Backtick */
|
||||||
|
//.sc { color: #d14 } /* Literal.String.Char */
|
||||||
|
.sd { color: $solar-cyan; } /* Literal.String.Doc */
|
||||||
|
.s2 { color: $solar-cyan; } /* Literal.String.Double */
|
||||||
|
.se { color: $solar-red; } /* Literal.String.Escape */
|
||||||
|
//.sh { color: #d14 } /* Literal.String.Heredoc */
|
||||||
|
.si { color: $solar-blue; } /* Literal.String.Interpol */
|
||||||
|
//.sx { color: #d14 } /* Literal.String.Other */
|
||||||
|
.sr { color: $solar-cyan; } /* Literal.String.Regex */
|
||||||
|
.s1 { color: $solar-cyan; } /* Literal.String.Single */
|
||||||
|
//.ss { color: #990073 } /* Literal.String.Symbol */
|
||||||
|
//.il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||||
|
div { .gd, .gd .x, .gi, .gi .x { display: inline-block; width: 100%; }}
|
||||||
|
}
|
||||||
|
|
||||||
|
$solar-scroll-bg: rgba(#fff, .15);
|
||||||
|
$solar-scroll-thumb: rgba(#fff, .2);
|
||||||
|
@if lightness($base03) > lightness(#555) {
|
||||||
|
$solar-scroll-bg: rgba(#000, .15);
|
||||||
|
$solar-scroll-thumb: rgba(#000, .15);
|
||||||
|
}
|
||||||
|
|
||||||
|
pre, .highlight {
|
||||||
|
&::-webkit-scrollbar { height: .5em; background: $solar-scroll-bg; }
|
||||||
|
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ module Jekyll
|
|||||||
lang = file.empty? ? '' : file.split('.')[-1]
|
lang = file.empty? ? '' : file.split('.')[-1]
|
||||||
link = "https://gist.github.com/#{gist}"
|
link = "https://gist.github.com/#{gist}"
|
||||||
caption = file.empty? ? "Gist: #{gist}" : file
|
caption = file.empty? ? "Gist: #{gist}" : file
|
||||||
data = highlight(data.body, lang, { linenos: true, start: 1, caption: caption, url: link, anchor: 'View Gist' })
|
data = highlight(data.body, lang, { linenos: true, start: 1, caption: caption, url: link, anchor: 'Gist page' })
|
||||||
cache gist, file, data unless @cache_disabled
|
cache gist, file, data unless @cache_disabled
|
||||||
|
|
||||||
data
|
data
|
||||||
|
@ -98,7 +98,7 @@ module Jekyll
|
|||||||
@lang = file.extname.sub('.','') unless @lang
|
@lang = file.extname.sub('.','') unless @lang
|
||||||
title = @title ? "#{@title} (#{file.basename})" : file.basename
|
title = @title ? "#{@title} (#{file.basename})" : file.basename
|
||||||
url = "/#{code_dir}/#{@file}"
|
url = "/#{code_dir}/#{@file}"
|
||||||
highlight(code, @lang, {caption: title, url: url, anchor: 'download', start: @start, marks: @marks, linenos: @linenos })
|
highlight(code, @lang, {caption: title, url: url, anchor: 'view raw', start: @start, marks: @marks, linenos: @linenos })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -66,7 +66,7 @@ module HighlightCode
|
|||||||
|
|
||||||
def captionize (caption, url, anchor)
|
def captionize (caption, url, anchor)
|
||||||
figcaption = "<figcaption><span>#{caption}</span>"
|
figcaption = "<figcaption><span>#{caption}</span>"
|
||||||
figcaption += "<a href='#{url}' title='Download code'> #{anchor || 'link'}</a>" if url
|
figcaption += "<a href='#{url}'>#{anchor.strip || 'link'}</a>" if url
|
||||||
figcaption += "</figcaption>"
|
figcaption += "</figcaption>"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user