mirror of
https://github.com/moparisthebest/www.moparscape.org
synced 2024-11-15 13:55:05 -05:00
gist tag plugin now works with the latest changes GitHub gists and does not fail if you do not specify a filename.
This commit is contained in:
parent
22105bebc9
commit
72b4e8d562
@ -1,6 +1,8 @@
|
|||||||
.highlight, html .gist .gist-file .gist-syntax .gist-highlight {
|
.highlight, html .gist .gist-file .gist-syntax .gist-highlight {
|
||||||
table td.code { width: 100%; }
|
table td.code { width: 100%; }
|
||||||
.line-numbers {
|
border: 1px solid $pre-border !important;
|
||||||
|
}
|
||||||
|
.highlight .line-numbers, html .gist .gist-file .gist-syntax .highlight .line_numbers {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 1.45em;
|
line-height: 1.45em;
|
||||||
@ -19,26 +21,32 @@
|
|||||||
padding: .8em !important;
|
padding: .8em !important;
|
||||||
@include border-radius(0);
|
@include border-radius(0);
|
||||||
}
|
}
|
||||||
border: 1px solid $pre-border !important;
|
|
||||||
}
|
|
||||||
figure.code, .gist-file, pre {
|
figure.code, .gist-file, pre {
|
||||||
@include box-shadow(rgba(#000, .06) 0 0 10px);
|
@include box-shadow(rgba(#000, .06) 0 0 10px);
|
||||||
.highlight pre { @include box-shadow(none); }
|
.highlight pre { @include box-shadow(none); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gist .highlight, figure.code .highlight {
|
||||||
|
@include selection(adjust-color($base03, $lightness: 23%, $saturation: -65%), $text-shadow: $base03 0 1px);
|
||||||
|
}
|
||||||
html .gist .gist-file {
|
html .gist .gist-file {
|
||||||
margin-bottom: 1.8em;
|
margin-bottom: 1.8em;
|
||||||
position: relative;
|
position: relative;
|
||||||
border: none;
|
border: none;
|
||||||
padding-top: image-height("code_bg.png") !important;
|
padding-top: image-height("code_bg.png") !important;
|
||||||
|
.highlight {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
.gist-syntax {
|
.gist-syntax {
|
||||||
border-bottom: 0 !important;
|
border-bottom: 0 !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
.gist-highlight {
|
.gist-highlight {
|
||||||
background: $base03 !important;
|
background: $base03 !important;
|
||||||
pre {
|
|
||||||
@extend .pre-code;
|
|
||||||
}
|
}
|
||||||
|
.highlight pre {
|
||||||
|
@extend .pre-code;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.gist-meta {
|
.gist-meta {
|
||||||
@ -107,12 +115,11 @@ p, li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pre-code {
|
.pre-code {
|
||||||
@include selection(adjust-color($base03, $lightness: 23%, $saturation: -65%), $text-shadow: $base03 0 1px);
|
|
||||||
font-family: $mono !important;
|
font-family: $mono !important;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
display: block;
|
display: block;
|
||||||
padding: .8em !important;
|
padding: .8em;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
line-height: 1.45em;
|
line-height: 1.45em;
|
||||||
background: $base03 $noise-bg !important;
|
background: $base03 $noise-bg !important;
|
||||||
@ -187,7 +194,7 @@ p, li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.highlight, .gist-highlight {
|
.highlight, .gist-highlight {
|
||||||
pre { background: none; @include border-radius(none); border: none; padding: 0; margin-bottom: 0; }
|
pre { background: none; @include border-radius(0px); border: none; padding: 0; margin-bottom: 0; }
|
||||||
margin-bottom: 1.8em;
|
margin-bottom: 1.8em;
|
||||||
background: $base03;
|
background: $base03;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
@ -206,7 +213,9 @@ pre, .highlight, .gist-highlight {
|
|||||||
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
|
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight code { @extend .pre-code; background: #000;}
|
.highlight code {
|
||||||
|
@extend .pre-code; background: #000;
|
||||||
|
}
|
||||||
figure.code {
|
figure.code {
|
||||||
background: none;
|
background: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -250,4 +259,3 @@ figure.code {
|
|||||||
text-shadow: #cbcccc 0 1px 0;
|
text-shadow: #cbcccc 0 1px 0;
|
||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,7 +40,9 @@ module Jekyll
|
|||||||
end
|
end
|
||||||
|
|
||||||
def script_url_for(gist_id, filename)
|
def script_url_for(gist_id, filename)
|
||||||
"https://gist.github.com/#{gist_id}.js?file=#{filename}"
|
url = "https://gist.github.com/#{gist_id}.js"
|
||||||
|
url = "#{url}?file=#{filename}" unless filename.nil? or filename.empty?
|
||||||
|
url
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_gist_url_for(gist, file)
|
def get_gist_url_for(gist, file)
|
||||||
|
Loading…
Reference in New Issue
Block a user