_gis.scss 528 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * GIS data editor styles
  3. */
  4. a.close_gis_editor {
  5. float: right;
  6. }
  7. #gis_editor {
  8. display: none;
  9. position: fixed;
  10. width: 100%;
  11. height: 100%;
  12. top: 0;
  13. left: 0;
  14. padding: 40px;
  15. z-index: 1001;
  16. overflow-y: auto;
  17. overflow-x: hidden;
  18. }
  19. #gis_data {
  20. min-height: 230px;
  21. }
  22. #gis_data_textarea {
  23. height: 6em;
  24. resize: vertical;
  25. width: 100%;
  26. }
  27. #gis_data_editor {
  28. background: #d0dce0;
  29. padding: 15px;
  30. min-height: 500px;
  31. .choice {
  32. display: none;
  33. }
  34. input[type="text"] {
  35. width: 75px;
  36. }
  37. }