-
Notifications
You must be signed in to change notification settings - Fork 745
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
republishing 1.2.4 build to fix issues with symlinks
- Loading branch information
Showing
111 changed files
with
2,945 additions
and
1,179 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CACHE MANIFEST | ||
# 2013-12-06T18:49:33.281Z | ||
# 2013-12-07T10:39:22.697Z | ||
|
||
# cache all of these | ||
CACHE: | ||
|
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,5 +1,5 @@ | ||
CACHE MANIFEST | ||
# 2013-12-06T18:49:31.995Z | ||
# 2013-12-07T10:39:21.083Z | ||
|
||
# cache all of these | ||
CACHE: | ||
|
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.reveal.ng-enter { | ||
-webkit-transition:1s linear all; | ||
-moz-transition:1s linear all; | ||
-o-transition:1s linear all; | ||
transition:1s linear all; | ||
|
||
opacity:0; | ||
} | ||
.reveal.ng-enter.ng-enter-active { | ||
opacity:1; | ||
} | ||
|
||
.nav-list { | ||
padding: 0; | ||
} | ||
|
||
.nav-list li { | ||
margin:0!important; | ||
padding:2px 15px; | ||
overflow:hidden; | ||
line-height:1.1em; | ||
} | ||
|
||
.slide-reveal.ng-enter { | ||
-webkit-transition:0.5s linear all; | ||
-moz-transition:0.5s linear all; | ||
-o-transition:0.5s linear all; | ||
transition:0.5s linear all; | ||
|
||
opacity:0.5; | ||
position:relative; | ||
opacity:0; | ||
top:10px; | ||
} | ||
.slide-reveal.ng-enter.ng-enter-active { | ||
top:0; | ||
opacity:1; | ||
} | ||
|
||
.foldout.ng-enter, | ||
.foldout.ng-move, | ||
.foldout.ng-hide-add, | ||
.foldout.ng-hide-remove { | ||
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
} | ||
|
||
.foldout.ng-hide-remove, | ||
.foldout.ng-hide-add.ng-hide-active, | ||
.foldout.ng-enter, | ||
.foldout.ng-move { | ||
opacity:0; | ||
} | ||
|
||
.foldout.ng-move.ng-move-active, | ||
.foldout.ng-hide-remove.ng-hide-remove-active, | ||
.foldout.ng-hide-add, | ||
.foldout.ng-enter.ng-enter-active { | ||
opacity:1; | ||
} |
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,150 @@ | ||
ul.doc-example { | ||
list-style-type: none; | ||
position: relative; | ||
font-size: 14px; | ||
} | ||
|
||
ul.doc-example > li { | ||
border: 2px solid gray; | ||
border-radius: 5px; | ||
-moz-border-radius: 5px; | ||
-webkit-border-radius: 5px; | ||
background-color: white; | ||
margin-bottom: 20px; | ||
} | ||
|
||
ul.doc-example > li.doc-example-heading { | ||
border: none; | ||
border-radius: 0; | ||
margin-bottom: -10px; | ||
} | ||
|
||
span.nojsfiddle { | ||
float: right; | ||
font-size: 14px; | ||
margin-right:10px; | ||
margin-top: 10px; | ||
} | ||
|
||
form.jsfiddle { | ||
position: absolute; | ||
right: 0; | ||
z-index: 1; | ||
height: 14px; | ||
} | ||
|
||
form.jsfiddle button { | ||
cursor: pointer; | ||
padding: 4px 10px; | ||
margin: 10px; | ||
background-color: #FFF; | ||
font-weight: bold; | ||
color: #7989D6; | ||
border-color: #7989D6; | ||
-moz-border-radius: 8px; | ||
-webkit-border-radius:8px; | ||
border-radius: 8px; | ||
} | ||
|
||
form.jsfiddle textarea, form.jsfiddle input { | ||
display: none; | ||
} | ||
|
||
li.doc-example-live { | ||
padding: 10px; | ||
font-size: 1.2em; | ||
} | ||
|
||
div.syntaxhighlighter { | ||
padding-bottom: 1px !important; /* fix to remove unnecessary scrollbars http://is.gd/gSMgC */ | ||
} | ||
|
||
/* TABS - tutorial environment navigation */ | ||
|
||
div.tabs-nav { | ||
height: 25px; | ||
position: relative; | ||
} | ||
|
||
div.tabs-nav ul li { | ||
list-style: none; | ||
display: inline-block; | ||
padding: 5px 10px; | ||
} | ||
|
||
div.tabs-nav ul li.current a { | ||
color: white; | ||
text-decoration: none; | ||
} | ||
|
||
div.tabs-nav ul li.current { | ||
background: #7989D6; | ||
-moz-box-shadow: 4px 4px 6px #48577D; | ||
-moz-border-radius-topright: 8px; | ||
-moz-border-radius-topleft: 8px; | ||
box-shadow: 4px 4px 6px #48577D; | ||
border-radius-topright: 8px; | ||
border-radius-topleft: 8px; | ||
-webkit-box-shadow: 4px 4px 6px #48577D; | ||
-webkit-border-top-right-radius: 8px; | ||
-webkit-border-top-left-radius: 8px; | ||
border-top-right-radius: 8px; | ||
border-top-left-radius: 8px; | ||
} | ||
|
||
div.tabs-content { | ||
padding: 4px; | ||
position: relative; | ||
background: #7989D6; | ||
-moz-border-radius: 8px; | ||
border-radius: 8px; | ||
-webkit-border-radius: 8px; | ||
} | ||
|
||
div.tabs-content-inner { | ||
margin: 1px; | ||
padding: 10px; | ||
background: white; | ||
border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
-webkit-border-radius: 6px; | ||
} | ||
|
||
|
||
/* Tutorial Nav Bar */ | ||
|
||
#tutorial-nav { | ||
margin: 0.5em 0 1em 0; | ||
padding: 0; | ||
list-style-type: none; | ||
background: #7989D6; | ||
|
||
-moz-border-radius: 15px; | ||
-webkit-border-radius: 15px; | ||
border-radius: 15px; | ||
|
||
-moz-box-shadow: 4px 4px 6px #48577D; | ||
-webkit-box-shadow: 4px 4px 6px #48577D; | ||
box-shadow: 4px 4px 6px #48577D; | ||
} | ||
|
||
|
||
#tutorial-nav li { | ||
display: inline; | ||
} | ||
|
||
|
||
#tutorial-nav a:link, #tutorial-nav a:visited { | ||
font-size: 1.2em; | ||
color: #FFF; | ||
text-decoration: none; | ||
text-align: center; | ||
display: inline-block; | ||
width: 11em; | ||
padding: 0.2em 0; | ||
} | ||
|
||
|
||
#tutorial-nav a:hover { | ||
color: #000; | ||
} |
Oops, something went wrong.