gis.css.php 787 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * GIS styles for the pmahomme theme
  5. *
  6. * @package PhpMyAdmin-theme
  7. * @subpackage PMAHomme
  8. */
  9. // unplanned execution path
  10. if (! defined('PHPMYADMIN') && ! defined('TESTSUITE')) {
  11. exit();
  12. }
  13. ?>
  14. /**
  15. * GIS data editor styles
  16. */
  17. a.close_gis_editor {
  18. float: <?php echo $right; ?>;
  19. }
  20. #gis_editor {
  21. display: none;
  22. position: fixed;
  23. _position: absolute; /* hack for IE */
  24. z-index: 1001;
  25. overflow-y: auto;
  26. overflow-x: hidden;
  27. }
  28. #gis_data {
  29. min-height: 230px;
  30. }
  31. #gis_data_textarea {
  32. height: 6em;
  33. }
  34. #gis_data_editor {
  35. background: #D0DCE0;
  36. padding: 15px;
  37. min-height: 500px;
  38. }
  39. #gis_data_editor .choice {
  40. display: none;
  41. }
  42. #gis_data_editor input[type="text"] {
  43. width: 75px;
  44. }