[Commits] r1063 - in apps/opengeo/geoexplorer/branches/0.1.x: . build lib/GeoExplorer theme theme/app

commits at geoext.org commits at geoext.org
Fri Jun 12 18:59:47 CEST 2009


Author: tschaub
Date: 2009-06-12 18:59:47 +0200 (Fri, 12 Jun 2009)
New Revision: 1063

Added:
   apps/opengeo/geoexplorer/branches/0.1.x/readme-dev.txt
   apps/opengeo/geoexplorer/branches/0.1.x/theme/app/
   apps/opengeo/geoexplorer/branches/0.1.x/theme/app/about.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/app/geoexplorer.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/app/ie.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/app/img/
Removed:
   apps/opengeo/geoexplorer/branches/0.1.x/README.TXT
   apps/opengeo/geoexplorer/branches/0.1.x/build/about.html
   apps/opengeo/geoexplorer/branches/0.1.x/theme/about.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/geoexplorer.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/ie.css
   apps/opengeo/geoexplorer/branches/0.1.x/theme/img/
Modified:
   apps/opengeo/geoexplorer/branches/0.1.x/about.html
   apps/opengeo/geoexplorer/branches/0.1.x/build/Makefile
   apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js
Log:
Theme shuffle.

Deleted: apps/opengeo/geoexplorer/branches/0.1.x/README.TXT
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/README.TXT	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/README.TXT	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,74 +0,0 @@
-=================================
-Running and deploying GeoExplorer
-=================================
-
-These instructions describe how to deploy GeoExplorer assuming you have a copy
-of the application source code from subversion.
-
-Getting a copy of the application
----------------------------------
-
-To get a copy of the application source code, use subversion::
-
-    you at prompt:~$ svn export http://svn.geoext.org/apps/opengeo/geoexplorer/branches/0.1.x/ geoexplorer
-
-
-Running in development mode
----------------------------
-
-Your copy of the application contains a debug.html file that loads the
-application for debugging/development.  This file is not suitable for running
-the application in production.  To view the application, open the debug.html
-page in a browser (e.g. http://localhost/path/to/geoexplorer/debug.html).
-
-Note that the inital configuration for the application works off of a remote
-WMS and requires that you have a proxy set up locally.  See the debug.html
-source for detail on configuration with a local WMS.
-
-
-Connecting GeoExplorer to a local GeoServer
--------------------------------------------
-
-The easiest way to run GeoExplorer is to place it in the www folder of a
-GeoServer data dir.
-
-1. Copy the geoexplorer root directory to $GEOSERVER_DATA_DIR/www/
-
-2. Modify the "ows" configuration value in geoexplorer/debug.html to reflect the
-path to your GeoServer WMS endpoint (usually "/geoserver/wms").
-
-3. Open the debug.html page in a browser (e.g.
-http://localhost:8080/geoserver/www/geoexplorer/debug.html)
-
-
-Preparing the application for deployment
-----------------------------------------
-
-Running GeoExplorer as described above is not suitable for production because
-JavaScript files will be loaded dynamically.  Before moving your application
-to a production environment, follow the steps below.
-
-1. Copy any changes to the app configuration you made in debug.html into the
-geoexplorer/build/index.html file.  Just copy the changes to the JavaScript -
-do not copy the entire contents of debug.html to index.html.
-
-2. If you have not already set up JSTools, do so following the instructions
-you find on the JSTools project page: http://pypi.python.org/pypi/JSTools
-
-3. Use the Makefile in the build directory to create a standalone copy of the
-application.
-
-For example, to create a directory that can be moved to your production
-environment, do the following::
-
-    you at prompt:~$ cd geoexplorer/build
-    you at prompt:~/geoexplorer/build$ make app
-
-Move the GeoExplorer directory (from the build directory) to your production
-environment.
-
-If you want to create a zip archive of the application, instead run the
-following:::
-
-    you at prompt:~/geoexplorer/build$ make zip
-

Modified: apps/opengeo/geoexplorer/branches/0.1.x/about.html
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/about.html	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/about.html	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,7 +1,8 @@
 <html>
     <head>
         <title>About GeoExplorer</title>
-        <link rel="stylesheet" type="text/css" href="theme/about.css"/>    </head>
+        <link rel="stylesheet" type="text/css" href="theme/app/about.css"/>
+    </head>
     <body>
     <div class="logo"></div>
     <h2> GeoExplorer </h2>

Modified: apps/opengeo/geoexplorer/branches/0.1.x/build/Makefile
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/build/Makefile	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/build/Makefile	2009-06-12 16:59:47 UTC (rev 1063)
@@ -26,12 +26,12 @@
 	
 	jsbuild build.cfg -v -o $(APP_NAME)/script/
 	
-	svn export --force ../theme $(APP_NAME)/theme/app
+	svn export --force ../theme/app $(APP_NAME)/theme/app
 	svn export --force ../externals/openlayers/theme/default/ $(APP_NAME)/theme/ol
 	svn export --force ../externals/geoext/resources $(APP_NAME)/theme/gx
 	
 	cp index.html $(APP_NAME)
-	cp about.html $(APP_NAME)
+	cp ../about.html $(APP_NAME)
 	cp ../license.txt $(APP_NAME)
 	cp readme.txt $(APP_NAME)
 

Deleted: apps/opengeo/geoexplorer/branches/0.1.x/build/about.html
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/build/about.html	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/build/about.html	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,36 +0,0 @@
-<html>
-    <head>
-        <title>About GeoExplorer</title>
-        <link rel="stylesheet" type="text/css" href="theme/app/about.css"/>
-    </head>
-    <body>
-    <div class="logo"></div>
-    <h2> GeoExplorer </h2>
-    <div class="versioninfo">Version 0.1</div>
-    <h3> Engineering & Design by OpenGeo </h3>
-    <a href="http://opengeo.org/">http://opengeo.org/</a>
-    &copy; 2009, OpenGeo under the BSD license.
-
-    <h3> GeoExt Framework </h3>
-    <a href="http://geoext.org/">http://geoext.org/</a>
-    &copy; 2009, OSGeo under the BSD license.
-
-    <h3> GeoSilk Icons </h3>
-    <a href="http://projects.opengeo.org/geosilk/">http://projects.opengeo.org/geosilk/</a>
-    &copy; 2009, OpenGeo under CC-BY 3.0.
-
-    <h3> Silk Icons </h3>
-    <a href="http://famfamfam.com/lab/icons/silk/">http://famfamfam.com/lab/icons/silk/</a>
-    &copy; Mark James under CC-BY 3.0.
-
-    <h3> Contributors </h3>
-    <ul>
-    <li>Tim Schaub</li>
-    <li>David Winslow</li>
-    <li>Sebastian Benthall</li>
-    <li>Andreas Hocevar</li>
-    <li>Tim Coulter</li>
-    <li>Rolando Pe&ntilde;ate</li>
-    </ul>
-    </body>
-</html>

Modified: apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,4 +1,8 @@
 /**
+ * Copyright (c) 2009 The Open Planning Project
+ */
+
+/**
  * @requires GeoExplorer.js
  */
 

Copied: apps/opengeo/geoexplorer/branches/0.1.x/readme-dev.txt (from rev 1062, apps/opengeo/geoexplorer/branches/0.1.x/README.TXT)
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/readme-dev.txt	                        (rev 0)
+++ apps/opengeo/geoexplorer/branches/0.1.x/readme-dev.txt	2009-06-12 16:59:47 UTC (rev 1063)
@@ -0,0 +1,74 @@
+=================================
+Running and deploying GeoExplorer
+=================================
+
+These instructions describe how to deploy GeoExplorer assuming you have a copy
+of the application source code from subversion.
+
+Getting a copy of the application
+---------------------------------
+
+To get a copy of the application source code, use subversion::
+
+    you at prompt:~$ svn export http://svn.geoext.org/apps/opengeo/geoexplorer/branches/0.1.x/ geoexplorer
+
+
+Running in development mode
+---------------------------
+
+Your copy of the application contains a debug.html file that loads the
+application for debugging/development.  This file is not suitable for running
+the application in production.  To view the application, open the debug.html
+page in a browser (e.g. http://localhost/path/to/geoexplorer/debug.html).
+
+Note that the inital configuration for the application works off of a remote
+WMS and requires that you have a proxy set up locally.  See the debug.html
+source for detail on configuration with a local WMS.
+
+
+Connecting GeoExplorer to a local GeoServer
+-------------------------------------------
+
+The easiest way to run GeoExplorer is to place it in the www folder of a
+GeoServer data dir.
+
+1. Copy the geoexplorer root directory to $GEOSERVER_DATA_DIR/www/
+
+2. Modify the "ows" configuration value in geoexplorer/debug.html to reflect the
+path to your GeoServer WMS endpoint (usually "/geoserver/wms").
+
+3. Open the debug.html page in a browser (e.g.
+http://localhost:8080/geoserver/www/geoexplorer/debug.html)
+
+
+Preparing the application for deployment
+----------------------------------------
+
+Running GeoExplorer as described above is not suitable for production because
+JavaScript files will be loaded dynamically.  Before moving your application
+to a production environment, follow the steps below.
+
+1. Copy any changes to the app configuration you made in debug.html into the
+geoexplorer/build/index.html file.  Just copy the changes to the JavaScript -
+do not copy the entire contents of debug.html to index.html.
+
+2. If you have not already set up JSTools, do so following the instructions
+you find on the JSTools project page: http://pypi.python.org/pypi/JSTools
+
+3. Use the Makefile in the build directory to create a standalone copy of the
+application.
+
+For example, to create a directory that can be moved to your production
+environment, do the following::
+
+    you at prompt:~$ cd geoexplorer/build
+    you at prompt:~/geoexplorer/build$ make app
+
+Move the GeoExplorer directory (from the build directory) to your production
+environment.
+
+If you want to create a zip archive of the application, instead run the
+following:::
+
+    you at prompt:~/geoexplorer/build$ make zip
+

Deleted: apps/opengeo/geoexplorer/branches/0.1.x/theme/about.css
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/about.css	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/about.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,35 +0,0 @@
-body {
-    font-family: tahoma,arial,helvetica,sans-serif;
-    font-size: 10px;
-    background-color: white;
-}
-
-h2 {
-    text-align: center;
-    font-weight: bold;
-    font-size: 12px;
-}
-
-div.versioninfo {
-    text-align: center;
-}
-
-div.logo {
-    margin-left: auto;
-    margin-right: auto;
-    width: 100%;
-    text-align: center;
-    height: 70px;
-    background: url('img/GeoExt_Logo.png') center no-repeat;
-}
-
-h3 {
-    font-weight: bold;
-    margin-bottom: 0em;
-    font-size: 12px;
-}
-
-a {
-    display: block;
-}
-

Copied: apps/opengeo/geoexplorer/branches/0.1.x/theme/app/about.css (from rev 1062, apps/opengeo/geoexplorer/branches/0.1.x/theme/about.css)
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/app/about.css	                        (rev 0)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/app/about.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -0,0 +1,35 @@
+body {
+    font-family: tahoma,arial,helvetica,sans-serif;
+    font-size: 10px;
+    background-color: white;
+}
+
+h2 {
+    text-align: center;
+    font-weight: bold;
+    font-size: 12px;
+}
+
+div.versioninfo {
+    text-align: center;
+}
+
+div.logo {
+    margin-left: auto;
+    margin-right: auto;
+    width: 100%;
+    text-align: center;
+    height: 70px;
+    background: url('img/GeoExt_Logo.png') center no-repeat;
+}
+
+h3 {
+    font-weight: bold;
+    margin-bottom: 0em;
+    font-size: 12px;
+}
+
+a {
+    display: block;
+}
+

Copied: apps/opengeo/geoexplorer/branches/0.1.x/theme/app/geoexplorer.css (from rev 1062, apps/opengeo/geoexplorer/branches/0.1.x/theme/geoexplorer.css)
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/app/geoexplorer.css	                        (rev 0)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/app/geoexplorer.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -0,0 +1,166 @@
+/* don't wrap lines on any tooltips */
+.x-tip {
+    white-space: nowrap;
+}
+
+/* get images on buttons with text to line up with those with no text */
+.x-btn-text-icon .x-btn-center .x-btn-text {
+    background-position: 0 3px;
+}
+
+/* apply some margin when using the row expander */
+.x-grid3-row-body p {
+    margin: 5px !important;
+}
+
+/* workaround for semi-alpha pixels in IE7: background needs to be the same
+ * as the toolbar's background color */
+.ext-ie .x-item-disabled .x-btn-text {
+    background-color: #EAEAEA;
+}
+
+.x-btn .icon-geoexplorer {
+    background-image: url(img/geoexplorer.png);
+}
+
+.x-btn .icon-addlayers {
+    background-image: url(img/silk/add.png);
+}
+
+.x-btn .icon-removelayers {
+    background-image: url(img/silk/delete.png);
+}
+
+.x-btn .icon-getfeatureinfo {
+    background-image: url(img/silk/information.png);
+}
+
+.x-btn .icon-save {
+    background-image: url(img/geosilk/map_save.png);
+}
+
+.x-btn .icon-measure {
+    background-image: url(img/geosilk/measure.png);
+}
+
+.icon-measure-length {
+    background-image: url(img/geosilk/ruler.png) !important;
+}
+
+.icon-measure-area {
+   background-image: url(img/geosilk/ruler_square.png) !important;
+}
+
+.x-btn .icon-zoom-in { 
+    background-image: url(img/silk/magnifier_zoom_in.png);
+}
+
+.x-btn .icon-zoom-out { 
+    background-image: url(img/silk/magnifier_zoom_out.png);
+}
+
+.x-btn .icon-zoom-previous { 
+    background-image: url(img/silk/arrow_left.png);
+}
+
+.x-btn .icon-zoom-next { 
+    background-image: url(img/silk/arrow_right.png);
+}
+
+.x-btn .icon-zoom-visible { 
+    background-image: url(img/silk/arrow_out.png);
+}
+
+.x-btn .icon-pan { 
+    background-image: url(img/geosilk/pan.png);
+}
+
+.legend-item {
+    margin: 0.5em 10px;
+}
+
+div.map-overlay {
+    z-index: 1000; 
+    position: absolute; 
+    right: 10px; 
+    bottom: 10px;
+}
+
+div.map-overlay div.overlay-element {
+    display:inline;
+    float: left;
+    margin: 5px;
+}
+
+.overlay-scaleline {
+    bottom: 0px;
+    left: 0px;
+    margin-top: 0px;
+}
+
+/* Pan- and Zoom- Panel Styles*/
+
+.olControlPanPanel div {
+    background-image:url(http://extjs.cachefly.net/ext-2.2.1/resources/images/gray/panel/tool-sprites.gif);
+    height:15px;
+    width:15px;
+    /* workaround for button height in IE */
+    font-size:0px;
+}
+
+.olControlPanPanel .olControlPanNorthItemInactive {
+    background-position:15px -60px;
+    left:16px
+}
+.olControlPanPanel .olControlPanEastItemInactive {
+    background-position:15px -120px;
+    left: 30px;
+    top: 16px;
+}
+.olControlPanPanel .olControlPanSouthItemInactive {
+    background-position:15px -75px;
+    left: 16px;
+    top: 32px;
+}
+.olControlPanPanel .olControlPanWestItemInactive {
+    background-position:15px -105px;
+    left: 2px;
+    top: 16px;
+}
+
+.olControlZoomPanel { 
+    left:21px;
+}
+
+.olControlZoomPanel div {
+    background-image:url(http://extjs.cachefly.net/ext-2.2.1/resources/images/gray/panel/tool-sprites.gif);
+    height:15px;
+    width:15px;
+    /* workaround for button height in IE */
+    font-size:0px;
+}
+
+.olControlZoomPanel .olControlZoomInItemInactive {
+    background-position:15px -240px;
+}
+
+.olControlZoomPanel .olControlZoomToMaxExtentItemInactive {
+    display: none;
+}
+
+.olControlZoomPanel .olControlZoomOutItemInactive {
+    background-position:15px -255px;
+    top: 123px;
+}
+
+.olControlScaleLine {
+    font-family: tahoma,arial,helvetica,sans-serif;
+}
+
+/* position the zoom slider within map panel */
+.gx-zoomslider {
+    top: 90px;
+    left: 17px
+}
+
+

Copied: apps/opengeo/geoexplorer/branches/0.1.x/theme/app/ie.css (from rev 1062, apps/opengeo/geoexplorer/branches/0.1.x/theme/ie.css)
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/app/ie.css	                        (rev 0)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/app/ie.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -0,0 +1,12 @@
+div.map-overlay {
+    width: 240px;
+}
+
+.overlay-scalechooser {
+    width: 110px;
+}
+
+.overlay-scaleline {
+    width: 100px;
+    padding-bottom: 5px;
+}

Copied: apps/opengeo/geoexplorer/branches/0.1.x/theme/app/img (from rev 1062, apps/opengeo/geoexplorer/branches/0.1.x/theme/img)

Deleted: apps/opengeo/geoexplorer/branches/0.1.x/theme/geoexplorer.css
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/geoexplorer.css	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/geoexplorer.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,166 +0,0 @@
-/* don't wrap lines on any tooltips */
-.x-tip {
-    white-space: nowrap;
-}
-
-/* get images on buttons with text to line up with those with no text */
-.x-btn-text-icon .x-btn-center .x-btn-text {
-    background-position: 0 3px;
-}
-
-/* apply some margin when using the row expander */
-.x-grid3-row-body p {
-    margin: 5px !important;
-}
-
-/* workaround for semi-alpha pixels in IE7: background needs to be the same
- * as the toolbar's background color */
-.ext-ie .x-item-disabled .x-btn-text {
-    background-color: #EAEAEA;
-}
-
-.x-btn .icon-geoexplorer {
-    background-image: url(img/geoexplorer.png);
-}
-
-.x-btn .icon-addlayers {
-    background-image: url(img/silk/add.png);
-}
-
-.x-btn .icon-removelayers {
-    background-image: url(img/silk/delete.png);
-}
-
-.x-btn .icon-getfeatureinfo {
-    background-image: url(img/silk/information.png);
-}
-
-.x-btn .icon-save {
-    background-image: url(img/geosilk/map_save.png);
-}
-
-.x-btn .icon-measure {
-    background-image: url(img/geosilk/measure.png);
-}
-
-.icon-measure-length {
-    background-image: url(img/geosilk/ruler.png) !important;
-}
-
-.icon-measure-area {
-   background-image: url(img/geosilk/ruler_square.png) !important;
-}
-
-.x-btn .icon-zoom-in { 
-    background-image: url(img/silk/magnifier_zoom_in.png);
-}
-
-.x-btn .icon-zoom-out { 
-    background-image: url(img/silk/magnifier_zoom_out.png);
-}
-
-.x-btn .icon-zoom-previous { 
-    background-image: url(img/silk/arrow_left.png);
-}
-
-.x-btn .icon-zoom-next { 
-    background-image: url(img/silk/arrow_right.png);
-}
-
-.x-btn .icon-zoom-visible { 
-    background-image: url(img/silk/arrow_out.png);
-}
-
-.x-btn .icon-pan { 
-    background-image: url(img/geosilk/pan.png);
-}
-
-.legend-item {
-    margin: 0.5em 10px;
-}
-
-div.map-overlay {
-    z-index: 1000; 
-    position: absolute; 
-    right: 10px; 
-    bottom: 10px;
-}
-
-div.map-overlay div.overlay-element {
-    display:inline;
-    float: left;
-    margin: 5px;
-}
-
-.overlay-scaleline {
-    bottom: 0px;
-    left: 0px;
-    margin-top: 0px;
-}
-
-/* Pan- and Zoom- Panel Styles*/
-
-.olControlPanPanel div {
-    background-image:url(http://extjs.cachefly.net/ext-2.2.1/resources/images/gray/panel/tool-sprites.gif);
-    height:15px;
-    width:15px;
-    /* workaround for button height in IE */
-    font-size:0px;
-}
-
-.olControlPanPanel .olControlPanNorthItemInactive {
-    background-position:15px -60px;
-    left:16px
-}
-.olControlPanPanel .olControlPanEastItemInactive {
-    background-position:15px -120px;
-    left: 30px;
-    top: 16px;
-}
-.olControlPanPanel .olControlPanSouthItemInactive {
-    background-position:15px -75px;
-    left: 16px;
-    top: 32px;
-}
-.olControlPanPanel .olControlPanWestItemInactive {
-    background-position:15px -105px;
-    left: 2px;
-    top: 16px;
-}
-
-.olControlZoomPanel { 
-    left:21px;
-}
-
-.olControlZoomPanel div {
-    background-image:url(http://extjs.cachefly.net/ext-2.2.1/resources/images/gray/panel/tool-sprites.gif);
-    height:15px;
-    width:15px;
-    /* workaround for button height in IE */
-    font-size:0px;
-}
-
-.olControlZoomPanel .olControlZoomInItemInactive {
-    background-position:15px -240px;
-}
-
-.olControlZoomPanel .olControlZoomToMaxExtentItemInactive {
-    display: none;
-}
-
-.olControlZoomPanel .olControlZoomOutItemInactive {
-    background-position:15px -255px;
-    top: 123px;
-}
-
-.olControlScaleLine {
-    font-family: tahoma,arial,helvetica,sans-serif;
-}
-
-/* position the zoom slider within map panel */
-.gx-zoomslider {
-    top: 90px;
-    left: 17px
-}
-
-

Deleted: apps/opengeo/geoexplorer/branches/0.1.x/theme/ie.css
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/theme/ie.css	2009-06-12 13:58:25 UTC (rev 1062)
+++ apps/opengeo/geoexplorer/branches/0.1.x/theme/ie.css	2009-06-12 16:59:47 UTC (rev 1063)
@@ -1,12 +0,0 @@
-div.map-overlay {
-    width: 240px;
-}
-
-.overlay-scalechooser {
-    width: 110px;
-}
-
-.overlay-scaleline {
-    width: 100px;
-    padding-bottom: 5px;
-}



More information about the Commits mailing list