style.css 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. body {
  2. font: 13px/1.5 Verdana, 'Geneva CE', lucida, sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. background: #ffffff;
  6. color: #333333;
  7. }
  8. h1, h2, h3, h4, caption {
  9. font-family: 'Trebuchet MS', 'Geneva CE', lucida, sans-serif;
  10. color: #053368;
  11. }
  12. h1 {
  13. color: #1e5eb6;
  14. font-size: 230%;
  15. font-weight: normal;
  16. margin: .3em 0;
  17. }
  18. h2 {
  19. color: #1e5eb6;
  20. font-size: 150%;
  21. font-weight: normal;
  22. margin: -.3em 0 .3em 0;
  23. }
  24. h3 {
  25. font-size: 1.6em;
  26. font-weight: normal;
  27. margin-bottom: 2px;
  28. }
  29. h4 {
  30. font-size: 100%;
  31. font-weight: bold;
  32. padding: 0;
  33. margin: 0;
  34. }
  35. caption {
  36. border: 1px solid #cccccc;
  37. background: #ecede5;
  38. font-weight: bold;
  39. font-size: 1.2em;
  40. padding: 3px 5px;
  41. text-align: left;
  42. margin-bottom: 0;
  43. }
  44. p {
  45. margin: .7em 0 1em;
  46. padding: 0;
  47. }
  48. hr {
  49. margin: 2em 0 1em;
  50. border: none;
  51. border-top: 1px solid #cccccc;
  52. height: 0;
  53. }
  54. a {
  55. color: #006aeb;
  56. padding: 3px 1px;
  57. text-decoration: none;
  58. }
  59. h1 a {
  60. color: #1e5eb6;
  61. }
  62. a:hover, a:active, a:focus, a:hover b, a:hover var {
  63. background-color: #006aeb;
  64. color: #ffffff !important;
  65. }
  66. code, var, pre {
  67. font-family: monospace;
  68. }
  69. var {
  70. font-weight: bold;
  71. font-style: normal;
  72. color: #ca8a04;
  73. }
  74. pre {
  75. margin: 0;
  76. }
  77. code a b {
  78. color: #000000;
  79. }
  80. .deprecated {
  81. text-decoration: line-through;
  82. opacity: .5;
  83. }
  84. .invalid {
  85. color: #e71818;
  86. }
  87. .hidden {
  88. display: none;
  89. }
  90. /* Left side */
  91. #left {
  92. overflow: auto;
  93. width: 270px;
  94. height: 100%;
  95. position: fixed;
  96. }
  97. /* Menu */
  98. #menu {
  99. padding: 10px;
  100. }
  101. #menu ul {
  102. list-style: none;
  103. padding: 0;
  104. margin: 0;
  105. }
  106. #menu ul ul {
  107. padding-left: 10px;
  108. }
  109. #menu li {
  110. white-space: nowrap;
  111. position: relative;
  112. }
  113. #menu a {
  114. display: block;
  115. padding: 0 2px;
  116. }
  117. #menu .active > a, #menu > span {
  118. color: #333333;
  119. background: none;
  120. font-weight: bold;
  121. }
  122. #menu .active > a.invalid {
  123. color: #e71818;
  124. }
  125. #menu .active > a:hover, #menu .active > a:active, #menu .active > a:focus {
  126. background-color: #006aeb;
  127. }
  128. #menu #groups span {
  129. position: absolute;
  130. top: 4px;
  131. right: 2px;
  132. cursor: pointer;
  133. display: block;
  134. width: 12px;
  135. height: 12px;
  136. background: url('collapsed.png') transparent 0 0 no-repeat;
  137. }
  138. #menu #groups span:hover {
  139. background-position: -12px 0;
  140. }
  141. #menu #groups span.collapsed {
  142. background-position: 0 -12px;
  143. }
  144. #menu #groups span.collapsed:hover {
  145. background-position: -12px -12px;
  146. }
  147. #menu #groups ul.collapsed {
  148. display: none;
  149. }
  150. /* Right side */
  151. #right {
  152. overflow: auto;
  153. margin-left: 275px;
  154. height: 100%;
  155. position: relative;
  156. left: 0;
  157. right: 0;
  158. }
  159. #rightInner {
  160. max-width: 1000px;
  161. min-width: 350px;
  162. }
  163. /* Search */
  164. #search {
  165. float: right;
  166. margin: 3px 8px;
  167. }
  168. #search input.text {
  169. padding: 3px 5px;
  170. width: 250px;
  171. }
  172. /* Autocomplete */
  173. .ac_results {
  174. padding: 0;
  175. border: 1px solid #cccccc;
  176. background-color: #ffffff;
  177. overflow: hidden;
  178. z-index: 99999;
  179. }
  180. .ac_results ul {
  181. width: 100%;
  182. list-style-position: outside;
  183. list-style: none;
  184. padding: 0;
  185. margin: 0;
  186. }
  187. .ac_results li {
  188. margin: 0;
  189. padding: 2px 5px;
  190. cursor: default;
  191. display: block;
  192. font: 12px 'Trebuchet MS', 'Geneva CE', lucida, sans-serif;
  193. line-height: 16px;
  194. overflow: hidden;
  195. white-space: nowrap;
  196. }
  197. .ac_results li strong {
  198. color: #000000;
  199. }
  200. .ac_odd {
  201. background-color: #eeeeee;
  202. }
  203. .ac_over {
  204. background-color: #006aeb;
  205. color: #ffffff;
  206. }
  207. .ac_results li.ac_over strong {
  208. color: #ffffff;
  209. }
  210. /* Navigation */
  211. #navigation {
  212. padding: 3px 8px;
  213. background-color: #f6f6f4;
  214. height: 26px;
  215. }
  216. #navigation ul {
  217. list-style: none;
  218. margin: 0 8px 4px 0;
  219. padding: 0;
  220. overflow: hidden;
  221. float: left;
  222. }
  223. #navigation ul + ul {
  224. border-left: 1px solid #000000;
  225. padding-left: 8px;
  226. }
  227. #navigation ul li {
  228. float: left;
  229. margin: 2px;
  230. padding: 0 3px;
  231. font-family: Verdana, 'Geneva CE', lucida, sans-serif;
  232. color: #808080;
  233. }
  234. #navigation ul li.active {
  235. background-color: #053368;
  236. color: #ffffff;
  237. font-weight: bold;
  238. }
  239. #navigation ul li a {
  240. color: #000000;
  241. font-weight: bold;
  242. padding: 0;
  243. }
  244. #navigation ul li span {
  245. float: left;
  246. padding: 0 3px;
  247. }
  248. #navigation ul li a:hover span, #navigation ul li a:active span, #navigation ul li a:focus span {
  249. background-color: #006aeb;
  250. }
  251. /* Content */
  252. #content {
  253. clear: both;
  254. padding: 5px 15px;
  255. }
  256. .description pre {
  257. padding: .6em;
  258. background: #fcfcf7;
  259. }
  260. #content > .description {
  261. background: #ecede5;
  262. padding: 1px 8px;
  263. margin: 1.2em 0;
  264. }
  265. #content > .description pre {
  266. margin: .5em 0;
  267. }
  268. dl.tree {
  269. margin: 1.2em 0;
  270. }
  271. dl.tree dd {
  272. margin: 0;
  273. padding: 0;
  274. }
  275. .info {
  276. margin: 1.2em 0;
  277. }
  278. .summary {
  279. border: 1px solid #cccccc;
  280. border-collapse: collapse;
  281. font-size: 1em;
  282. width: 100%;
  283. margin: 1.2em 0 2.4em;
  284. }
  285. .summary caption {
  286. border-width: 1px 1px 0;
  287. }
  288. .summary caption.switchable {
  289. background: #ecede5 url('sort.png') no-repeat center right;
  290. cursor: pointer;
  291. }
  292. .summary td {
  293. border: 1px solid #cccccc;
  294. margin: 0;
  295. padding: 3px 10px;
  296. font-size: 1em;
  297. vertical-align: top;
  298. }
  299. .summary td:first-child {
  300. text-align: right;
  301. }
  302. .summary td hr {
  303. margin: 3px -10px;
  304. }
  305. #packages.summary td:first-child, #namespaces.summary td:first-child, .inherited.summary td:first-child, .used.summary td:first-child {
  306. text-align: left;
  307. }
  308. .summary tr:hover td {
  309. background: #f6f6f4;
  310. }
  311. .summary .description pre {
  312. border: .5em solid #ecede5;
  313. }
  314. .summary .description p {
  315. margin: 0;
  316. }
  317. .summary .description p + p, .summary .description ul {
  318. margin: 3px 0 0 0;
  319. }
  320. .summary .description.detailed h4 {
  321. margin-top: 3px;
  322. }
  323. .summary dl {
  324. margin: 0;
  325. }
  326. .summary dd {
  327. margin: 0 0 0 25px;
  328. }
  329. .name, .attributes {
  330. white-space: nowrap;
  331. }
  332. .value code {
  333. white-space: pre-wrap;
  334. }
  335. td.name, td.attributes {
  336. width: 1%;
  337. }
  338. td.attributes {
  339. width: 1%;
  340. }
  341. .class .methods .name, .class .properties .name, .class .constants .name {
  342. width: auto;
  343. white-space: normal;
  344. }
  345. .class .methods .name > div > code {
  346. white-space: pre-wrap;
  347. }
  348. .class .methods .name > div > code span, .function .value > code {
  349. white-space: nowrap;
  350. }
  351. .class .methods td.name > div, .class td.value > div {
  352. position: relative;
  353. padding-right: 1em;
  354. }
  355. .anchor {
  356. position: absolute;
  357. top: 0;
  358. right: 0;
  359. line-height: 1;
  360. font-size: 85%;
  361. margin: 0;
  362. color: #006aeb !important;
  363. }
  364. .list {
  365. margin: 0 0 5px 25px;
  366. }
  367. div.invalid {
  368. background-color: #fae4e0;
  369. padding: 10px;
  370. }
  371. /* Splitter */
  372. #splitter {
  373. position: fixed;
  374. height: 100%;
  375. width: 5px;
  376. left: 270px;
  377. background: #1e5eb6 url('resize.png') left center no-repeat;
  378. cursor: e-resize;
  379. }
  380. #splitter.active {
  381. opacity: .5;
  382. }
  383. /* Footer */
  384. #footer {
  385. border-top: 1px solid #e9eeef;
  386. clear: both;
  387. color: #a7a7a7;
  388. font-size: 8pt;
  389. text-align: center;
  390. padding: 20px 0 0;
  391. margin: 3em 0 0;
  392. height: 90px;
  393. background: #ffffff url('footer.png') no-repeat center top;
  394. }
  395. /* Tree */
  396. div.tree ul {
  397. list-style: none;
  398. background: url('tree-vertical.png') left repeat-y;
  399. padding: 0;
  400. margin-left: 20px;
  401. }
  402. div.tree li {
  403. margin: 0;
  404. padding: 0;
  405. }
  406. div.tree div {
  407. padding-left: 30px;
  408. }
  409. div.tree div.notlast {
  410. background: url('tree-hasnext.png') left 10px no-repeat;
  411. }
  412. div.tree div.last {
  413. background: url('tree-last.png') left -240px no-repeat;
  414. }
  415. div.tree li.last {
  416. background: url('tree-cleaner.png') left center repeat-y;
  417. }
  418. div.tree span.padding {
  419. padding-left: 15px;
  420. }
  421. /* Source code */
  422. .php-keyword1 {
  423. color: #e71818;
  424. font-weight: bold;
  425. }
  426. .php-keyword2 {
  427. font-weight: bold;
  428. }
  429. .php-var {
  430. color: #d59401;
  431. font-weight: bold;
  432. }
  433. .php-num {
  434. color: #cd0673;
  435. }
  436. .php-quote {
  437. color: #008000;
  438. }
  439. .php-comment {
  440. color: #929292;
  441. }
  442. .xlang {
  443. color: #ff0000;
  444. font-weight: bold;
  445. }
  446. span.l {
  447. display: block;
  448. }
  449. span.l.selected {
  450. background: #f6f6f4;
  451. }
  452. span.l a {
  453. color: #333333;
  454. }
  455. span.l a:hover, div.l a:active, div.l a:focus {
  456. background: transparent;
  457. color: #333333 !important;
  458. }
  459. span.l .php-var a {
  460. color: #d59401;
  461. }
  462. span.l .php-var a:hover, span.l .php-var a:active, span.l .php-var a:focus {
  463. color: #d59401 !important;
  464. }
  465. span.l a.l {
  466. padding-left: 2px;
  467. color: #c0c0c0;
  468. }
  469. span.l a.l:hover, span.l a.l:active, span.l a.l:focus {
  470. background: transparent;
  471. color: #c0c0c0 !important;
  472. }
  473. #rightInner.medium #navigation {
  474. height: 52px;
  475. }
  476. #rightInner.medium #navigation ul:first-child + ul {
  477. clear: left;
  478. border: none;
  479. padding: 0;
  480. }
  481. #rightInner.medium .name, #rightInner.medium .attributes {
  482. white-space: normal;
  483. }
  484. #rightInner.small #search {
  485. float: left;
  486. }
  487. #rightInner.small #navigation {
  488. height: 78px;
  489. }
  490. #rightInner.small #navigation ul:first-child {
  491. clear: both;
  492. }
  493. /* global style */
  494. .left, .summary td.left {
  495. text-align: left;
  496. }
  497. .right, .summary td.right {
  498. text-align: right;
  499. }