gis.css.php 966 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
  11. exit();
  12. }
  13. ?>
  14. .gis_table td {
  15. vertical-align: middle;
  16. }
  17. .gis_table select {
  18. min-width: 151px;
  19. margin: 6px;
  20. }
  21. .gis_table .button {
  22. text-align: <?php echo $right; ?>;
  23. }
  24. /**
  25. * GIS data editor styles
  26. */
  27. a.close_gis_editor {
  28. float: <?php echo $right; ?>;
  29. }
  30. #gis_editor {
  31. display: none;
  32. position: fixed;
  33. _position: absolute; /* hack for IE */
  34. z-index: 1001;
  35. overflow-y: auto;
  36. overflow-x: hidden;
  37. }
  38. #gis_data {
  39. min-height: 230px;
  40. }
  41. #gis_data_textarea {
  42. height: 6em;
  43. }
  44. #gis_data_editor {
  45. background: #D0DCE0;
  46. padding: 15px;
  47. min-height: 500px;
  48. }
  49. #gis_data_editor .choice {
  50. display: none;
  51. }
  52. #gis_data_editor input[type="text"] {
  53. width: 75px;
  54. }