cake.generic.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739
  1. @charset "utf-8";
  2. /**
  3. *
  4. * Generic CSS for CakePHP
  5. *
  6. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  7. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  8. *
  9. * Licensed under The MIT License
  10. * Redistributions of files must retain the above copyright notice.
  11. *
  12. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  13. * @link http://cakephp.org CakePHP(tm) Project
  14. * @package app.webroot.css
  15. * @since CakePHP(tm)
  16. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  17. */
  18. * {
  19. margin:0;
  20. padding:0;
  21. }
  22. /** General Style Info **/
  23. body {
  24. background: #003d4c;
  25. color: #fff;
  26. font-family:'lucida grande',verdana,helvetica,arial,sans-serif;
  27. font-size:90%;
  28. margin: 0;
  29. }
  30. a {
  31. color: #003d4c;
  32. text-decoration: underline;
  33. font-weight: bold;
  34. }
  35. a:hover {
  36. color: #367889;
  37. text-decoration:none;
  38. }
  39. a img {
  40. border:none;
  41. }
  42. h1, h2, h3, h4 {
  43. font-weight: normal;
  44. margin-bottom:0.5em;
  45. }
  46. h1 {
  47. background:#fff;
  48. color: #003d4c;
  49. font-size: 100%;
  50. }
  51. h2 {
  52. background:#fff;
  53. color: #e32;
  54. font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
  55. font-size: 190%;
  56. }
  57. h3 {
  58. color: #2c6877;
  59. font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
  60. font-size: 165%;
  61. }
  62. h4 {
  63. color: #993;
  64. font-weight: normal;
  65. }
  66. ul, li {
  67. margin: 0 12px;
  68. }
  69. p {
  70. margin: 0 0 1em 0;
  71. }
  72. /** Layout **/
  73. #container {
  74. text-align: left;
  75. }
  76. #header{
  77. padding: 10px 20px;
  78. }
  79. #header h1 {
  80. line-height:20px;
  81. background: #003d4c url('../img/cake.icon.png') no-repeat left;
  82. color: #fff;
  83. padding: 0px 30px;
  84. }
  85. #header h1 a {
  86. color: #fff;
  87. background: #003d4c;
  88. font-weight: normal;
  89. text-decoration: none;
  90. }
  91. #header h1 a:hover {
  92. color: #fff;
  93. background: #003d4c;
  94. text-decoration: underline;
  95. }
  96. #content{
  97. background: #fff;
  98. clear: both;
  99. color: #333;
  100. padding: 10px 20px 40px 20px;
  101. overflow: auto;
  102. }
  103. #footer {
  104. clear: both;
  105. padding: 6px 10px;
  106. text-align: right;
  107. }
  108. /** containers **/
  109. div.form,
  110. div.index,
  111. div.view {
  112. float:right;
  113. width:76%;
  114. border-left:1px solid #666;
  115. padding:10px 2%;
  116. }
  117. div.actions {
  118. float:left;
  119. width:16%;
  120. padding:10px 1.5%;
  121. }
  122. div.actions h3 {
  123. padding-top:0;
  124. color:#777;
  125. }
  126. /** Tables **/
  127. table {
  128. border-right:0;
  129. clear: both;
  130. color: #333;
  131. margin-bottom: 10px;
  132. width: 100%;
  133. }
  134. th {
  135. border:0;
  136. border-bottom:2px solid #555;
  137. text-align: left;
  138. padding:4px;
  139. }
  140. th a {
  141. display: block;
  142. padding: 2px 4px;
  143. text-decoration: none;
  144. }
  145. th a.asc:after {
  146. content: ' ⇣';
  147. }
  148. th a.desc:after {
  149. content: ' ⇡';
  150. }
  151. table tr td {
  152. padding: 6px;
  153. text-align: left;
  154. vertical-align: top;
  155. border-bottom:1px solid #ddd;
  156. }
  157. table tr:nth-child(even) {
  158. background: #f9f9f9;
  159. }
  160. td.actions {
  161. text-align: center;
  162. white-space: nowrap;
  163. }
  164. table td.actions a {
  165. margin: 0px 6px;
  166. padding:2px 5px;
  167. }
  168. /* SQL log */
  169. .cake-sql-log {
  170. background: #fff;
  171. }
  172. .cake-sql-log td {
  173. padding: 4px 8px;
  174. text-align: left;
  175. font-family: Monaco, Consolas, "Courier New", monospaced;
  176. }
  177. .cake-sql-log caption {
  178. color:#fff;
  179. }
  180. /** Paging **/
  181. .paging {
  182. background:#fff;
  183. color: #ccc;
  184. margin-top: 1em;
  185. clear:both;
  186. }
  187. .paging .current,
  188. .paging .disabled,
  189. .paging a {
  190. text-decoration: none;
  191. padding: 5px 8px;
  192. display: inline-block
  193. }
  194. .paging > span {
  195. display: inline-block;
  196. border: 1px solid #ccc;
  197. border-left: 0;
  198. }
  199. .paging > span:hover {
  200. background: #efefef;
  201. }
  202. .paging .prev {
  203. border-left: 1px solid #ccc;
  204. -moz-border-radius: 4px 0 0 4px;
  205. -webkit-border-radius: 4px 0 0 4px;
  206. border-radius: 4px 0 0 4px;
  207. }
  208. .paging .next {
  209. -moz-border-radius: 0 4px 4px 0;
  210. -webkit-border-radius: 0 4px 4px 0;
  211. border-radius: 0 4px 4px 0;
  212. }
  213. .paging .disabled {
  214. color: #ddd;
  215. }
  216. .paging .disabled:hover {
  217. background: transparent;
  218. }
  219. .paging .current {
  220. background: #efefef;
  221. color: #c73e14;
  222. }
  223. /** Scaffold View **/
  224. dl {
  225. line-height: 2em;
  226. margin: 0em 0em;
  227. width: 60%;
  228. }
  229. dl dd:nth-child(4n+2),
  230. dl dt:nth-child(4n+1) {
  231. background: #f4f4f4;
  232. }
  233. dt {
  234. font-weight: bold;
  235. padding-left: 4px;
  236. vertical-align: top;
  237. width: 10em;
  238. }
  239. dd {
  240. margin-left: 10em;
  241. margin-top: -2em;
  242. vertical-align: top;
  243. }
  244. /** Forms **/
  245. form {
  246. clear: both;
  247. margin-right: 20px;
  248. padding: 0;
  249. width: 95%;
  250. }
  251. fieldset {
  252. border: none;
  253. margin-bottom: 1em;
  254. padding: 16px 10px;
  255. }
  256. fieldset legend {
  257. color: #e32;
  258. font-size: 160%;
  259. font-weight: bold;
  260. }
  261. fieldset fieldset {
  262. margin-top: 0;
  263. padding: 10px 0 0;
  264. }
  265. fieldset fieldset legend {
  266. font-size: 120%;
  267. font-weight: normal;
  268. }
  269. fieldset fieldset div {
  270. clear: left;
  271. margin: 0 20px;
  272. }
  273. form div {
  274. clear: both;
  275. margin-bottom: 1em;
  276. padding: .5em;
  277. vertical-align: text-top;
  278. }
  279. form .input {
  280. color: #444;
  281. }
  282. form .required {
  283. font-weight: bold;
  284. }
  285. form .required label:after {
  286. color: #e32;
  287. content: '*';
  288. display:inline;
  289. }
  290. form div.submit {
  291. border: 0;
  292. clear: both;
  293. margin-top: 10px;
  294. }
  295. label {
  296. display: block;
  297. font-size: 110%;
  298. margin-bottom:3px;
  299. }
  300. input, textarea {
  301. clear: both;
  302. font-size: 140%;
  303. font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
  304. padding: 1%;
  305. width:98%;
  306. }
  307. select {
  308. clear: both;
  309. font-size: 120%;
  310. vertical-align: text-bottom;
  311. }
  312. select[multiple=multiple] {
  313. width: 100%;
  314. }
  315. option {
  316. font-size: 120%;
  317. padding: 0 3px;
  318. }
  319. input[type=checkbox] {
  320. clear: left;
  321. float: left;
  322. margin: 0px 6px 7px 2px;
  323. width: auto;
  324. }
  325. div.checkbox label {
  326. display: inline;
  327. }
  328. input[type=radio] {
  329. float:left;
  330. width:auto;
  331. margin: 6px 0;
  332. padding: 0;
  333. line-height: 26px;
  334. }
  335. .radio label {
  336. margin: 0 0 6px 20px;
  337. line-height: 26px;
  338. }
  339. input[type=submit] {
  340. display: inline;
  341. font-size: 110%;
  342. width: auto;
  343. }
  344. form .submit input[type=submit] {
  345. background:#62af56;
  346. background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  347. background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
  348. background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  349. border-color: #2d6324;
  350. color: #fff;
  351. text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
  352. padding: 8px 10px;
  353. }
  354. form .submit input[type=submit]:hover {
  355. background: #5BA150;
  356. }
  357. /* Form errors */
  358. form .error {
  359. background: #FFDACC;
  360. -moz-border-radius: 4px;
  361. -webkit-border-radius: 4px;
  362. border-radius: 4px;
  363. font-weight: normal;
  364. }
  365. form .error-message {
  366. -moz-border-radius: none;
  367. -webkit-border-radius: none;
  368. border-radius: none;
  369. border: none;
  370. background: none;
  371. margin: 0;
  372. padding-left: 4px;
  373. padding-right: 0;
  374. }
  375. form .error,
  376. form .error-message {
  377. color: #9E2424;
  378. -webkit-box-shadow: none;
  379. -moz-box-shadow: none;
  380. -ms-box-shadow: none;
  381. -o-box-shadow: none;
  382. box-shadow: none;
  383. text-shadow: none;
  384. }
  385. /** Notices and Errors **/
  386. .message {
  387. clear: both;
  388. color: #fff;
  389. font-size: 140%;
  390. font-weight: bold;
  391. margin: 0 0 1em 0;
  392. padding: 5px;
  393. }
  394. .success,
  395. .message,
  396. .cake-error,
  397. .cake-debug,
  398. .notice,
  399. p.error,
  400. .error-message {
  401. background: #ffcc00;
  402. background-repeat: repeat-x;
  403. background-image: -moz-linear-gradient(top, #ffcc00, #E6B800);
  404. background-image: -ms-linear-gradient(top, #ffcc00, #E6B800);
  405. background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#E6B800));
  406. background-image: -webkit-linear-gradient(top, #ffcc00, #E6B800);
  407. background-image: -o-linear-gradient(top, #ffcc00, #E6B800);
  408. background-image: linear-gradient(top, #ffcc00, #E6B800);
  409. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  410. border: 1px solid rgba(0, 0, 0, 0.2);
  411. margin-bottom: 18px;
  412. padding: 7px 14px;
  413. color: #404040;
  414. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  415. -webkit-border-radius: 4px;
  416. -moz-border-radius: 4px;
  417. border-radius: 4px;
  418. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  419. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  420. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  421. }
  422. .success,
  423. .message,
  424. .cake-error,
  425. p.error,
  426. .error-message {
  427. clear: both;
  428. color: #fff;
  429. background: #c43c35;
  430. border: 1px solid rgba(0, 0, 0, 0.5);
  431. background-repeat: repeat-x;
  432. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  433. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  434. background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  435. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  436. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  437. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  438. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  439. }
  440. .success {
  441. clear: both;
  442. color: #fff;
  443. border: 1px solid rgba(0, 0, 0, 0.5);
  444. background: #3B8230;
  445. background-repeat: repeat-x;
  446. background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  447. background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
  448. background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  449. background-image: -ms-linear-gradient(top, #76BF6B, #3B8230);
  450. background-image: -o-linear-gradient(top, #76BF6B, #3B8230);
  451. background-image: linear-gradient(top, #76BF6B, #3B8230);
  452. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  453. }
  454. p.error {
  455. font-family: Monaco, Consolas, Courier, monospace;
  456. font-size: 120%;
  457. padding: 0.8em;
  458. margin: 1em 0;
  459. }
  460. p.error em {
  461. font-weight: normal;
  462. line-height: 140%;
  463. }
  464. .notice {
  465. color: #000;
  466. display: block;
  467. font-size: 120%;
  468. padding: 0.8em;
  469. margin: 1em 0;
  470. }
  471. .success {
  472. color: #fff;
  473. }
  474. /** Actions **/
  475. .actions ul {
  476. margin: 0;
  477. padding: 0;
  478. }
  479. .actions li {
  480. margin:0 0 0.5em 0;
  481. list-style-type: none;
  482. white-space: nowrap;
  483. padding: 0;
  484. }
  485. .actions ul li a {
  486. font-weight: normal;
  487. display: block;
  488. clear: both;
  489. }
  490. /* Buttons and button links */
  491. input[type=submit],
  492. .actions ul li a,
  493. .actions a {
  494. font-weight:normal;
  495. padding: 4px 8px;
  496. background: #dcdcdc;
  497. background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  498. background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  499. background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  500. background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  501. background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  502. background-image: linear-gradient(top, #fefefe, #dcdcdc);
  503. color:#333;
  504. border:1px solid #bbb;
  505. -webkit-border-radius: 4px;
  506. -moz-border-radius: 4px;
  507. border-radius: 4px;
  508. text-decoration: none;
  509. text-shadow: #fff 0px 1px 0px;
  510. min-width: 0;
  511. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  512. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  513. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  514. -webkit-user-select: none;
  515. user-select: none;
  516. }
  517. .actions ul li a:hover,
  518. .actions a:hover {
  519. background: #ededed;
  520. border-color: #acacac;
  521. text-decoration: none;
  522. }
  523. input[type=submit]:active,
  524. .actions ul li a:active,
  525. .actions a:active {
  526. background: #eee;
  527. background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#eee));
  528. background-image: -webkit-linear-gradient(top, #dfdfdf, #eee);
  529. background-image: -moz-linear-gradient(top, #dfdfdf, #eee);
  530. background-image: -ms-linear-gradient(top, #dfdfdf, #eee);
  531. background-image: -o-linear-gradient(top, #dfdfdf, #eee);
  532. background-image: linear-gradient(top, #dfdfdf, #eee);
  533. text-shadow: #eee 0px 1px 0px;
  534. -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  535. -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  536. box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  537. border-color: #aaa;
  538. text-decoration: none;
  539. }
  540. /** Related **/
  541. .related {
  542. clear: both;
  543. display: block;
  544. }
  545. /** Debugging **/
  546. pre {
  547. color: #000;
  548. background: #f0f0f0;
  549. padding: 15px;
  550. -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  551. -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  552. box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  553. }
  554. .cake-debug-output {
  555. padding: 0;
  556. position: relative;
  557. }
  558. .cake-debug-output > span {
  559. position: absolute;
  560. top: 5px;
  561. right: 5px;
  562. background: rgba(255, 255, 255, 0.3);
  563. -moz-border-radius: 4px;
  564. -webkit-border-radius: 4px;
  565. border-radius: 4px;
  566. padding: 5px 6px;
  567. color: #000;
  568. display: block;
  569. float: left;
  570. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  571. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  572. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  573. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  574. }
  575. .cake-debug,
  576. .cake-error {
  577. font-size: 16px;
  578. line-height: 20px;
  579. clear: both;
  580. }
  581. .cake-error > a {
  582. text-shadow: none;
  583. }
  584. .cake-error {
  585. white-space: normal;
  586. }
  587. .cake-stack-trace {
  588. background: rgba(255, 255, 255, 0.7);
  589. color: #333;
  590. margin: 10px 0 5px 0;
  591. padding: 10px 10px 0 10px;
  592. font-size: 120%;
  593. line-height: 140%;
  594. overflow: auto;
  595. position: relative;
  596. -moz-border-radius: 4px;
  597. -webkit-border-radius: 4px;
  598. border-radius: 4px;
  599. }
  600. .cake-stack-trace a {
  601. text-shadow: none;
  602. background: rgba(255, 255, 255, 0.7);
  603. padding: 5px;
  604. -moz-border-radius: 10px;
  605. -webkit-border-radius: 10px;
  606. border-radius: 10px;
  607. margin: 0px 4px 10px 2px;
  608. font-family: sans-serif;
  609. font-size: 14px;
  610. line-height: 14px;
  611. display: inline-block;
  612. text-decoration: none;
  613. -moz-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  614. -webkit-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  615. box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  616. }
  617. .cake-code-dump pre {
  618. position: relative;
  619. overflow: auto;
  620. }
  621. .cake-context {
  622. margin-bottom: 10px;
  623. }
  624. .cake-stack-trace pre {
  625. color: #000;
  626. background-color: #F0F0F0;
  627. margin: 0px 0 10px 0;
  628. padding: 1em;
  629. overflow: auto;
  630. text-shadow: none;
  631. }
  632. .cake-stack-trace li {
  633. padding: 10px 5px 0px;
  634. margin: 0 0 4px 0;
  635. font-family: monospace;
  636. border: 1px solid #bbb;
  637. -moz-border-radius: 4px;
  638. -wekbkit-border-radius: 4px;
  639. border-radius: 4px;
  640. background: #dcdcdc;
  641. background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  642. background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  643. background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  644. background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  645. background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  646. background-image: linear-gradient(top, #fefefe, #dcdcdc);
  647. }
  648. /* excerpt */
  649. .cake-code-dump pre,
  650. .cake-code-dump pre code {
  651. clear: both;
  652. font-size: 12px;
  653. line-height: 15px;
  654. margin: 4px 2px;
  655. padding: 4px;
  656. overflow: auto;
  657. }
  658. .cake-code-dump .code-highlight {
  659. display: block;
  660. background-color: rgba(255, 255, 0, 0.5);
  661. }
  662. .code-coverage-results div.code-line {
  663. padding-left:5px;
  664. display:block;
  665. margin-left:10px;
  666. }
  667. .code-coverage-results div.uncovered span.content {
  668. background:#ecc;
  669. }
  670. .code-coverage-results div.covered span.content {
  671. background:#cec;
  672. }
  673. .code-coverage-results div.ignored span.content {
  674. color:#aaa;
  675. }
  676. .code-coverage-results span.line-num {
  677. color:#666;
  678. display:block;
  679. float:left;
  680. width:20px;
  681. text-align:right;
  682. margin-right:5px;
  683. }
  684. .code-coverage-results span.line-num strong {
  685. color:#666;
  686. }
  687. .code-coverage-results div.start {
  688. border:1px solid #aaa;
  689. border-width:1px 1px 0px 1px;
  690. margin-top:30px;
  691. padding-top:5px;
  692. }
  693. .code-coverage-results div.end {
  694. border:1px solid #aaa;
  695. border-width:0px 1px 1px 1px;
  696. margin-bottom:30px;
  697. padding-bottom:5px;
  698. }
  699. .code-coverage-results div.realstart {
  700. margin-top:0px;
  701. }
  702. .code-coverage-results p.note {
  703. color:#bbb;
  704. padding:5px;
  705. margin:5px 0 10px;
  706. font-size:10px;
  707. }
  708. .code-coverage-results span.result-bad {
  709. color: #a00;
  710. }
  711. .code-coverage-results span.result-ok {
  712. color: #fa0;
  713. }
  714. .code-coverage-results span.result-good {
  715. color: #0a0;
  716. }
  717. /** Elements **/
  718. #url-rewriting-warning {
  719. display:none;
  720. }