Upgrade to angularjs 1.2.0 rc1
This commit is contained in:
parent
d223dfd662
commit
d6b021bfaf
674 changed files with 79667 additions and 62269 deletions
317
lib/angular/docs/css/docs.css
Normal file → Executable file
317
lib/angular/docs/css/docs.css
Normal file → Executable file
|
@ -1,8 +1,18 @@
|
|||
img.AngularJS-small {
|
||||
width: 95px;
|
||||
height: 25px;
|
||||
/* Logo */
|
||||
|
||||
.header .brand {
|
||||
padding-top: 6px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.header .brand img {
|
||||
height: 25px;
|
||||
width: 92px;
|
||||
}
|
||||
|
||||
/* end: Logo */
|
||||
|
||||
|
||||
/* this is here to avoid the display=block shuffling of ngShow */
|
||||
.breadcrumb li > * {
|
||||
float:left;
|
||||
|
@ -56,7 +66,12 @@ img.AngularJS-small {
|
|||
}
|
||||
|
||||
.form-search > ul.nav > li.last {
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.form-search > ul.nav > li.last + li.api-list-item {
|
||||
margin-top:-1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.form-search .well {
|
||||
|
@ -95,8 +110,14 @@ img.AngularJS-small {
|
|||
/* Content */
|
||||
/* =============================== */
|
||||
|
||||
.improve-docs {
|
||||
.improve-docs, .view-source {
|
||||
float: right;
|
||||
margin: 0 5px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.improve-docs {
|
||||
z-index:100;
|
||||
}
|
||||
|
||||
.hint {
|
||||
|
@ -197,3 +218,289 @@ ul.events > li > h3 {
|
|||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.variables-matrix td {
|
||||
vertical-align:top;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.type-hint {
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
.variables-matrix .type-hint {
|
||||
text-align:center;
|
||||
display:block;
|
||||
min-width:60px;
|
||||
}
|
||||
|
||||
.type-hint + .type-hint {
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
.type-hint-string {
|
||||
background:#3a87ad;
|
||||
}
|
||||
|
||||
.type-hint-object {
|
||||
background:#999;
|
||||
}
|
||||
|
||||
.type-hint-array {
|
||||
background:#F90;;
|
||||
}
|
||||
|
||||
.type-hint-boolean {
|
||||
background:rgb(18, 131, 39);
|
||||
}
|
||||
|
||||
.type-hint-number {
|
||||
background:rgb(189, 63, 66);
|
||||
}
|
||||
|
||||
.syntax-links {
|
||||
background:#eee;
|
||||
border:1px solid #ddd;
|
||||
text-align:right;
|
||||
padding:1em;
|
||||
border-bottom:0;
|
||||
border-top-left-radius:4px;
|
||||
border-top-right-radius:4px;
|
||||
}
|
||||
|
||||
.syntax-links a {
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
.syntax-links + pre {
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
}
|
||||
|
||||
.search-results {
|
||||
clear:both;
|
||||
display:table;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.search-results.ng-hide {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.search-results > .search-group {
|
||||
vertical-align:top;
|
||||
padding:10px 0;
|
||||
display:table-cell;
|
||||
}
|
||||
|
||||
.search-group.cols-1 { width:100%; }
|
||||
.search-group.cols-2 { width:50%; }
|
||||
.search-group.cols-3 { width:33%; }
|
||||
.search-group.cols-4 { width:25%; }
|
||||
|
||||
.search-close {
|
||||
z-index:1029;
|
||||
position:absolute;
|
||||
bottom:-25px;
|
||||
left:80%;
|
||||
text-align:center;
|
||||
line-height:50px;
|
||||
width:50px;
|
||||
font-size:2em;
|
||||
background:#222222;
|
||||
border-radius:15px;
|
||||
}
|
||||
|
||||
.search-close span {
|
||||
text-decoration:none;
|
||||
position:relative;
|
||||
z-index:1031;
|
||||
}
|
||||
|
||||
.tutorial-index-page,
|
||||
.tutorial-the-end-page {
|
||||
padding-top:50px;
|
||||
}
|
||||
|
||||
.tutorial-page {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.tutorial-page .improve-docs {
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
}
|
||||
|
||||
.nocode-content {
|
||||
cursor:pointer;
|
||||
display:inline-block;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-transition:0.5s linear all;
|
||||
-moz-transition:0.5s linear all;
|
||||
-o-transition:0.5s linear all;
|
||||
transition:0.5s linear all;
|
||||
color: #223f7a;
|
||||
background:#ddd;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.nocode-content:hover {
|
||||
background-color: #99c2ff;
|
||||
border: 1px solid #e1e1e8;
|
||||
}
|
||||
|
||||
.popover-incode .popover-inner {
|
||||
width:auto;
|
||||
min-width:200px;
|
||||
max-width:500px;
|
||||
}
|
||||
|
||||
.popover-incode {
|
||||
-webkit-transition:0.2s linear opacity;
|
||||
-moz-transition:0.2s linear opacity;
|
||||
-o-transition:0.2s linear opacity;
|
||||
transition:0.2s linear opacity;
|
||||
opacity:0;
|
||||
}
|
||||
|
||||
.popover-incode.visible {
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.popover-incode code,
|
||||
.popover-incode pre {
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
.popover-incode .arrow {
|
||||
left:50px!important;
|
||||
}
|
||||
|
||||
.foldover-content {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.foldout:after {
|
||||
content:"";
|
||||
position:absolute;
|
||||
left:50%;
|
||||
top:-1px;
|
||||
margin-left:-10px;
|
||||
border-width:10px;
|
||||
border-style:solid;
|
||||
border-color:#f7f7f9 transparent transparent;
|
||||
}
|
||||
|
||||
.foldout:before {
|
||||
content:"";
|
||||
position:absolute;
|
||||
left:50%;
|
||||
top:0;
|
||||
margin-left:-10px;
|
||||
border-width:10px;
|
||||
border-style:solid;
|
||||
border-color:#bbb transparent transparent;
|
||||
}
|
||||
|
||||
.foldout {
|
||||
padding:8px 15px 5px;
|
||||
position:relative;
|
||||
background:#eee;
|
||||
white-space:normal;
|
||||
box-shadow:inset 0 0 20px #ccc;
|
||||
border-top:1px solid #bbb;
|
||||
}
|
||||
|
||||
.prettyprint {
|
||||
padding-right:0!important;
|
||||
padding-bottom:0!important;
|
||||
}
|
||||
|
||||
pre ol li {
|
||||
padding-bottom:2px;
|
||||
padding-right:5px;
|
||||
}
|
||||
|
||||
#docs-fold {
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
width:500px;
|
||||
min-height:100%;
|
||||
padding-top:50px;
|
||||
padding:50px 20px 20px 20px;
|
||||
background:white;
|
||||
border-left:1px solid #999;
|
||||
box-shadow:0 0 10px #555;
|
||||
z-index:1002;
|
||||
}
|
||||
|
||||
#docs-fold.fold-show {
|
||||
-webkit-transition:0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
|
||||
-moz-transition:0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
|
||||
-o-transition:0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
|
||||
transition:0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
|
||||
}
|
||||
|
||||
#docs-fold.fold-show {
|
||||
right:-200px;
|
||||
opacity:0;
|
||||
}
|
||||
|
||||
#docs-fold.fold-show.fold-show-active {
|
||||
right:0;
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
#docs-fold-overlay {
|
||||
background:rgba(255,255,255,0.5);
|
||||
position:fixed;
|
||||
left:0;
|
||||
bottom:0;
|
||||
right:0;
|
||||
top:0;
|
||||
z-index:1001;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.fixed_body {
|
||||
position:fixed;
|
||||
top:0;
|
||||
z-index:1000;
|
||||
left:0;
|
||||
right:0;
|
||||
}
|
||||
|
||||
#docs-fold-close {
|
||||
z-index: 1029;
|
||||
position: absolute;
|
||||
left: -30px;
|
||||
top: 60px;
|
||||
cursor:pointer;
|
||||
text-align: center;
|
||||
width:50px;
|
||||
line-height:50px;
|
||||
font-size: 2em;
|
||||
background: #fff;
|
||||
box-shadow:-6px 0 5px #555;
|
||||
display:block;
|
||||
border-radius:10px;
|
||||
}
|
||||
|
||||
.docs-version-jump {
|
||||
width:180px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
.minerr-errmsg {
|
||||
clear: both;
|
||||
position: relative;
|
||||
top: 10px;
|
||||
font-size: 16px;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue