-
Notifications
You must be signed in to change notification settings - Fork 171
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
1 parent
b041eff
commit 34897d8
Showing
30 changed files
with
3,241 additions
and
5 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
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 |
---|---|---|
|
@@ -41,4 +41,3 @@ | |
## SQL | ||
|
||
## 测试开源项目 | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
require([ 'gitbook' ], function (gitbook) { | ||
gitbook.events.bind('start', function (e, config) { | ||
var githubURL = config.github.url; | ||
|
||
gitbook.toolbar.createButton({ | ||
icon: 'fa fa-github', | ||
label: 'GitHub', | ||
position: 'right', | ||
onClick: function() { | ||
window.open(githubURL) | ||
} | ||
}); | ||
}); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
This CSS only styled the search results section, not the search input | ||
It defines the basic interraction to hide content when displaying results, etc | ||
*/ | ||
#book-search-input { | ||
background: inherit; | ||
} | ||
#book-search-results .search-results { | ||
display: none; | ||
} | ||
#book-search-results .search-results ul.search-results-list { | ||
list-style-type: none; | ||
padding-left: 0; | ||
} | ||
#book-search-results .search-results ul.search-results-list li { | ||
margin-bottom: 1.5rem; | ||
padding-bottom: 0.5rem; | ||
/* Highlight results */ | ||
} | ||
#book-search-results .search-results ul.search-results-list li p em { | ||
background-color: rgba(255, 220, 0, 0.4); | ||
font-style: normal; | ||
} | ||
#book-search-results .search-results .no-results { | ||
display: none; | ||
} | ||
#book-search-results.open .search-results { | ||
display: block; | ||
} | ||
#book-search-results.open .search-noresults { | ||
display: none; | ||
} | ||
#book-search-results.no-results .search-results .has-results { | ||
display: none; | ||
} | ||
#book-search-results.no-results .search-results .no-results { | ||
display: block; | ||
} | ||
#book-search-results span.search-highlight-keyword { | ||
background: #ff0; | ||
} |
Oops, something went wrong.