1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
|
/**
* ------------------------------------------------------------
* Copyright (c) 2002, 2020, Oracle and/or its affiliates.
* This software is the proprietary information of Oracle
* All Right Reserved.
* ------------------------------------------------------------
*
* SVN revision information:
* @version $Revision: 3569 $:
* @date $Date: 2016-01-08 18:02:48 +0000 (Fri, 08 Jan 2016) $:
*/
/*
Set the default text formatting
*/
body
{
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000000;
}
/*
Main text sections (i.e. the main page content)
Restricted to max width to prevent it going to the full width
of a window when the window is extended.
*/
div.book p,
div.section p,
div.chapter p,
div.appendix p,
div.preface p,
div.legalnotice p
{
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
display: block;
max-width: 720px;
}
div.book a:link,
div.article a:link,
div.part a:link,
div.chapter a:link,
div.section a:link,
div.appendix a:link,
div.preface a:link
{
text-decoration: underline;
text-underline-position: under;
color: #00759f;
}
div.book a:visited,
div.article a:visited,
div.part a:visited,
div.chapter a:visited,
div.section a:visited,
div.appendix a:visited,
div.preface a:visited
{
text-decoration: underline;
text-underline-position: under;
color: rgb(1,90,132);
}
div.toc A.tocdetail
{
text-decoration: none;
}
/* Default font for all headers */
div.part h1,
div.chapter h1, div.section h1, div.appendix h1, div.preface h1,
div.chapter h2, div.section h2, div.appendix h2, div.preface h2, div.legalnotice h2,
div.chapter h3, div.section h3, div.appendix h3, div.preface h3,
div.chapter h4, div.section h4, div.appendix h4, div.preface h4,
div.chapter h5, div.section h5, div.appendix h5, div.preface h5,
div.chapter h6, div.section h6, div.appendix h6, div.preface h6,
div.chapter p.title
{
font-family: Helvetica, Arial, sans-serif;
}
/* Explicit definitions for command elements within a title */
div.part h1 strong.command,
div.chapter h1 strong.command, div.section h1 strong.command,
div.chapter h2 strong.command, div.section h2 strong.command,
div.chapter h3 strong.command, div.section h3 strong.command,
div.chapter h4 strong.command, div.section h4 strong.command,
div.chapter h5 strong.command, div.section h5 strong.command,
div.chapter h6 strong.command, div.section h6 strong.command,
span.section a span strong.command, span.chapter a span strong.command,
div.chapter p.title strong.command
{
color: #990000;
background-color: white;
font-style: oblique;
font-weight: normal;
font-family: "Courier New", Courier, fixed, monospace;
font-size: 120%;
}
/* Explicit definitions for literals within a title */
div.part h1 code.literal, div.chapter h1 code.literal,
div.section h1 code.literal, div.chapter h2 code.literal,
div.section h2 code.literal, div.chapter h3 code.literal,
div.section h3 code.literal, div.chapter h4 code.literal,
div.section h4 code.literal, div.chapter h5 code.literal,
div.section h5 code.literal, div.chapter h6 code.literal,
div.section h6 code.literal, span.section a span code.literal,
span.chapter a span code.literal, div.chapter p.title code.literal
{
color: #026789;
background-color: white;
font-weight: bold;
font-family: "Courier New", Courier, fixed, monospace;
font-size: 120%;
}
/* Inline code (literal/option/command) */
div.chapter code, div.section code, div.article code
{
color: #0e4075;
background-color: white;
font-weight: normal;
font-family: "Courier New", Courier, fixed, monospace;
font-size: 95%;
}
div.book a code,
div.chapter a code,
div.section a code
{
text-decoration: underline;
text-underline-position: under;
}
div.chapter pre,
div.section pre,
div.article pre,
div.legalnotice pre
{
color: #a1520f;
background-color: white;
font-family: "Courier New", Courier, fixed, monospace;
font-size: 95%;
}
div.chapter sup,
div.section sup,
table.topic-guide td sup
{
vertical-align: super;
font-size: smaller;
}
.type
{
font-family: "Courier New", Courier, fixed, monospace;
font-size: 95%;
}
/* Increase the size of the 'letter' headings in indexes and color them */
div.index div.index div.indexdiv h3
{
font-size: 200%;
color: #026789;
}
div A.firstterm:link {text-decoration:none;}
div A.firstterm:visited {text-decoration:none;}
div A.firstterm:hover {text-decoration:underline;}
div A.firstterm:active {text-decoration:underline;}
em.glossterm, em.firstterm {
color: black;
font-style: normal;
text-decoration: none;
border-bottom: 1px green dotted;
}
/* Override title formatting for figure titles */
div.figure p.title b {
font-family: Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: bold;
font-style: normal;
color: black;
}
/* Page (chapter/section) title */
div.part h1,
div.chapter h1,
div.preface h1,
div.book div.titlepage h1.title
{
font-family: Helvetica, Arial, sans-serif;
font-size: 250%;
line-height: 100%;
font-weight: bold;
}
div.col66 div.book div.titlepage h1.title
{
font-family: Helvetica, Arial, sans-serif;
font-size: 150%;
font-weight: bold;
}
/* Set the size for sub-headings on a single page */
div.book div.titlepage h2,
div.chapter div.titlepage h2,
div.appendix div.titlepage h2
{
font-family: Helvetica, Arial, sans-serif;
font-size: 200%;
font-weight: normal;
color: black;
background-color: white;
}
div.section div.titlepage h2,
div.preface div.titlepage h2
{
font-size: 180%;
font-weight: bold;
color: black;
background-color: white;
}
div.section div.titlepage h3
{
font-size: 160%;
font-weight: bold;
color: black;
background-color: white;
}
div.section div.titlepage h4
{
font-size: 140%;
font-weight: bold;
color: black;
background-color: white;
}
div.section div.titlepage h5
{
font-size: 120%;
font-weight: bold;
color: black;
background-color: white;
}
div.section div.titlepage h6
{
font-size: 100%; /* Not sure if needed, seems 100% by default */
font-weight: bold; /* Make it stand out as a heading */
color: black;
background-color: white;
}
/*
These are inline elements for corresponding inline
elements, such as errorcode and errorname.
*/
.errorcode
{
font-family: "Courier New", Courier, fixed, monospace;
font-weight: normal;
color: #7b3d23;
background-color: white;
}
.errorname
{
font-family: "Courier New", Courier, fixed, monospace;
font-weight: bold;
color: #7b3d23;
background-color: white;
}
.errortext
{
font-family: "Courier New", Courier, fixed, monospace;
font-weight: normal;
color: #7b3d23;
background-color: white;
}
.errortype
{
font-family: "Courier New", Courier, fixed, monospace;
color: #7b3d23;
background-color: white;
font-style: italic;
}
/* Font size for the headline of an admonition
*/
div.warning div.admon-title,
div.warning h3,
div.note div.admon-title,
div.note h3,
div.important div.admon-title,
div.important h3,
div.caution div.admon-title,
div.caution h3
{
font-family: Helvetica, Arial, sans-serif;
font-size: 90%;
font-weight: bold;
}
div.note
{
border-left: 5px solid black;
padding-left: 5px;
margin-right: 1in;
}
div.warning
{
border-left: 5px solid red;
padding-left: 5px;
margin-right: 1in;
}
div.caution
{
border-left: 5px solid yellow;
padding-left: 5px;
margin-right: 1in;
}
div.important
{
border-left: 5px solid maroon;
padding-left: 5px;
margin-right: 1in;
}
/*
Program listings have a grey background to set them off from the
rest of the page. We limit the width to ensure a program listing
item doesn't go too wide on the page. Font size is reduced to
prevent the code is not badly matched.
*/
div.preface pre.programlisting,
div.chapter pre.programlisting,
div.appendix pre.programlisting,
div.section pre.programlisting,
div.article pre.programlisting,
div.legalnotice pre.programlisting
{
background: #eeeeee;
color: black;
display: block;
max-width: 720px;
line-height: 20px;
font-size: 13px;
padding: 2px;
}
/* GUI items are formatted black and bold */
.guibutton, .guiicon, .guilabel, .guimenu, .guimenuitem, .guisubmenu
{
color: black;
font-weight: bold;
}
/* Key caps are made to look like a key top */
strong.keycap
{
background: #eeeeee;
color: black;
display: inline;
border: 1px solid #000000;
font-variant: small-caps;
padding: 1px;
line-height: 1.2em;
}
/* Unknown and unfound in transformations */
#subfld h1
{
font-size: 90%;
font-weight: bold;
}
/* Formatting for command elements */
span.section a span strong.command,
strong.command
{
color: #990000;
background-color: white;
font-weight: normal;
font-style: oblique;
font-size: 110%;
}
/* Formatting for literal elements within headers */
dt span code
{
font-weight: bold;
}
/*
We reduce the size for code (inline) literal elements
so that the fixed width font doesn't look bigger than
the text around it.
*/
code
{
font-size: 95%;
}
/* Prevent bold emphasis in code elements from looking too out of place */
p strong code
{
font-size: 95%;
font-weight: normal;
}
pre strong code
{
font-weight: normal;
font-size: 100%;
}
/* Make standard emphasis 100%, since italics make the text appear smaller */
em
{
font-style: italic;
font-size: 100%;
}
/* Make emphasis in fixed fonts up from the reduced size */
em code
{
font-size: 110%;
}
/* Ensure emphasis embedded in code exactly 100% */
code em code
{
font-size: 100%;
}
/* Set the font for type elements to fixed font */
span.type
{
font-family: "Courier New", Courier, fixed, monospace;
}
/* Italic and bold for emphasis role="bold" */
span.bold strong
{
font-style: italic;
font-weight: bold;
}
/* Italic for standard emphasis */
span.emphasis em
{
font-style: italic;
font-weight: normal;
}
/* Row header emphasis for all text styles */
th[scope=row] *
{
font-weight: bold !important;
}
/* Monospace bold for emphasis role="bold" within top-level sections */
span.section span strong.command
{
font-family: "Courier New", Courier, fixed, monospace;
font-weight: bold;
font-size: 110%;
}
/* Set inline code elements in titles within TOC */
span.section code.literal,
div.section code.literal,
/* div.chapter code.literal line added by Stefan 2013-02-19, to fix a non-boldedness issue in the MySQL topic guides.
This shouldn't affect any other books, but if it does, this comment should make it easy to find the culprit. */
div.chapter code.literal,
div.section code.classname,
div.example code.literal,
div.book code.literal,
div.index code.literal
{
font-family: "Courier New", Courier, fixed, monospace;
font-weight: bold;
color: #026789;
background-color: white;
font-size: 95%;
}
/* Stop example-break from displaying after examples */
.example-break
{
display:none;
}
/*
Set the size of code literals within table cells to 100%,
because the difference in font size wont be so significant.
*/
td code.literal
{
font-size: 100%;
}
/* Formatting for deprecated warnings */
p.deprecated span.bold strong
{
color: red;
background-color: white;
font-weight: bold;
font-style: normal;
}
/*
Ensure code elements in headers are the same size as the other
text, because the increased size on headers lessens the normal
effect of fixed vs normal fonts
*/
div.section div.titlepage h1 code,
div.section div.titlepage h2 code,
div.section div.titlepage h3 code,
div.section div.titlepage h4 code,
div.section div.titlepage h5 code,
div.section div.titlepage h1 code
{
font-size: 100%;
}
/* command element block formatting; color, size and monospace */
strong.command
{
font-family: "Courier New", Courier, fixed, monospace;
font-size: 100%;
color: #990000;
font-weight: normal;
}
/* replaceable element sets replaceable text to bold */
em.replaceable code,
pre.programlisting em.replaceable code
{
color: inherit;
font-weight: bold;
background-color: inherit;
padding: 1px;
}
/* userinput element sets user input text to bold */
strong.userinput code,
pre.programlisting strong.userinput code
{
color: inherit;
font-weight: bold;
background-color: inherit;
padding: 1px;
}
/* filename element sets different color */
p code.filename
{
color: #990000;
background-color: white;
}
/* emphasis role="bold" */
span.emphasis em
{
color: #003333;
background-color: white;
}
span.bold strong
{
color: #003333;
background-color: white;
}
span.section span strong.command
{
color: #026789;
background-color: white;
}
/*
Reset the color of literal and other inline monospace
formatting for sub-level headings in the page. Without this
setting, the color coded formatting of the monospace elements
is too strong
*/
h3.title code.literal
{
color: black;
background-color: white;
}
/*
Set the maximum width of a table or informaltable to slightly
less than the width of the page
*/
div.section table,
div.chapter table,
div.informaltable table
{
max-width: 660px;
border: none;
}
/* Always align content to the top of the row */
table tr
{
vertical-align: top;
}
/*
Use outset borders and reduce the font width for all
table cell data
*/
td
{
font-family: Helvetica, Arial, sans-serif;
font-size: 95%;
padding: 0px 5px 0px 5px;
border: outset 0.1em gray;
}
/* Table row header formatting */
th,
div.informaltable td strong
{
font-family: Helvetica, Arial, sans-serif;
color: black;
background-color: white;
font-weight: bold;
font-style: normal;
text-align: left;
}
/*
Set minimun/maximum width of para, programlisting and tables
when working on 2/3rd width elements
*/
div.col66 p,
div.col66 pre.programlisting,
div.col66 table,
div.col66 div.informaltable table
{
min-width: 600px;
max-width: 660px;
}
/* Override the formatting for 'quote' elements */
/* div.section span.quote,
div.section .quote,
div.appendix span.quote,
div.appendix .quote,
div.chapter span.quote,
div.chapter .quote,
div.abstract span.quote,
div.abstract .quote,
div.glossary span.quote,
div.glossary .quote,
div.index span.quote,
div.index .quote,
div.book span.quote,
div.book .quote,
div.section div.itemizedlist ul li p span.quote,
div.section div.itemizedlist ul li p .quote,
div.preface span.quote,
div.preface .quote */
div .quote
{
border: 0px;
padding: 0px;
margin: 0px;
width: 100%;
font-size: inherit;
font-weight: inherit;
font-style: inherit;
font-family: inherit;
}
/*
We explicitly set lists at all levels to get the formatting right and override
the inherited styles
*/
/*
Bullet styles (by level/order): disc, square, circle, ...
Order styles (by level/order): decimal, lowercase-alpha, roman, ...
*/
/* Bulleted list */
div.itemizedlist ul li
{
font-size: 14px;
list-style-position: outside;
list-style-image: none;
list-style-type: disc;
vertical-align: middle;
line-height: 120%;
}
/* 2nd level Bulleted list */
div.itemizedlist ul li div.itemizedlist ul li,
div.orderedlist ol li div.itemizedlist ul li
{
font-size: 14px;
list-style-position: outside;
list-style-image: none;
list-style-type: square;
vertical-align: middle;
line-height: 120%;
}
/* 3rd level Bulleted list */
div.itemizedlist ul li div.itemizedlist ul li div.itemizedlist ul li,
div.itemizedlist ul li div.orderedlist ol li div.itemizedlist ul li,
div.orderedlist ol li div.itemizedlist ul li div.itemizedlist ul li,
div.orderedlist ol li div.orderedlist ol li div.itemizedlist ul li
{
font-size: 14px;
list-style-position: outside;
list-style-image: none;
list-style-type: circle;
vertical-align: middle;
line-height: 120%;
}
/* 4th level Bulleted list */
div.itemizedlist ul li div.itemizedlist ul li div.itemizedlist ul li div.itemizedlist ul li,
div.itemizedlist ul li div.itemizedlist ul li div.orderedlist ol li div.itemizedlist ul li,
div.itemizedlist ul li div.orderedlist ol li div.itemizedlist ul li div.itemizedlist ul li,
div.itemizedlist ul li div.orderedlist ol li div.orderedlist ol li div.itemizedlist ul li,
div.orderedlist ol li div.itemizedlist ul li div.orderedlist ol li div.itemizedlist ul li,
div.orderedlist ol li div.itemizedlist ul li div.orderedlist ul li div.itemizedlist ul li,
div.orderedlist ol li div.orderedlist ol li div.itemizedlist ul li div.itemizedlist ul li,
div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li div.itemizedlist ul li
{
font-size: 100%;
list-style-position: outside;
list-style-image: none;
list-style-type: disc;
vertical-align: middle;
line-height: 120%;
}
/* Ordered list */
div.orderedlist ol li
{
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
list-style-position: outside;
list-style-image: none;
list-style-type: decimal;
vertical-align: middle;
line-height: 120%;
}
/* 2nd level Ordered list */
div.itemizedlist ul li div.orderedlist ol li,
div.orderedlist ol li div.orderedlist ol li
{
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
list-style-position: outside;
list-style-image: none;
list-style-type: lower-alpha;
vertical-align: middle;
line-height: 120%;
}
/* 3rd level Ordered list */
div.itemizedlist ul li div.itemizedlist ul li div.orderedlist ol li,
div.itemizedlist ul li div.orderedlist ol li div.orderedlist ol li,
div.orderedlist ol li div.itemizedlist ul li div.orderedlist ol li,
div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li
{
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
list-style-position: outside;
list-style-image: none;
list-style-type: lower-roman;
vertical-align: middle;
line-height: 120%;
}
/* 4th level Ordered list */
div.itemizedlist ul li div.itemizedlist ul li div.itemizedlist ul li div.orderedlist ol li,
div.itemizedlist ul li div.itemizedlist ul li div.orderedlist ol li div.orderedlist ol li,
div.itemizedlist ul li div.orderedlist ol li div.itemizedlist ul li div.orderedlist ol li,
div.itemizedlist ul li div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li,
div.orderedlist ol li div.itemizedlist ul li div.orderedlist ol li div.orderedlist ol li,
div.orderedlist ol li div.itemizedlist ul li div.orderedlist ul li div.orderedlist ol li,
div.orderedlist ol li div.orderedlist ol li div.itemizedlist ul li div.orderedlist ol li,
div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li
{
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
list-style-position: outside;
list-style-image: none;
list-style-type: decimal;
vertical-align: middle;
line-height: 120%;
}
/* Section navigation is another formatted list */
ul#sectionnav
{
margin-left: 6px;
}
ul#sectionnav li
{
margin-left: 4px;
margin-bottom: 4px;
}
ul#sectionnav li.self
{
margin-left: 4px;
margin-bottom: 2px;
}
ul#sectionnav li.self ul.children
{
margin-left: 6px;
}
ul#sectionnav li.self ul.children li
{
height: auto;
line-height: inherit;
margin-bottom: 0px;
}
/* Formatting for para role="es" (Enterprise Server only) */
p.es
{
color: #cc6600;
background-color: white;
font-weight: bold;
font-style: normal;
}
/* Formatting for para role="cs" (Community Server only) */
p.cs
{
/* Community Server only */
color: #ff6600;
background-color: white;
font-weight: bold;
font-style: normal;
}
/* Formatting for para role="valid-value" to
space paragraphs within MySQL optvar table cell*/
p.valid-value {
margin-top: 0;
margin-bottom: 0;
}
/*
Formatting for the list of available documents (dev.mysql.com/doc)
starts here
*/
h2.docs-list-title
{
font-family: Helvetica, Arial, sans-serif;
text-decoration: underline;
text-underline-position: under;
}
span.docs-list-title
{
font-size: 50%;
}
table.docs-document-list
{
border-style: none;
font-size: 12px;
font-family: Helvetica, Arial, sans-serif;
border: none;
}
table.docs-document-list tr.title
{
text-align: center;
vertical-align: bottom;
font-weight: bold;
}
/*
Formatting of odd/even rows is different to provide
an alternate color on each row
*/
table.docs-document-list tr.even
{
vertical-align: bottom;
color: black;
background-color: #efefef;
border: 0px;
}
table.docs-document-list tr.odd
{
vertical-align: bottom;
color: black;
background-color: white;
border: 0px;
}
/*
Header cells are aligned to bottom, not top
to allow for multi-line headings
*/
table.docs-document-list th.title
{
text-align: center;
vertical-align: bottom;
padding: 0px 5px 0px 5px;
border: 0px;
}
table.docs-document-list th.ljtitle
{
text-align: left;
vertical-align: bottom;
padding: 0px 5px 0px 5px;
border: 0px;
}
/*
Set only left/right padding on table cells
so that the page length is not too long
*/
table.docs-document-list td
{
padding: 0px 5px 0px 5px;
border: none;
}
/*
Title cells are aligned to bottom, not top
to allow for multi-line headings
*/
table.docs-document-list td.title
{
text-align: center;
vertical-align: bottom;
border: 0px;
}
table.docs-document-list td.ljtitle
{
text-align: left;
vertical-align: bottom;
border: 0px;
}
/*
We fix the width of link columns to give them
a consistent width
*/
table.docs-document-list td.link
{
width: 70px;
text-align: center;
border: 0px;
}
div.oracle-none th, div.oracle-grprows th, div.oracle-seprows th, div.oracle-all th {
font-family: Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: bold;
font-style: normal;
color: black;
text-align: left;
vertical-align: bottom;
background-color: white;
padding: 4px 8px 4px 8px;
border: solid 0 white;
}
div.oracle-none tbody th, div.oracle-grprows tbody th, div.oracle-seprows tbody th, div.oracle-all tbody th {
vertical-align: top;
}
div.oracle-none td, div.oracle-grprows td, div.oracle-seprows td, div.oracle-all td {
font-family: Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: normal;
font-style: normal;
color: black;
text-align: left;
vertical-align: top;
background-color: white;
padding: 4px 8px 4px 8px;
border: solid 0 white;
}
div.oracle-none p, div.oracle-grprows p, div.oracle-seprows p, div.oracle-all p {
margin: 4px 0 4px 0;
}
div.oracle-none p.title, div.oracle-grprows p.title, div.oracle-seprows p.title, div.oracle-all p.title {
margin: 8px 0 8px 0;
}
div.oracle-none table { /* Simple table without any lines */
border-collapse: collapse;
border-spacing: 0;
border: solid 0 white;
}
div.oracle-grprows table { /* Lines above and below header and after last row */
border-collapse: collapse;
border-spacing: 0;
border-top: 1px solid black;
border-bottom: 1px solid black;
border-left: 1px solid white;
border-right: 1px solid white;
}
div.oracle-grprows tr {
border: solid 0 white;
}
div.oracle-grprows th {
border-left-style: hidden;
border-right-style: hidden;
border-bottom: 1px solid black;
}
div.oracle-grprows td {
border-left-style: hidden;
border-right-style: hidden;
}
div.oracle-seprows table { /* Lines above header and after every row */
border-collapse: collapse;
border-spacing: 0;
border-top: 1px solid black;
border-bottom: 1px solid black;
border-left: 1px solid white;
border-right: 1px solid white;
}
div.oracle-seprows tr {
border-left-style: hidden;
border-right-style: hidden;
border-bottom: 1px solid black;
}
div.oracle-seprows th {
border-left-style: hidden;
border-right-style: hidden;
border-bottom: 1px solid black;
}
div.oracle-seprows td {
border-left-style: hidden;
border-right-style: hidden;
border-bottom: 1px solid black;
}
div.oracle-all table { /* Lines around table and between every row and column */
border-collapse: collapse;
border-spacing: 0;
border: 1px solid black;
}
div.oracle-all th {
border: 1px solid black;
}
div.oracle-all td {
border: 1px solid black;
}
/* Footnotes in tables have a reduced paragraph gap */
div.footnote p
{
line-height: 125%;
/* height: 100%; */
margin-bottom: 0px;
font-size: 95%;
margin-top: 5px;
}
/* Superscript should have an additional margin to improve readability */
td span.bold strong sup,
td sup
{
margin-left: 3px;
font-weight: normal;
}
/* The topic table should have slightly smaller text */
table.topic-guide tbody tr td
{
text-align: center;
font-size: 80%;
line-height: 180%;
}
/* The copyright footer and beta draft header have centered text */
div.copyright-footer,
div.status-header
{
text-align: center;
padding: 10px;
margin: 5px;
font-family: Helvetica, Arial, sans-serif;
font-size: 85%;
}
/* Beta draft header and Oracle confidential footer */
.alert
{
font-weight: bold;
color: #e00;
}
/* Beta and Private Beta is colored red */
.beta, .private-beta
{
color: #e00;
}
/* Terms in a Glossary list are bold */
span.term
{
font-weight: bold;
}
/* Elements for the revisionflag attribute */
.added
{
background-color: yellow;
}
.deleted
{
background-color: fuchsia;
}
.changed
{
background-color: green;
}
/* Styling for remarks */
.remark
{
background-color: #CCFFCC;
}
.remark-query
{
background-color: #FFFF00;
}
.remark-note
{
background-color: #CCCC66;
}
.remark-todo
{
background-color: #FFCCFF;
}
.remark-worklog, .remark-bugdb, .remark-pls, .remark-jira
{
background-color: #99CCFF;
}
/* Keep global th and td rules from rendering 'table-contents' and 'informaltable' */
/* table header and ordinary cell borders invisible... Also add a bit of padding to */
/* alleviate crowding. */
div.table-contents th, div.table-contents td, div.informaltable th, div.informaltable td
{
border: 0.1em solid gray;
padding: 3px;
margin: 0;
}
/*
The following formats the front page of articles (not any subsequent pages),
in order to work around a couple of glitches in the site-wide CSS of dev.mysql.com:
- "Resets" the font size in paragraphs to "normal" (100%);
not setting the text explicitly to 100% would result
in the text being smaller on the front page.
- Sets the font size of the article title to 250% explicitly,
which matches the font size of book titles.
- Sets the font size of the word "Abstract" a tad bigger (120%)
than it's set for book.
- Sets the font size of subtitles a tad smaller than the word "Abstract",
and a tad bigger than the continuous text. Note that this should affect
only subtitles that sit in an articleinfo.
The formatting shouldn't affect any articles we publish, except the ones on
dev.mysql.com.
*/
div.article h2.title {
font-size: 250%; }
div.article p.title {
font-size: 120%; }
div.article h2.subtitle {
font-size: 110%; }
div.article p {
font-size: 100%; }
|