| OLD | NEW |
| (Empty) |
| 1 .todo, .comment { /* while we're working on doc, comment out display */ | |
| 2 color: rgb(255, 0, 0); | |
| 3 display: none; | |
| 4 } | |
| 5 | |
| 6 .displayModeWarning { | |
| 7 background-color: #FF7735; /* Aaron's favorite color */ | |
| 8 color: white; | |
| 9 font-weight: bold; | |
| 10 padding: 6px 8px; | |
| 11 display: none; | |
| 12 } | |
| 13 | |
| 14 .displayModeWarning>span { | |
| 15 margin-right: 2ex; | |
| 16 } | |
| 17 | |
| 18 .tbd { /* style for comments that should be visible to all devs */ | |
| 19 color: rgb(125, 125, 125); | |
| 20 } | |
| 21 | |
| 22 .pageData { | |
| 23 display: none; | |
| 24 } | |
| 25 | |
| 26 #header { | |
| 27 margin: 1em 0; | |
| 28 } | |
| 29 | |
| 30 #header td { | |
| 31 border:none; | |
| 32 padding:0; | |
| 33 } | |
| 34 | |
| 35 /* This is the start of the styles imported from Codesite. */ | |
| 36 | |
| 37 .g-section:after { | |
| 38 content:"."; | |
| 39 display:block; | |
| 40 height:0; | |
| 41 clear:both; | |
| 42 visibility:hidden | |
| 43 } | |
| 44 | |
| 45 .g-section,.g-unit { | |
| 46 zoom:1 | |
| 47 } | |
| 48 | |
| 49 body { | |
| 50 color: #333; | |
| 51 font: 13px/22px 'Open Sans',arial,sans-serif; | |
| 52 font-weight: 400; | |
| 53 background-color:#fff; | |
| 54 margin:0; | |
| 55 padding:0; | |
| 56 } | |
| 57 | |
| 58 a, a:link { | |
| 59 text-decoration: none; | |
| 60 color: #000; | |
| 61 font-weight: 600; | |
| 62 } | |
| 63 | |
| 64 a:hover { | |
| 65 text-decoration: none; | |
| 66 color: #39F; | |
| 67 } | |
| 68 | |
| 69 a:active { | |
| 70 color: #39F; | |
| 71 } | |
| 72 | |
| 73 a:visited { | |
| 74 color: #6611CC; | |
| 75 } | |
| 76 | |
| 77 p { | |
| 78 /* padding:1em 0 0 0; */ | |
| 79 margin:1em 0 0 0; | |
| 80 color: #767676; | |
| 81 font-size: 14px; | |
| 82 } | |
| 83 | |
| 84 img { | |
| 85 border:none; | |
| 86 padding:0; | |
| 87 /* margin:1em 0 0 0;*/ | |
| 88 } | |
| 89 | |
| 90 a img { | |
| 91 border:1px solid; | |
| 92 padding:1px | |
| 93 } | |
| 94 | |
| 95 pre b { | |
| 96 background:yellow | |
| 97 } | |
| 98 | |
| 99 .linenumber { | |
| 100 color: #999999; | |
| 101 } | |
| 102 | |
| 103 code,pre { | |
| 104 font-family:monospace; | |
| 105 color:#50a9d5; | |
| 106 } | |
| 107 | |
| 108 code { | |
| 109 font-size:10pt | |
| 110 } | |
| 111 | |
| 112 pre { | |
| 113 font-size: 10pt; | |
| 114 background-color:#f5f5f5; | |
| 115 border-top: 1px solid #e0e0e0; | |
| 116 border-left: 1px solid #e0e0e0; | |
| 117 margin:1em 0 0 0; | |
| 118 padding:.99em; | |
| 119 overflow:auto; | |
| 120 word-wrap:break-word | |
| 121 } | |
| 122 | |
| 123 blockquote { | |
| 124 text-align:justify; | |
| 125 margin:1em 90px 0 70px; | |
| 126 padding:0 20px | |
| 127 } | |
| 128 | |
| 129 hr { | |
| 130 border:1px solid; | |
| 131 border-color:#36C; | |
| 132 margin:1em 0 | |
| 133 } | |
| 134 | |
| 135 h1,h2,h3,h4 { | |
| 136 margin-bottom:0 | |
| 137 } | |
| 138 | |
| 139 h1 { | |
| 140 font-size:160% | |
| 141 } | |
| 142 | |
| 143 h2 { | |
| 144 font-size:140% | |
| 145 } | |
| 146 | |
| 147 h3 { | |
| 148 font-size:120% | |
| 149 } | |
| 150 | |
| 151 h4 { | |
| 152 font-size:110% | |
| 153 } | |
| 154 | |
| 155 .labs #gc-pagecontent h1 { | |
| 156 background-color:#dcf6db; | |
| 157 border-top:1px solid #090 | |
| 158 } | |
| 159 | |
| 160 .depr #gc-pagecontent h1 { | |
| 161 background-color:#ddd; | |
| 162 border-top:1px solid #333 | |
| 163 } | |
| 164 | |
| 165 /* This next set of rules for headings comes from the Codesite "semantic_headers
.css" file. */ | |
| 166 | |
| 167 #gc-pagecontent h1 { | |
| 168 line-height: 130%; | |
| 169 font-size: 170%; | |
| 170 margin: 0; | |
| 171 padding: .8em 0 0; | |
| 172 border: none; | |
| 173 background: none; | |
| 174 } | |
| 175 | |
| 176 #gc-pagecontent h2 { | |
| 177 font-size: 170%; | |
| 178 font-weight: normal; | |
| 179 margin: 2em 0 0 0; | |
| 180 padding: 40px 0; | |
| 181 border-top: 1px solid #ccc; | |
| 182 } | |
| 183 | |
| 184 .labs #gc-pagecontent h2 { | |
| 185 } | |
| 186 | |
| 187 #gc-pagecontent h3 { | |
| 188 font-size: 130%; | |
| 189 font-weight: bold; | |
| 190 margin: 1.5em 0 0 0; | |
| 191 top: 0em; | |
| 192 } | |
| 193 | |
| 194 #gc-pagecontent h4 { | |
| 195 font-size: 110%; | |
| 196 margin: .7em 0 0 0; | |
| 197 position: relative; | |
| 198 top: .4em; | |
| 199 } | |
| 200 | |
| 201 #gc-pagecontent h5 { | |
| 202 font-size: 100%; | |
| 203 font-weight: bold; | |
| 204 margin: .6em 0 0 0; | |
| 205 position: relative; | |
| 206 top: .4em; | |
| 207 z-index: 5; | |
| 208 } | |
| 209 | |
| 210 #gc-pagecontent h6 { | |
| 211 font-size: 100%; | |
| 212 font-weight: normal; | |
| 213 font-style: italic; | |
| 214 text-decoration: underline; | |
| 215 margin: .4em 0 0 0; | |
| 216 position: relative; | |
| 217 top: .4em; | |
| 218 z-index: 5; | |
| 219 } | |
| 220 | |
| 221 #gc-pagecontent h1.page_title,#gc-pagecontent h2.page_title { | |
| 222 line-height: 130%; | |
| 223 font-size: 320%; | |
| 224 margin: 0; | |
| 225 padding: .8em 0 0; | |
| 226 border: none; | |
| 227 background: none; | |
| 228 font-weight: normal; | |
| 229 } | |
| 230 | |
| 231 #gc-pagecontent .apiItem h3 { | |
| 232 margin-top: 1em; | |
| 233 font-size:110%; | |
| 234 } | |
| 235 | |
| 236 ol,ul { | |
| 237 color: #767676; | |
| 238 padding:0; | |
| 239 margin:.5em 0 0 15px; | |
| 240 } | |
| 241 | |
| 242 li ol,li ul { | |
| 243 padding:0; | |
| 244 margin:0 0 0 10px | |
| 245 } | |
| 246 | |
| 247 li { | |
| 248 margin:.3em 0 0 1.5em; | |
| 249 padding:0 | |
| 250 } | |
| 251 | |
| 252 dl { | |
| 253 margin:0; | |
| 254 padding:0; | |
| 255 } | |
| 256 | |
| 257 dt { | |
| 258 font-weight:bold; | |
| 259 margin:.75em 0 0 0; | |
| 260 padding:0 | |
| 261 } | |
| 262 | |
| 263 dd { | |
| 264 margin:.4em 0 0 2em; | |
| 265 padding:0; | |
| 266 font-weight:normal | |
| 267 } | |
| 268 | |
| 269 li pre { | |
| 270 margin:.5em 0 .6em 0 | |
| 271 } | |
| 272 | |
| 273 li p,dd p { | |
| 274 padding:.5em 0 .6em 0; | |
| 275 margin:0 | |
| 276 } | |
| 277 | |
| 278 ol.alpha { | |
| 279 list-style:lower-alpha | |
| 280 } | |
| 281 | |
| 282 ol.alphacap { | |
| 283 list-style:upper-alpha | |
| 284 } | |
| 285 | |
| 286 ol.roman { | |
| 287 list-style:lower-roman | |
| 288 } | |
| 289 | |
| 290 ol.romancap { | |
| 291 list-style:upper-roman | |
| 292 } | |
| 293 | |
| 294 ol.termslist { | |
| 295 list-style-type:decimal | |
| 296 } | |
| 297 | |
| 298 ol.termslist>li>ol { | |
| 299 list-style-type:lower-alpha | |
| 300 } | |
| 301 | |
| 302 ol.termslist>li>ol>li>ol { | |
| 303 list-style-type:lower-roman | |
| 304 } | |
| 305 | |
| 306 .listhead li { | |
| 307 font-weight:bold | |
| 308 } | |
| 309 | |
| 310 .listhead li *,.listhead li li { | |
| 311 font-weight:normal | |
| 312 } | |
| 313 | |
| 314 .code li { | |
| 315 font-family:monospace; | |
| 316 font-size:10pt | |
| 317 } | |
| 318 | |
| 319 .code li p,.code li li { | |
| 320 font-family:Arial,Helvetica,sans-serif | |
| 321 } | |
| 322 | |
| 323 li p.note,li p.warning,li p.labswarning,li p.caution { | |
| 324 margin:.8em 0 0 0; | |
| 325 padding:.2em .5em .2em .9em | |
| 326 } | |
| 327 | |
| 328 div#toc { | |
| 329 background-color: rgb(232, 237, 235); | |
| 330 display: inline; | |
| 331 float: right; | |
| 332 margin: 5px 0px 5px 20px; | |
| 333 padding: 5px; | |
| 334 width: 250px; | |
| 335 } | |
| 336 | |
| 337 #toc p { | |
| 338 font-weight: bold; | |
| 339 margin: 0px; | |
| 340 } | |
| 341 | |
| 342 #toc ol { | |
| 343 margin:1em 0 0 0; | |
| 344 padding:0; | |
| 345 list-style:none | |
| 346 } | |
| 347 | |
| 348 #toc ol li { | |
| 349 margin:.4em 0 0 1em; | |
| 350 padding:0 | |
| 351 } | |
| 352 | |
| 353 #toc ol li ol { | |
| 354 margin:0; | |
| 355 padding:0 | |
| 356 } | |
| 357 | |
| 358 #toc ol li ol li { | |
| 359 padding:0; | |
| 360 margin:.1em 0 0 1em; | |
| 361 font-weight:normal; | |
| 362 list-style:none | |
| 363 } | |
| 364 | |
| 365 table { | |
| 366 border-collapse:collapse; | |
| 367 line-height:125% | |
| 368 } | |
| 369 | |
| 370 th,td { | |
| 371 text-align:left; | |
| 372 vertical-align:top | |
| 373 } | |
| 374 | |
| 375 table { | |
| 376 margin:0 0 0 1px; | |
| 377 /* border:1px solid; */ | |
| 378 border-color:#36C; | |
| 379 border-spacing:0; | |
| 380 clear:right | |
| 381 } | |
| 382 | |
| 383 .labs #gc-pagecontent table { | |
| 384 border-color:#090 | |
| 385 } | |
| 386 | |
| 387 th { | |
| 388 font-weight:bold; | |
| 389 text-align:left; | |
| 390 padding:6px 12px; | |
| 391 | |
| 392 /* IE ignores labs */ | |
| 393 /* border:1px solid #36C; */ | |
| 394 /* background-color:#e5ecf9 */ | |
| 395 } | |
| 396 | |
| 397 .labs #gc-pagecontent th { | |
| 398 border-color:#090 important!; | |
| 399 background-color:#dcf6db important! | |
| 400 } | |
| 401 | |
| 402 td { | |
| 403 padding:6px 12px; | |
| 404 border:1px solid #36C; | |
| 405 background-color:#fff; | |
| 406 text-align:left; | |
| 407 vertical-align:top | |
| 408 } | |
| 409 | |
| 410 .labs #gc-pagecontent td { | |
| 411 border-color:#090 | |
| 412 } | |
| 413 | |
| 414 td h1,td h2,td h3,td h4,td h5 { | |
| 415 margin-left:0 | |
| 416 } | |
| 417 | |
| 418 td ul,td ol { | |
| 419 margin:0 0 1em 15px; | |
| 420 padding:0 | |
| 421 } | |
| 422 | |
| 423 td p,td dl { | |
| 424 margin:0 0 1em 0; | |
| 425 padding:0 | |
| 426 } | |
| 427 | |
| 428 td *+p { | |
| 429 margin:1em 0 0 0; | |
| 430 padding:0 | |
| 431 } | |
| 432 | |
| 433 table.columns { | |
| 434 border:none; | |
| 435 margin:1em 0 0; | |
| 436 /* margin-right omitted to avoid IE6 bug */ | |
| 437 } | |
| 438 | |
| 439 #gc-pagecontent table.columns th { | |
| 440 border:none; | |
| 441 background-color:white; | |
| 442 padding:1em 1em 0 0 | |
| 443 margin:1em 0 0; | |
| 444 } | |
| 445 | |
| 446 .labs #gc-pagecontent table.columns th { | |
| 447 border:none; | |
| 448 background-color:white; | |
| 449 } | |
| 450 | |
| 451 table.columns td { | |
| 452 border:none; | |
| 453 padding:0 1em 0 0 | |
| 454 } | |
| 455 | |
| 456 table.columns td p { | |
| 457 margin:1em 0 0 0; | |
| 458 padding:0 | |
| 459 } | |
| 460 | |
| 461 .deprecated,.deprecated *,.deprecated a:link,.deprecated a:hover,.deprecated a:v
isited { | |
| 462 color:#9b9b9b | |
| 463 } | |
| 464 | |
| 465 .grey { | |
| 466 color:#666 | |
| 467 } | |
| 468 | |
| 469 .blue { | |
| 470 color:#36e | |
| 471 } | |
| 472 | |
| 473 .topmargin { | |
| 474 margin-top:1em !important | |
| 475 } | |
| 476 | |
| 477 .nomargin { | |
| 478 margin:0 !important | |
| 479 } | |
| 480 | |
| 481 .nopadding { | |
| 482 padding:0 !important | |
| 483 } | |
| 484 | |
| 485 .noborder { | |
| 486 border:none !important | |
| 487 } | |
| 488 | |
| 489 .border { | |
| 490 border:1px solid gray; | |
| 491 padding:1px | |
| 492 } | |
| 493 | |
| 494 .normalsize { | |
| 495 font-size:100% !important | |
| 496 } | |
| 497 | |
| 498 .nolist li { | |
| 499 margin-left:0; | |
| 500 list-style:none | |
| 501 } | |
| 502 | |
| 503 .noindent { | |
| 504 margin-left:0 | |
| 505 } | |
| 506 | |
| 507 .doublespace,.doublespace li { | |
| 508 margin-top:1em | |
| 509 } | |
| 510 | |
| 511 ul.doublespace,ol.doublespace { | |
| 512 margin-top:0; | |
| 513 padding-top:0 | |
| 514 } | |
| 515 | |
| 516 div.row { | |
| 517 float:left; | |
| 518 clear:left; | |
| 519 position:relative; | |
| 520 margin:1em 0 0; | |
| 521 padding:0 | |
| 522 } | |
| 523 | |
| 524 .left { | |
| 525 float:left; | |
| 526 margin:0 1em 0 0; | |
| 527 padding:0 | |
| 528 } | |
| 529 | |
| 530 div.special { | |
| 531 border:1px solid; | |
| 532 padding:0 .9em .9em; | |
| 533 margin:1em 0 0 0; | |
| 534 background-color:#e5ecf9; | |
| 535 border-color:#36C | |
| 536 } | |
| 537 | |
| 538 .labs div.special { | |
| 539 background-color:#dcf6db; | |
| 540 border:1px solid #090 | |
| 541 } | |
| 542 | |
| 543 p.note,p.caution,p.warning { | |
| 544 margin:1em 0 0 0; | |
| 545 padding:.2em .5em .2em .9em; | |
| 546 background-color:#efefef; | |
| 547 border-top:1px solid; | |
| 548 border-bottom:1px solid | |
| 549 } | |
| 550 | |
| 551 p.labswarning { | |
| 552 margin:1em 0 0 0; | |
| 553 padding:.2em .5em .2em 20px; | |
| 554 background:url(../images/labs-11.png) top left no-repeat; | |
| 555 background-position:4px 6px; | |
| 556 background-color:#dcf6db; | |
| 557 border-top:1px solid; | |
| 558 border-bottom:1px solid; | |
| 559 border-color:#090 | |
| 560 } | |
| 561 | |
| 562 p.note { | |
| 563 border-color:#36C | |
| 564 } | |
| 565 | |
| 566 p.caution { | |
| 567 border-color:#fc3 | |
| 568 } | |
| 569 | |
| 570 p.warning { | |
| 571 border-color:#a03 | |
| 572 } | |
| 573 | |
| 574 p.warning b,p.warning em,p.warning strong { | |
| 575 color:#a03; | |
| 576 font-weight:bold | |
| 577 } | |
| 578 | |
| 579 p.caption { | |
| 580 padding:1px 0 0; | |
| 581 margin:0 | |
| 582 } | |
| 583 | |
| 584 p#date,p.date { | |
| 585 text-align:left; | |
| 586 margin:0; | |
| 587 padding:1em; | |
| 588 font-style:italic; | |
| 589 font-size:x-small | |
| 590 } | |
| 591 | |
| 592 p.backtotop { | |
| 593 float:right; | |
| 594 margin:.5em 0 0 4em; | |
| 595 position:relative; | |
| 596 padding:0; | |
| 597 font-size:x-small; | |
| 598 z-index:99 | |
| 599 } | |
| 600 | |
| 601 .hidden,.hidden *,#skipto,#skipto *,#skipto a,#skipto a:hover,#skipto a:visited
{ | |
| 602 position:relative; | |
| 603 top:-9999px; | |
| 604 left:-9999px; | |
| 605 height:0; | |
| 606 width:0; | |
| 607 overflow:hidden; | |
| 608 z-index:4444 | |
| 609 } | |
| 610 | |
| 611 #skipto,#skipto *,#skipto a,#skipto a:hover,#skipto a:visited { | |
| 612 _position:relative | |
| 613 } | |
| 614 | |
| 615 #skipto a:focus { | |
| 616 position:fixed; | |
| 617 top:5px; | |
| 618 left:5px; | |
| 619 height:auto; | |
| 620 width:auto; | |
| 621 background-color:#fff; | |
| 622 border:2px solid #00C; | |
| 623 font-weight:bold; | |
| 624 padding:5px | |
| 625 } | |
| 626 | |
| 627 #gc-container { | |
| 628 margin: 0 auto; | |
| 629 padding:0; | |
| 630 max-width:1160px; | |
| 631 position:relative; | |
| 632 min-height:100%; | |
| 633 height:auto !important; | |
| 634 _height:100% | |
| 635 } | |
| 636 | |
| 637 #gc-pagecontent { | |
| 638 padding-left:24px; | |
| 639 } | |
| 640 | |
| 641 .moreright { | |
| 642 margin:2px 0 2px 0; | |
| 643 text-align:right | |
| 644 } | |
| 645 | |
| 646 #gc-topnav { | |
| 647 font-size: 1em; | |
| 648 margin: 0; | |
| 649 padding: .4em 0; | |
| 650 width: 100%; | |
| 651 white-space: nowrap; | |
| 652 word-wrap: normal; | |
| 653 background-color: #fff; | |
| 654 border-top: 1px solid #e5e5e5; | |
| 655 border-bottom: 1px solid #e5e5e5; | |
| 656 } | |
| 657 | |
| 658 .depr #gc-topnav { | |
| 659 background-color:#ddd; | |
| 660 border-top:1px solid #333 | |
| 661 } | |
| 662 | |
| 663 #gc-topnav h1 { | |
| 664 font-size:1.5em; | |
| 665 line-height:1.3em; | |
| 666 font-weight:bold; | |
| 667 background-color:transparent; | |
| 668 border:0; | |
| 669 margin:0; | |
| 670 padding:0 0 0 14px; | |
| 671 float:left; | |
| 672 border-top: 10px solid white; | |
| 673 } | |
| 674 | |
| 675 #gc-topnav h1.msie { | |
| 676 padding-left:0 | |
| 677 } | |
| 678 | |
| 679 #gc-topnav h1.mozilla { | |
| 680 padding-left:1px | |
| 681 } | |
| 682 | |
| 683 #gc-topnav h1.default { | |
| 684 padding-left:2px | |
| 685 } | |
| 686 | |
| 687 #gc-topnav img { | |
| 688 padding:.3em .3em .3em .5em; | |
| 689 float:left; | |
| 690 cursor:pointer | |
| 691 } | |
| 692 | |
| 693 #gc-topnav ul { | |
| 694 font-size: 12px; | |
| 695 height: 45px; | |
| 696 text-align: right; | |
| 697 list-style: none; | |
| 698 margin: 0; | |
| 699 } | |
| 700 | |
| 701 #gc-topnav ul li { | |
| 702 font-weight: 600; | |
| 703 height: 45px; | |
| 704 text-transform: uppercase; | |
| 705 white-space: nowrap; | |
| 706 zoom: 1; | |
| 707 float: none; | |
| 708 display: inline; | |
| 709 margin: 0; | |
| 710 padding: 0; | |
| 711 } | |
| 712 | |
| 713 #gc-topnav li a { | |
| 714 width: 108px; | |
| 715 height: 45px; | |
| 716 border-width: 0px; | |
| 717 background: white; | |
| 718 border: 0 solid #39C; | |
| 719 display: inline-block; | |
| 720 position: relative; | |
| 721 z-index: 600; | |
| 722 color: #333; | |
| 723 text-decoration: none; | |
| 724 } | |
| 725 | |
| 726 #gc-topnav li a span { | |
| 727 border-top: 15px solid white; | |
| 728 display: block; | |
| 729 margin: 0 30px; | |
| 730 position: relative; | |
| 731 height: 29px; | |
| 732 } | |
| 733 | |
| 734 a.leftNavSelected,.leftNavSelected a,a.leftNavSelected:visited,.leftNavSelected
a:visited { | |
| 735 color: #39F; | |
| 736 text-decoration:none | |
| 737 } | |
| 738 | |
| 739 #gc-topnav a.leftNavSelected,#gc-topnav a.leftNavSelected:visited { | |
| 740 font-weight:bold | |
| 741 } | |
| 742 | |
| 743 #gc-toc { | |
| 744 clear:left; | |
| 745 /* padding:.5em 0 140px 14px !important;*/ | |
| 746 display:block; | |
| 747 margin:0; | |
| 748 width:180px; | |
| 749 float:left | |
| 750 } | |
| 751 | |
| 752 #gc-toc * { | |
| 753 zoom:1 | |
| 754 } | |
| 755 | |
| 756 #gc-toc ul,#gc-toc ol { | |
| 757 padding: 2.9em 0 0; | |
| 758 margin:0; | |
| 759 line-height:120% | |
| 760 } | |
| 761 | |
| 762 #gc-toc ul ul,#gc-toc ol ol { | |
| 763 padding:0; | |
| 764 margin:0 | |
| 765 } | |
| 766 | |
| 767 #gc-toc ul li span { | |
| 768 cursor: pointer; | |
| 769 } | |
| 770 | |
| 771 #gc-toc ul ul ul,#gc-toc ol ol ol { | |
| 772 margin-top: 12px; | |
| 773 } | |
| 774 | |
| 775 #gc-toc ul ul ul li,#gc-toc ol ol ol li { | |
| 776 padding-left: 0; | |
| 777 margin-left: 25px; | |
| 778 list-style: url(../images/sidearrow.png); | |
| 779 } | |
| 780 | |
| 781 #gc-toc ul *,#gc-toc ol *,.treelist * { | |
| 782 vertical-align:middle | |
| 783 } | |
| 784 | |
| 785 #gc-toc li a { | |
| 786 color: #767676; | |
| 787 font-weight: 600; | |
| 788 text-decoration: none; | |
| 789 padding-right:4px; | |
| 790 _padding-right:0 | |
| 791 } | |
| 792 | |
| 793 #gc-toc li li a { | |
| 794 font-weight: normal; | |
| 795 } | |
| 796 | |
| 797 #gc-toc li a:hover { | |
| 798 color: #39F; | |
| 799 } | |
| 800 | |
| 801 #gc-toc ul li, #gc-toc ol li, #gc-toc .treelist li { | |
| 802 border-top: 1px solid #e5e5e5; | |
| 803 list-style: none; | |
| 804 padding: 8px 0; | |
| 805 margin: 0; | |
| 806 position: relative; | |
| 807 } | |
| 808 | |
| 809 #gc-toc ul li li,#gc-toc ol li li,#gc-toc .treelist li li { | |
| 810 border-top: none; | |
| 811 padding-left: 10px; | |
| 812 } | |
| 813 | |
| 814 #gc-toc ul h1,#gc-toc ol h1,#gc-toc ul h2,#gc-toc ol h2 { | |
| 815 font-weight: bold; | |
| 816 font-size: 100%; | |
| 817 margin: 0; | |
| 818 padding:.2em 0 8px .2em; | |
| 819 border: none; | |
| 820 background: #fff | |
| 821 } | |
| 822 | |
| 823 #gc-toc .toggle { | |
| 824 background: url(../images/toggle_sprite_apps.png) no-repeat 0px 0px; | |
| 825 width: 9px; | |
| 826 height: 9px; | |
| 827 position: absolute; | |
| 828 right: 0; | |
| 829 text-decoration: none; | |
| 830 margin: 4px 1px 4px -13px; | |
| 831 cursor: pointer; | |
| 832 } | |
| 833 | |
| 834 #gc-toc .toggle.selected { | |
| 835 background-position: 0 -9px; | |
| 836 } | |
| 837 | |
| 838 #gc-toc .toggle:hover { | |
| 839 background-position: 0 -18px; | |
| 840 } | |
| 841 | |
| 842 #gc-toc .toggle.selected:hover { | |
| 843 background-position: 0 -27px; | |
| 844 } | |
| 845 | |
| 846 #toc h2 { | |
| 847 font-weight:bold; | |
| 848 font-size:100%; | |
| 849 margin:0; | |
| 850 border:none !important; | |
| 851 background-color: rgb(232, 237, 235) !important; | |
| 852 padding:0 | |
| 853 } | |
| 854 | |
| 855 #gc-toc ul .leftNavSelected,#gc-toc ol .leftNavSelected,.treelist .leftNavSelect
ed { | |
| 856 color: #39F; | |
| 857 text-decoration:none; | |
| 858 z-index:2; | |
| 859 position:relative | |
| 860 } | |
| 861 | |
| 862 .labs #gc-toc ul .leftNavSelected,.labs #gc-toc ol .leftNavSelected,.labs .treel
ist .leftNavSelected { | |
| 863 /* background-color:#f1f1f1*/ | |
| 864 } | |
| 865 | |
| 866 .depr #gc-toc ul .leftNavSelected,.depr #gc-toc ol .leftNavSelected,.depr .treel
ist .leftNavSelected { | |
| 867 | |
| 868 } | |
| 869 | |
| 870 #gc-toc ul div.tlw-title,#gc-toc ol div.tlw-title,#gc-toc .treelist div.tlw-titl
e { | |
| 871 position:relative; | |
| 872 margin:0 0 0 -15px; | |
| 873 padding:.2em 0 .2em 15px | |
| 874 } | |
| 875 | |
| 876 #gc-toc ul div.tlw-title img.tlw-control,#gc-toc ol div.tlw-title img.tlw-contro
l,.treelist div.tlw-title img.tlw-control { | |
| 877 position:relative; | |
| 878 height:inherit; | |
| 879 width:9px; | |
| 880 margin:0 !important; | |
| 881 padding:0; | |
| 882 border:none | |
| 883 } | |
| 884 | |
| 885 #gc-toc ul .tlw-plus,#gc-toc ol .tlw-plus,.treelist .tlw-plus { | |
| 886 background-image:url(../images/sprites08132008.png); | |
| 887 background-position:-28px -146px; | |
| 888 width:9px; | |
| 889 height:9px | |
| 890 } | |
| 891 | |
| 892 #gc-toc ul .tlw-minus,#gc-toc ol .tlw-minus,.treelist .tlw-minus { | |
| 893 background-image:url(../images/sprites08132008.png); | |
| 894 background-position:-28px -210px; | |
| 895 width:9px; | |
| 896 height:9px | |
| 897 } | |
| 898 | |
| 899 #gc-toc ul .tlw-plus:hover,#gc-toc ol .tlw-plus:hover,.treelist .tlw-plus:hover
{ | |
| 900 background-image:url(../images/sprites08132008.png); | |
| 901 background-position:-28px -344px; | |
| 902 width:9px; | |
| 903 height:9px | |
| 904 } | |
| 905 | |
| 906 #gc-toc ul .tlw-minus:hover,#gc-toc ol .tlw-minus:hover,.treelist .tlw-minus:hov
er { | |
| 907 background-image:url(../images/sprites08132008.png); | |
| 908 background-position:-28px -408px; | |
| 909 width:9px; | |
| 910 height:9px | |
| 911 } | |
| 912 | |
| 913 #gc-toc h1,#gc-toc h2 { | |
| 914 font-weight:bold; | |
| 915 font-size:100%; | |
| 916 margin:0; | |
| 917 padding:0; | |
| 918 border:none; | |
| 919 background:#fff | |
| 920 } | |
| 921 | |
| 922 #gc-toc div.line { | |
| 923 border-top:thin solid #ebebeb; | |
| 924 height:1px; | |
| 925 margin:1.3em 1em 0 0; | |
| 926 padding:0 | |
| 927 } | |
| 928 | |
| 929 #gc-toc.hidden { | |
| 930 display:none | |
| 931 } | |
| 932 | |
| 933 #gc-toc.visible * { | |
| 934 zoom:1 | |
| 935 } | |
| 936 | |
| 937 #gc-pagecontent.expanded { | |
| 938 margin-left:0; | |
| 939 width:auto | |
| 940 } | |
| 941 | |
| 942 #gc-collapsible { | |
| 943 position:absolute; | |
| 944 left:-5px; | |
| 945 top:0; | |
| 946 width:3px; | |
| 947 overflow:hidden; | |
| 948 border:2px solid #fff; | |
| 949 border-top:none; | |
| 950 border-bottom:none; | |
| 951 background:#e5ecf9; | |
| 952 cursor:pointer | |
| 953 } | |
| 954 | |
| 955 .labs #gc-collapsible { | |
| 956 background-color:#dcf6db | |
| 957 } | |
| 958 | |
| 959 .depr #gc-collapsible { | |
| 960 background-color:#ddd | |
| 961 } | |
| 962 | |
| 963 #gc-collapsible.hover { | |
| 964 border-color:#d3d9e5; | |
| 965 border-width:1px; | |
| 966 width:5px | |
| 967 } | |
| 968 | |
| 969 .labs #gc-collapsible.hover { | |
| 970 border-color:#090 | |
| 971 } | |
| 972 | |
| 973 .depr #gc-collapsible.hover { | |
| 974 border-color:#333 | |
| 975 } | |
| 976 | |
| 977 #gc-collapsible-arrow { | |
| 978 width:4px; | |
| 979 height:12px; | |
| 980 background:url(../images/hide-arrow.gif) top left no-repeat; | |
| 981 position:absolute; | |
| 982 margin-left:-15px; | |
| 983 display:none; | |
| 984 z-index:5 | |
| 985 } | |
| 986 | |
| 987 #gc-collapsible-arrow.collapsed { | |
| 988 background:url(../images/show-arrow.gif) top left no-repeat; | |
| 989 margin-left:17px | |
| 990 } | |
| 991 | |
| 992 #gc-footer { | |
| 993 clear:both; | |
| 994 margin:0; | |
| 995 color:#666 | |
| 996 } | |
| 997 | |
| 998 #gc-footer .text { | |
| 999 text-align:center; | |
| 1000 padding:30px 0; | |
| 1001 margin:0 0 0 0 | |
| 1002 } | |
| 1003 | |
| 1004 #gc-footer .notice { | |
| 1005 padding:0 0 8px 0 | |
| 1006 } | |
| 1007 | |
| 1008 #search { | |
| 1009 margin:12px 0 0 170px | |
| 1010 } | |
| 1011 | |
| 1012 #search table,#search table td { | |
| 1013 border:none; | |
| 1014 padding:0; | |
| 1015 margin:0; | |
| 1016 clear:none | |
| 1017 } | |
| 1018 | |
| 1019 #search form { | |
| 1020 margin:0 | |
| 1021 } | |
| 1022 | |
| 1023 .greytext { | |
| 1024 position: absolute; | |
| 1025 top: 30px; | |
| 1026 right: 295px; | |
| 1027 color:#aaa; | |
| 1028 font-size: 11px; | |
| 1029 height:14px | |
| 1030 } | |
| 1031 | |
| 1032 div.search-control { | |
| 1033 display:none; | |
| 1034 margin-top:3px; | |
| 1035 padding:3px | |
| 1036 } | |
| 1037 | |
| 1038 div.search-control .gsc-control { | |
| 1039 width:100% | |
| 1040 } | |
| 1041 | |
| 1042 div.search-control .gsc-ad-box { | |
| 1043 display:none | |
| 1044 } | |
| 1045 | |
| 1046 #gsc-search-box { | |
| 1047 position: relative; | |
| 1048 /* max-width: 445px;*/ | |
| 1049 padding-left: 10px; | |
| 1050 } | |
| 1051 | |
| 1052 .gsc-control form.gsc-search-box { | |
| 1053 display:none; | |
| 1054 } | |
| 1055 | |
| 1056 td.gsc-clear-button { | |
| 1057 display:none | |
| 1058 } | |
| 1059 | |
| 1060 .gsc-search-button { | |
| 1061 position: absolute; | |
| 1062 top: 0; | |
| 1063 right: 0; | |
| 1064 background-color: #4D90FE; | |
| 1065 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),t
o(#4787ed)); | |
| 1066 background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed); | |
| 1067 background-image: -moz-linear-gradient(top,#4d90fe,#4787ed); | |
| 1068 background-image: -ms-linear-gradient(top,#4d90fe,#4787ed); | |
| 1069 background-image: -o-linear-gradient(top,#4d90fe,#4787ed); | |
| 1070 background-image: linear-gradient(top,#4d90fe,#4787ed); | |
| 1071 filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',End
ColorStr='#4787ed'); | |
| 1072 border: 1px solid #3079ED; | |
| 1073 color: white !important; | |
| 1074 -moz-border-radius: 2px; | |
| 1075 -webkit-border-radius: 2px; | |
| 1076 border-radius: 2px; | |
| 1077 cursor: default !important; | |
| 1078 display: inline-block; | |
| 1079 font-weight: bold; | |
| 1080 height: 29px; | |
| 1081 line-height: 29px; | |
| 1082 min-width: 54px; | |
| 1083 padding: 0 8px; | |
| 1084 text-align: center; | |
| 1085 text-decoration: none !important; | |
| 1086 -moz-user-select: none; | |
| 1087 -webkit-user-select: none; | |
| 1088 box-sizing: content-box; | |
| 1089 } | |
| 1090 | |
| 1091 .gsc-search-button-lens { | |
| 1092 vertical-align: middle; | |
| 1093 margin: -8px 0 0; | |
| 1094 padding: 0; | |
| 1095 border: 0; | |
| 1096 } | |
| 1097 | |
| 1098 .gsc-branding { | |
| 1099 display:none | |
| 1100 } | |
| 1101 | |
| 1102 .gsc-tabsArea { | |
| 1103 border-top:1px solid #36C; | |
| 1104 background:#e5ecf9 none repeat scroll 0; | |
| 1105 padding:5px 1px 4px; | |
| 1106 width:100% | |
| 1107 } | |
| 1108 | |
| 1109 .gsc-tabsArea .gs-spacer { | |
| 1110 font-size:0; | |
| 1111 margin-right:0; | |
| 1112 overflow:hidden | |
| 1113 } | |
| 1114 | |
| 1115 .gsc-tabsArea .gs-spacer-opera { | |
| 1116 margin-right:0 | |
| 1117 } | |
| 1118 | |
| 1119 .gsc-tabsAreaInvisible { | |
| 1120 display:none | |
| 1121 } | |
| 1122 | |
| 1123 .gsc-tabHeader { | |
| 1124 display:inline; | |
| 1125 cursor:pointer; | |
| 1126 padding-left:0; | |
| 1127 padding-right:0; | |
| 1128 margin-right:0; | |
| 1129 font-weight:bold | |
| 1130 } | |
| 1131 | |
| 1132 .gsc-tabHeader.gsc-tabhActive { | |
| 1133 position:relative; | |
| 1134 padding:0 10px 0 5px; | |
| 1135 font-weight:bold; | |
| 1136 color:#000; | |
| 1137 cursor:auto | |
| 1138 } | |
| 1139 | |
| 1140 .gsc-tabHeader.gsc-tabhInactive { | |
| 1141 padding:0 10px 0 5px; | |
| 1142 font-weight:normal; | |
| 1143 text-decoration:underline; | |
| 1144 color:#00C | |
| 1145 } | |
| 1146 | |
| 1147 .gsc-tabData.gsc-tabdActive { | |
| 1148 display:block | |
| 1149 } | |
| 1150 | |
| 1151 .gsc-tabData.gsc-tabdInactive { | |
| 1152 display:none | |
| 1153 } | |
| 1154 | |
| 1155 .gsc-resultsbox-visible { | |
| 1156 width:42em | |
| 1157 } | |
| 1158 | |
| 1159 .gsc-results { | |
| 1160 clear:both; | |
| 1161 padding-bottom:2px; | |
| 1162 padding-top:15px | |
| 1163 } | |
| 1164 | |
| 1165 .gsc-results table,.gsc-results td { | |
| 1166 border:0 | |
| 1167 } | |
| 1168 | |
| 1169 #searchControl .gs-publisher { | |
| 1170 display:none | |
| 1171 } | |
| 1172 | |
| 1173 .gsc-result { | |
| 1174 margin-bottom:1.2em | |
| 1175 } | |
| 1176 | |
| 1177 .gsc-result .gs-title { | |
| 1178 height:1.4em; | |
| 1179 overflow:hidden; | |
| 1180 font-size:110% | |
| 1181 } | |
| 1182 | |
| 1183 .gsc-result div.gs-watermark { | |
| 1184 display:none | |
| 1185 } | |
| 1186 | |
| 1187 .gsc-resultsHeader { | |
| 1188 display:none | |
| 1189 } | |
| 1190 | |
| 1191 .gsc-results .gsc-trailing-more-results { | |
| 1192 margin-bottom:10px | |
| 1193 } | |
| 1194 | |
| 1195 .gsc-results .gsc-trailing-more-results,.gsc-results .gsc-trailing-more-results
* { | |
| 1196 color:#00c; | |
| 1197 text-decoration:underline | |
| 1198 } | |
| 1199 | |
| 1200 .gsc-results .gsc-cursor-box .gsc-trailing-more-results { | |
| 1201 margin-bottom:0; | |
| 1202 display:inline | |
| 1203 } | |
| 1204 | |
| 1205 .gsc-results .gsc-cursor { | |
| 1206 display:inline | |
| 1207 } | |
| 1208 | |
| 1209 .gsc-results .gsc-cursor-box { | |
| 1210 margin-bottom:10px | |
| 1211 } | |
| 1212 | |
| 1213 .gsc-results .gsc-cursor-box .gsc-cursor-page { | |
| 1214 cursor:pointer; | |
| 1215 color:#000; | |
| 1216 text-decoration:underline; | |
| 1217 margin-right:8px; | |
| 1218 display:inline | |
| 1219 } | |
| 1220 | |
| 1221 .gsc-results .gsc-cursor-box .gsc-cursor-current-page { | |
| 1222 color:#a90a08; | |
| 1223 font-weight:bold; | |
| 1224 text-decoration:none | |
| 1225 } | |
| 1226 | |
| 1227 .gs-result .gs-title,.gs-result .gs-title * { | |
| 1228 color:#00c; | |
| 1229 text-decoration:underline | |
| 1230 } | |
| 1231 | |
| 1232 .gs-divider { | |
| 1233 padding-bottom:8px; | |
| 1234 text-align:center; | |
| 1235 color:#676767 | |
| 1236 } | |
| 1237 | |
| 1238 .gs-result a.gs-visibleUrl,.gs-result .gs-visibleUrl { | |
| 1239 color:green; | |
| 1240 text-decoration:none | |
| 1241 } | |
| 1242 | |
| 1243 .gsc-webResult div.gs-visibleUrl-short { | |
| 1244 display:none | |
| 1245 } | |
| 1246 | |
| 1247 .gs-webResult div.gs-visibleUrl-long { | |
| 1248 width:100%; | |
| 1249 overflow:hidden; | |
| 1250 display:block; | |
| 1251 white-space:nowrap | |
| 1252 } | |
| 1253 | |
| 1254 .g-tpl-170 .g-unit,.g-unit .g-tpl-170 .g-unit,.g-unit .g-unit .g-tpl-170 .g-unit
{ | |
| 1255 display:block; | |
| 1256 margin:0 0 0 218px; | |
| 1257 width:auto; | |
| 1258 float:none | |
| 1259 } | |
| 1260 | |
| 1261 .g-unit .g-unit .g-tpl-170 .g-first,.g-unit .g-tpl-170 .g-first,.g-tpl-170 .g-fi
rst { | |
| 1262 display:block; | |
| 1263 margin:0; | |
| 1264 width:171px; | |
| 1265 float:left | |
| 1266 } | |
| 1267 | |
| 1268 #cs-searcharea a.unselectable { | |
| 1269 -moz-user-select:none; | |
| 1270 -user-select:none | |
| 1271 } | |
| 1272 | |
| 1273 #cs-recommended { | |
| 1274 text-align:left; | |
| 1275 background-color:#e3effe; | |
| 1276 font-style:italic | |
| 1277 } | |
| 1278 | |
| 1279 #cs-searchresults { | |
| 1280 position:absolute; | |
| 1281 margin-left:-.3em; | |
| 1282 background:#fff; | |
| 1283 line-height:140%; | |
| 1284 border:1px #c9c9c9 solid; | |
| 1285 cursor:pointer; | |
| 1286 position:absolute; | |
| 1287 z-index:2010; | |
| 1288 display:none | |
| 1289 } | |
| 1290 | |
| 1291 #cs-searchresults a { | |
| 1292 text-decoration:none; | |
| 1293 color:#000 | |
| 1294 } | |
| 1295 | |
| 1296 .cs-searchresult { | |
| 1297 padding:0; | |
| 1298 display:block | |
| 1299 } | |
| 1300 | |
| 1301 img.collapsible-control { | |
| 1302 width:9px; | |
| 1303 height:9px; | |
| 1304 cursor:pointer; | |
| 1305 margin:1px; | |
| 1306 vertical-align:middle | |
| 1307 } | |
| 1308 | |
| 1309 img.collapsible-control.collapsible-plus { | |
| 1310 background-image:url(../images/plus.gif) | |
| 1311 } | |
| 1312 | |
| 1313 img.collapsible-control.collapsible-plus.collapsible-hover { | |
| 1314 background-image:url(../images/plus_hover.gif) | |
| 1315 } | |
| 1316 | |
| 1317 img.collapsible-control.collapsible-minus { | |
| 1318 background-image:url(../images/minus.gif) | |
| 1319 } | |
| 1320 | |
| 1321 img.collapsible-control.collapsible-minus.collapsible-hover { | |
| 1322 background-image:url(../images/minus_hover.gif) | |
| 1323 } | |
| 1324 | |
| 1325 #mainColumn { | |
| 1326 display:block; | |
| 1327 margin:0 0 0 171px; | |
| 1328 width:auto; | |
| 1329 float:none | |
| 1330 } | |
| 1331 | |
| 1332 div.summary .subdued { | |
| 1333 color: rgb(117, 148, 184); | |
| 1334 } | |
| 1335 | |
| 1336 .optional { | |
| 1337 color: rgb(125, 125, 125); | |
| 1338 } | |
| 1339 | |
| 1340 .apiGroup div.description { | |
| 1341 margin-left: 2em; | |
| 1342 } | |
| 1343 | |
| 1344 .apiGroup div.summary { | |
| 1345 border: 1px solid rgb(147, 180, 217); | |
| 1346 font-family: "Courier New", courier, monospace; | |
| 1347 padding: 0.5em 0.5em 0.5em 2em; | |
| 1348 text-indent: -1.5em; | |
| 1349 background-color: rgb(202, 222, 244); | |
| 1350 margin-top: 1em; | |
| 1351 } | |
| 1352 | |
| 1353 div.summary div { | |
| 1354 margin-bottom: 0.5em; | |
| 1355 } | |
| 1356 | |
| 1357 div#breadcrumbs { | |
| 1358 display: inline; | |
| 1359 font-size: 80%; | |
| 1360 } | |
| 1361 | |
| 1362 .exampleLink { | |
| 1363 font-size: 80%; | |
| 1364 } | |
| 1365 | |
| 1366 dd { | |
| 1367 margin-bottom: 0.75em; | |
| 1368 } | |
| 1369 | |
| 1370 ol li { | |
| 1371 margin-top: 1em; | |
| 1372 } | |
| 1373 | |
| 1374 .example { | |
| 1375 } | |
| 1376 | |
| 1377 p#classSummary { | |
| 1378 } | |
| 1379 | |
| 1380 .apiItem { | |
| 1381 } | |
| 1382 | |
| 1383 .apiGroup .apiItem { | |
| 1384 margin-bottom: 2em; | |
| 1385 } | |
| 1386 | |
| 1387 .apiItem .apiItem { | |
| 1388 margin-bottom: 0px; | |
| 1389 } | |
| 1390 | |
| 1391 div.note { | |
| 1392 background-color: rgb(202, 222, 244); | |
| 1393 border: 1px solid rgb(147, 180, 217); | |
| 1394 padding: 0.5em; | |
| 1395 margin: 1em 0px; | |
| 1396 } | |
| 1397 | |
| 1398 .hidden { | |
| 1399 display: none; | |
| 1400 } | |
| 1401 | |
| 1402 #gc-pagecontent { | |
| 1403 } | |
| 1404 | |
| 1405 #mainColumn table.imagelayout { | |
| 1406 border:none; | |
| 1407 } | |
| 1408 | |
| 1409 #mainColumn table.imagelayout td { | |
| 1410 border:none; | |
| 1411 padding:0px 6px 6px; | |
| 1412 text-align:center; | |
| 1413 } | |
| 1414 | |
| 1415 #mainColumn table.imagelayout tr.images td { | |
| 1416 vertical-align:bottom; | |
| 1417 } | |
| 1418 | |
| 1419 table.noborders { | |
| 1420 padding:0px; | |
| 1421 } | |
| 1422 | |
| 1423 table.noborders th { | |
| 1424 border:none; | |
| 1425 padding:12px 12px 6px 0px | |
| 1426 } | |
| 1427 table.noborders td { | |
| 1428 border:none; | |
| 1429 padding:6px 12px 6px 0px | |
| 1430 } | |
| 1431 | |
| 1432 #codesiteContent.hideSideNav #gc-pagecontent { | |
| 1433 padding-left:24px; | |
| 1434 border-left:0px; | |
| 1435 } | |
| 1436 | |
| 1437 #codesiteContent.hideSideNav .g-tpl-170 .g-unit { | |
| 1438 display:block; | |
| 1439 margin:0 0 0 0px; | |
| 1440 width:auto; | |
| 1441 float:none | |
| 1442 } | |
| 1443 | |
| 1444 #gsc-search-input { | |
| 1445 position: absolute; | |
| 1446 top: 0; | |
| 1447 right: 100px; | |
| 1448 background: white; | |
| 1449 border: 1px solid #D9D9D9; | |
| 1450 border-radius: 1px; | |
| 1451 border-top: 1px solid silver; | |
| 1452 height: 27px; | |
| 1453 padding: 0 0 0 8px; | |
| 1454 -moz-border-radius: 1px; | |
| 1455 -webkit-border-radius: 1px; | |
| 1456 margin: 0 6px 0 0; | |
| 1457 font-size: 13px; | |
| 1458 } | |
| OLD | NEW |