forked from Chevrotain/chevrotain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
168 changed files
with
16,620 additions
and
19,056 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
source "https://rubygems.org" # gems.ruby-china.com | ||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll build | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
#gem "jekyll", "~> 4.2.2" | ||
|
||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and | ||
# uncomment the line below. To upgrade, run `bundle update github-pages`. | ||
gem "github-pages", group: :jekyll_plugins | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "faraday-retry" | ||
end | ||
|
||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem | ||
# and associated library. | ||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", ">= 1", "< 3" | ||
gem "tzinfo-data" | ||
end | ||
|
||
# Performance-booster for watching directories on Windows | ||
#gem "wdm", "~> 0.1.0", :platforms => [:mingw, :x64_mingw, :mswin] | ||
|
||
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem | ||
# do not have a Java counterpart. | ||
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] | ||
|
||
#gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
/* set _blank for outside links */ | ||
$('.external-link').unbind('click'); | ||
$(document.links).filter(function() { | ||
var cond = 0; | ||
cond += (this.hostname.indexOf("eq19.com") === -1)? 1: 0; | ||
cond += (this.hostname.indexOf("github.io") === -1)? 1: 0; | ||
cond += (this.hostname != window.location.hostname)? 1: 0; | ||
return cond == 3; | ||
}).attr('target', '_blank') | ||
/* set _blank for outside links */ | ||
$('.external-link').unbind('click'); | ||
$(document.links).filter(function() { | ||
var cond = 0; | ||
cond += (this.hostname.indexOf("eq19.com") === -1)? 1: 0; | ||
cond += (this.hostname.indexOf("github.io") === -1)? 1: 0; | ||
cond += (this.hostname != window.location.hostname)? 1: 0; | ||
return cond == 3; | ||
}).attr('target', '_blank') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
.addons-wrap { | ||
background-color: darken($theme-menu-background, 8%); | ||
|
||
.status { | ||
cursor: pointer; | ||
background-color: darken($theme-menu-background, 5%); | ||
|
||
.branch { | ||
.fa { | ||
color: $theme-white; | ||
} | ||
|
||
.name { | ||
color: $green; | ||
} | ||
} | ||
&:active { | ||
background: $theme-menu-active-background; | ||
} | ||
} | ||
|
||
.addons { | ||
color: grey; | ||
|
||
dl { | ||
margin: 0; | ||
} | ||
|
||
dd { | ||
display: inline-block; | ||
|
||
a { | ||
display: inline-block; | ||
padding: 6px; | ||
color: $theme-white; | ||
} | ||
} | ||
} | ||
} | ||
.addons-wrap { | ||
background-color: darken($theme-menu-background, 8%); | ||
|
||
.status { | ||
cursor: pointer; | ||
background-color: darken($theme-menu-background, 5%); | ||
|
||
.branch { | ||
.fa { | ||
color: $theme-white; | ||
} | ||
|
||
.name { | ||
color: $green; | ||
} | ||
} | ||
&:active { | ||
background: $theme-menu-active-background; | ||
} | ||
} | ||
|
||
.addons { | ||
color: grey; | ||
|
||
dl { | ||
margin: 0; | ||
} | ||
|
||
dd { | ||
display: inline-block; | ||
|
||
a { | ||
display: inline-block; | ||
padding: 6px; | ||
color: $theme-white; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
.container { | ||
font-weight: $font-weight-normal; | ||
color: $theme-black; | ||
background: $theme-white; | ||
} | ||
|
||
@include breakpoint(xl) { | ||
.container { | ||
background: $theme-mask-black; | ||
} | ||
} | ||
.container { | ||
font-weight: $font-weight-normal; | ||
color: $theme-black; | ||
background: $theme-white; | ||
} | ||
|
||
@include breakpoint(xl) { | ||
.container { | ||
background: $theme-mask-black; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.content-wrap { | ||
font-size: $h4-size; | ||
background: $theme-white; | ||
} | ||
.content-wrap { | ||
font-size: $h4-size; | ||
background: $theme-white; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
.header { | ||
color: $theme-white; | ||
background: $theme-blue; | ||
|
||
input { | ||
border-radius: 50px; | ||
border: 1px solid #2472a4; | ||
font-size: 80%; | ||
} | ||
} | ||
.header { | ||
color: $theme-white; | ||
background: $theme-blue; | ||
|
||
input { | ||
border-radius: 50px; | ||
border: 1px solid #2472a4; | ||
font-size: 80%; | ||
} | ||
} |
Oops, something went wrong.