Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
node-slate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nguyễn Hải Sơn
node-slate
Commits
91ff8a73
Commit
91ff8a73
authored
Oct 11, 2013
by
Robert Lord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add copyright information to source files
parent
20f303f3
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
6 deletions
+74
-6
lang_selector.js
source/javascripts/lang_selector.js
+15
-0
layout.erb
source/layouts/layout.erb
+15
-0
all.css.scss
source/stylesheets/all.css.scss
+13
-6
syntax.css.scss.erb
source/stylesheets/syntax.css.scss.erb
+15
-0
variables.scss
source/stylesheets/variables.scss
+16
-0
No files found.
source/javascripts/lang_selector.js
View file @
91ff8a73
/*
Copyright 2008-2012 Concur Technologies, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
*/
languages
=
[]
function
activateLanguage
(
language
)
{
$
(
"#lang-selector a"
).
removeClass
(
'active'
);
...
...
source/layouts/layout.erb
View file @
91ff8a73
<%#
Copyright 2008-2012 Concur Technologies, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
%>
<!doctype html>
<html>
<head>
...
...
source/stylesheets/all.css.scss
View file @
91ff8a73
...
...
@@ -5,10 +5,20 @@
@import
'syntax'
;
/*
* jquery.tocify.css 1.7.0
* Author: @gregfranko
*/
Copyright 2008-2012 Concur Technologies, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
*/
html
,
body
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
...
...
@@ -228,7 +238,6 @@ html, body {
}
/* The Table of Contents container element */
.tocify
{
overflow-y
:
auto
;
overflow-x
:
hidden
;
...
...
@@ -280,11 +289,9 @@ html, body {
color
:
#fff
;
}
/* Top level header elements */
.tocify-header
{
}
/* Top level subheader elements. These are the first nested items underneath a header element. */
.tocify-subheader
{
display
:
none
;
background-color
:
$nav-subitem-bg
;
...
...
source/stylesheets/syntax.css.scss.erb
View file @
91ff8a73
/*
Copyright 2008-2012 Concur Technologies, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
*/
<%=
Rouge
::
Themes
::
Base16
::
Monokai
.
render
(
:scope
=>
'.highlight'
)
%>
@import 'variables';
...
...
source/stylesheets/variables.scss
View file @
91ff8a73
/*
Copyright 2008-2012 Concur Technologies, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
*/
// width of the navbar
$nav-width
:
230px
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment