You are here

openlayers_ui.css in Openlayers 7.2

Same filename and directory in other branches
  1. 6.2 modules/openlayers_ui/openlayers_ui.css

OpenLayers Admin CSS

This file holds CSS for the openlayers ui module

File

modules/openlayers_ui/openlayers_ui.css
View source
  1. /**
  2. * @file
  3. * OpenLayers Admin CSS
  4. *
  5. * This file holds CSS for the openlayers ui module
  6. *
  7. * @ingroup openlayers
  8. */
  9. /**
  10. * Map Form
  11. */
  12. .openlayers-form-projection-description,
  13. .openlayers-form-layer-description {
  14. font-size: smaller;
  15. font-style: italic;
  16. }
  17. #openlayers-form-proj-msg {
  18. display: none;
  19. }
  20. span.openlayers-dependency-value {
  21. display: none;
  22. }
  23. span.openlayers-dependency-broken {
  24. font-size: smaller;
  25. display: none;
  26. color: red;
  27. }
  28. /**
  29. * Overriding for vertical tabs
  30. */
  31. div.vertical-tabs fieldset {
  32. border: 1px solid #CCCCCC;
  33. margin: 1em 0;
  34. padding: 2.5em 0 0;
  35. position: relative;
  36. }
  37. div.vertical-tabs .vertical-tabs-panes legend {
  38. display: block;
  39. }
  40. div.vertical-tabs .vertical-tabs-panes > fieldset {
  41. border: 0 none;
  42. margin: 0;
  43. padding: 0;
  44. }
  45. div.vertical-tabs .vertical-tabs-panes > fieldset > legend {
  46. display: none;
  47. }
  48. /**
  49. * Behaviors table
  50. */
  51. div.vertical-tabs table tbody tr fieldset {
  52. font-size: .85em;
  53. margin-left: 20px;
  54. margin-right: 20px;
  55. padding: 10px;
  56. background-color: #EEEEEE;
  57. position: inherit;
  58. }
  59. div.vertical-tabs table tbody tr.odd .form-item,
  60. div.vertical-tabs table tbody tr.even .form-item {
  61. white-space: normal;
  62. }
  63. /**
  64. * Style previews
  65. */
  66. .openlayers-ui-style-preview {
  67. width: 60px;
  68. height: 60px;
  69. background-color: #DDDDDD;
  70. border: 1px solid #222222;
  71. }
  72. #openlayers-ui-styles-form .openlayers-ui-style-preview {
  73. width: 200px;
  74. height: 200px;
  75. }
  76. #openlayers-ui-styles-form #edit-preview-style-container {
  77. float: right;
  78. width: 210px;
  79. margin: 0 0 10px 10px;
  80. }
  81. .openlayers-ui-style-preview .openlayers-ui-style-preview-top,
  82. .openlayers-ui-style-preview .openlayers-ui-style-preview-left {
  83. position: absolute;
  84. z-index: 999999;
  85. }
  86. .openlayers-ui-style-preview .openlayers-ui-style-preview-top {
  87. top: 0;
  88. right: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 50%;
  92. border-bottom: 1px solid rgb(33, 33, 33);
  93. border-bottom: 1px solid rgba(33, 33, 33, .2);
  94. }
  95. .openlayers-ui-style-preview .openlayers-ui-style-preview-left {
  96. top: 0;
  97. right: 0;
  98. left: 0;
  99. width: 50%;
  100. height: 100%;
  101. border-right: 1px solid rgb(33, 33, 33);
  102. border-right: 1px solid rgba(33, 33, 33, .2);
  103. }

Related topics