Commit f804957c362bff6b2817e2c18b9db9c8ec79a905
1 parent
cbe46e4d
Exists in
master
and in
7 other branches
Adaptação do código para funcionamento com versão 7 do Mapserver
remoção de ms_newprojectionobj("proj=latlong") para ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs")
Showing
39 changed files
with
748 additions
and
631 deletions
Show diff stats
admin/js/core.js
@@ -1771,6 +1771,7 @@ function core_parseMustacheBody (hashMustache){ | @@ -1771,6 +1771,7 @@ function core_parseMustacheBody (hashMustache){ | ||
1771 | //arquivos css | 1771 | //arquivos css |
1772 | // | 1772 | // |
1773 | cssfiles =new Array( | 1773 | cssfiles =new Array( |
1774 | + i3GEO.configura.locaplic+"/css/input.css", | ||
1774 | i3GEO.configura.locaplic+"/admin/html/admin.css" | 1775 | i3GEO.configura.locaplic+"/admin/html/admin.css" |
1775 | ); | 1776 | ); |
1776 | } | 1777 | } |
@@ -1814,6 +1815,7 @@ function core_parseMustacheBody (hashMustache){ | @@ -1814,6 +1815,7 @@ function core_parseMustacheBody (hashMustache){ | ||
1814 | "../../pacotes/yui290/build/treeview/assets/skins/sam/treeview.css", | 1815 | "../../pacotes/yui290/build/treeview/assets/skins/sam/treeview.css", |
1815 | "../../pacotes/yui290/build/editor/assets/skins/sam/editor.css", | 1816 | "../../pacotes/yui290/build/editor/assets/skins/sam/editor.css", |
1816 | "../../pacotes/yui290/build/resize/assets/skins/sam/resize.css", | 1817 | "../../pacotes/yui290/build/resize/assets/skins/sam/resize.css", |
1818 | + "../../css/input.css", | ||
1817 | "../../css/janelaflutuante.css", | 1819 | "../../css/janelaflutuante.css", |
1818 | "../html/admin.css" | 1820 | "../html/admin.css" |
1819 | ); | 1821 | ); |
admin/php/estat_mapa_upload.php
@@ -8,6 +8,7 @@ error_reporting(0); | @@ -8,6 +8,7 @@ error_reporting(0); | ||
8 | ?> | 8 | ?> |
9 | <html> | 9 | <html> |
10 | <head> | 10 | <head> |
11 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
11 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 12 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
12 | <title></title> | 13 | <title></title> |
13 | </head> | 14 | </head> |
admin/php/metaestat_mapa_uploadimagem.php
@@ -12,6 +12,7 @@ error_reporting(0); | @@ -12,6 +12,7 @@ error_reporting(0); | ||
12 | ?> | 12 | ?> |
13 | <html> | 13 | <html> |
14 | <head> | 14 | <head> |
15 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
15 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 16 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
16 | <title></title> | 17 | <title></title> |
17 | </head> | 18 | </head> |
admin/php/metaestat_uploadcsv_submit.php
@@ -15,6 +15,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -15,6 +15,7 @@ if (ob_get_level() == 0) ob_start(); | ||
15 | <html> | 15 | <html> |
16 | <head> | 16 | <head> |
17 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | 17 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> |
18 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
18 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 19 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
19 | <title></title> | 20 | <title></title> |
20 | </head> | 21 | </head> |
admin/php/metaestat_uploadshp_submit.php
@@ -15,6 +15,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -15,6 +15,7 @@ if (ob_get_level() == 0) ob_start(); | ||
15 | <html> | 15 | <html> |
16 | <head> | 16 | <head> |
17 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | 17 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> |
18 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
18 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 19 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
19 | <title></title> | 20 | <title></title> |
20 | </head> | 21 | </head> |
admin/php/uploadgvp.php
@@ -9,6 +9,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -9,6 +9,7 @@ if (ob_get_level() == 0) ob_start(); | ||
9 | ?> | 9 | ?> |
10 | <html> | 10 | <html> |
11 | <head> | 11 | <head> |
12 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
12 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 13 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
13 | <title></title> | 14 | <title></title> |
14 | </head> | 15 | </head> |
admin/principal.html
@@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
4 | <meta http-equiv="Category" | 4 | <meta http-equiv="Category" |
5 | content="i3Geo Mapa interativo MMA geoprocessamento sig mobile"> | 5 | content="i3Geo Mapa interativo MMA geoprocessamento sig mobile"> |
6 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> | 6 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> |
7 | - | 7 | +<link rel="stylesheet" type="text/css" href="../css/input.css"> |
8 | <link rel="stylesheet" type="text/css" href="html/admin.css"> | 8 | <link rel="stylesheet" type="text/css" href="html/admin.css"> |
9 | <script type="text/javascript" src="js/core.js"></script> | 9 | <script type="text/javascript" src="js/core.js"></script> |
10 | <script type="text/javascript" src="dicionario/core.js"></script> | 10 | <script type="text/javascript" src="dicionario/core.js"></script> |
classesjs/compactajs.php
@@ -210,6 +210,7 @@ salvatudojs($jsfiles,$buffer,"i3geo_tudo_compacto6.js","js"); | @@ -210,6 +210,7 @@ salvatudojs($jsfiles,$buffer,"i3geo_tudo_compacto6.js","js"); | ||
210 | // | 210 | // |
211 | 211 | ||
212 | $cssfiles = array( | 212 | $cssfiles = array( |
213 | +"../css/input.css", | ||
213 | "../css/geral.css", | 214 | "../css/geral.css", |
214 | "../css/botoes2.css", | 215 | "../css/botoes2.css", |
215 | "../css/documentation.css", | 216 | "../css/documentation.css", |
@@ -236,6 +237,7 @@ $buffer = ""; | @@ -236,6 +237,7 @@ $buffer = ""; | ||
236 | salvatudojs($cssfiles,$buffer,"../css/i3geo6.css","css"); | 237 | salvatudojs($cssfiles,$buffer,"../css/i3geo6.css","css"); |
237 | //css das ferramentas | 238 | //css das ferramentas |
238 | $cssfiles = array( | 239 | $cssfiles = array( |
240 | +"../css/input.css", | ||
239 | "../css/geral.css", | 241 | "../css/geral.css", |
240 | "../css/button.css", | 242 | "../css/button.css", |
241 | "../css/ferramentas.css", | 243 | "../css/ferramentas.css", |
classesjs/geradordelinks.js
@@ -50,6 +50,8 @@ Veja | @@ -50,6 +50,8 @@ Veja | ||
50 | // | 50 | // |
51 | //carrega as dependências | 51 | //carrega as dependências |
52 | // | 52 | // |
53 | + | ||
54 | +//TODO aplicar o padrao de css nos inputs (ver HTML) | ||
53 | (function(){ | 55 | (function(){ |
54 | var scriptLocation = ""; | 56 | var scriptLocation = ""; |
55 | var scripts = document.getElementsByTagName('script'); | 57 | var scripts = document.getElementsByTagName('script'); |
classesjs/i3geonaocompacto.js
@@ -77,6 +77,7 @@ | @@ -77,6 +77,7 @@ | ||
77 | //css | 77 | //css |
78 | var allCssTags = ""; | 78 | var allCssTags = ""; |
79 | var cssfiles = new Array( | 79 | var cssfiles = new Array( |
80 | + "../css/input.css", | ||
80 | "../css/geral.css", | 81 | "../css/geral.css", |
81 | "../css/botoes2.css", | 82 | "../css/botoes2.css", |
82 | "../css/documentation.css", | 83 | "../css/documentation.css", |
classesphp/classe_analise.php
@@ -1276,7 +1276,7 @@ class Analise | @@ -1276,7 +1276,7 @@ class Analise | ||
1276 | $projInObj = $layerorigem->getProjection(); | 1276 | $projInObj = $layerorigem->getProjection(); |
1277 | if ($projInObj == "") | 1277 | if ($projInObj == "") |
1278 | { | 1278 | { |
1279 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 1279 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
1280 | } | 1280 | } |
1281 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); | 1281 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); |
1282 | $origemdestino = array(); | 1282 | $origemdestino = array(); |
@@ -1413,7 +1413,9 @@ class Analise | @@ -1413,7 +1413,9 @@ class Analise | ||
1413 | foreach($listaShapes as $shape){ | 1413 | foreach($listaShapes as $shape){ |
1414 | //calcula a extensão geografica | 1414 | //calcula a extensão geografica |
1415 | $rect = $shape->bounds; | 1415 | $rect = $shape->bounds; |
1416 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 1416 | + //proj=longlat,ellps=WGS84,datum=WGS84,no_defs |
1417 | + //proj=latlong | ||
1418 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); | ||
1417 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); | 1419 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); |
1418 | $poPoint = ms_newpointobj(); | 1420 | $poPoint = ms_newpointobj(); |
1419 | $poPoint->setXY($rect->minx, $rect->miny); | 1421 | $poPoint->setXY($rect->minx, $rect->miny); |
@@ -1440,8 +1442,7 @@ class Analise | @@ -1440,8 +1442,7 @@ class Analise | ||
1440 | //faz a união dos elementos se necessário | 1442 | //faz a união dos elementos se necessário |
1441 | if($unir == "sim"){ | 1443 | if($unir == "sim"){ |
1442 | $ns = $buffers[0]; | 1444 | $ns = $buffers[0]; |
1443 | - for($s=1;$s < count($buffers);$s++) | ||
1444 | - { | 1445 | + for($s=1;$s < count($buffers);$s++){ |
1445 | $ns = $ns->union($buffers[$s]); | 1446 | $ns = $ns->union($buffers[$s]); |
1446 | } | 1447 | } |
1447 | $buffers = array($ns); | 1448 | $buffers = array($ns); |
@@ -1465,10 +1466,8 @@ class Analise | @@ -1465,10 +1466,8 @@ class Analise | ||
1465 | $db=xbase_open($dbname,2); | 1466 | $db=xbase_open($dbname,2); |
1466 | else | 1467 | else |
1467 | $db=dbase_open($dbname,2); | 1468 | $db=dbase_open($dbname,2); |
1468 | - for($i = 0;$i < count($buffers);++$i) | ||
1469 | - { | ||
1470 | - foreach ($items as $ni) | ||
1471 | - { | 1469 | + for($i = 0;$i < count($buffers);++$i){ |
1470 | + foreach ($items as $ni){ | ||
1472 | if(!empty($shapes[$i]->values[$ni])){ | 1471 | if(!empty($shapes[$i]->values[$ni])){ |
1473 | $reg[] = $this->truncaS($shapes[$i]->values[$ni]); | 1472 | $reg[] = $this->truncaS($shapes[$i]->values[$ni]); |
1474 | } | 1473 | } |
@@ -2646,7 +2645,7 @@ class Analise | @@ -2646,7 +2645,7 @@ class Analise | ||
2646 | case "perimetro": | 2645 | case "perimetro": |
2647 | $shape = ms_shapeObjFromWkt($g); | 2646 | $shape = ms_shapeObjFromWkt($g); |
2648 | $rect = $shape->bounds; | 2647 | $rect = $shape->bounds; |
2649 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 2648 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
2650 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000,units=m"); | 2649 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=5000000,y_0=10000000,units=m"); |
2651 | $shape->project($projInObj, $projOutObj); | 2650 | $shape->project($projInObj, $projOutObj); |
2652 | $s = $shape->towkt(); | 2651 | $s = $shape->towkt(); |
@@ -2657,7 +2656,7 @@ class Analise | @@ -2657,7 +2656,7 @@ class Analise | ||
2657 | case "area": | 2656 | case "area": |
2658 | $shape = ms_shapeObjFromWkt($g); | 2657 | $shape = ms_shapeObjFromWkt($g); |
2659 | $rect = $shape->bounds; | 2658 | $rect = $shape->bounds; |
2660 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 2659 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
2661 | $projOutObj = ms_newprojectionobj("proj=laea,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=500000,y_0=10000000,ellps=GRS67,units=m,no_defs"); | 2660 | $projOutObj = ms_newprojectionobj("proj=laea,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=500000,y_0=10000000,ellps=GRS67,units=m,no_defs"); |
2662 | $shape->project($projInObj, $projOutObj); | 2661 | $shape->project($projInObj, $projOutObj); |
2663 | $s = $shape->towkt(); | 2662 | $s = $shape->towkt(); |
classesphp/classe_selecao.php
@@ -589,7 +589,7 @@ $tipo - Tipo de opera&ccedil;&atilde;o adiciona|retira|inverte|limpa|novo | @@ -589,7 +589,7 @@ $tipo - Tipo de opera&ccedil;&atilde;o adiciona|retira|inverte|limpa|novo | ||
589 | else | 589 | else |
590 | { | 590 | { |
591 | error_reporting(0); | 591 | error_reporting(0); |
592 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 592 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
593 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$pt->x.",x_0=5000000,y_0=10000000"); | 593 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$pt->x.",x_0=5000000,y_0=10000000"); |
594 | 594 | ||
595 | $poPoint = ms_newpointobj(); | 595 | $poPoint = ms_newpointobj(); |
@@ -976,7 +976,7 @@ $geos - array com os dados | @@ -976,7 +976,7 @@ $geos - array com os dados | ||
976 | function projetaDistancia($shape,$distancia){ | 976 | function projetaDistancia($shape,$distancia){ |
977 | error_reporting(0); | 977 | error_reporting(0); |
978 | $pt = $shape->getCentroid(); | 978 | $pt = $shape->getCentroid(); |
979 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 979 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
980 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$pt->x.",x_0=5000000,y_0=10000000"); | 980 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$pt->x.",x_0=5000000,y_0=10000000"); |
981 | $poPoint = ms_newpointobj(); | 981 | $poPoint = ms_newpointobj(); |
982 | $poPoint->setXY($pt->x, $pt->y); | 982 | $poPoint->setXY($pt->x, $pt->y); |
classesphp/classe_shp.php
@@ -257,7 +257,7 @@ $projecao - codigo epsg da proje&ccedil;&atilde;o das coordenadas | @@ -257,7 +257,7 @@ $projecao - codigo epsg da proje&ccedil;&atilde;o das coordenadas | ||
257 | $poPoint->setXY($xy[$i],$xy[$i+1]); | 257 | $poPoint->setXY($xy[$i],$xy[$i+1]); |
258 | if($projecao != "") | 258 | if($projecao != "") |
259 | { | 259 | { |
260 | - $projOutObj = ms_newprojectionobj("proj=latlong"); | 260 | + $projOutObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
261 | $projInObj = ms_newprojectionobj("init=epsg:".$projecao); | 261 | $projInObj = ms_newprojectionobj("init=epsg:".$projecao); |
262 | $poPoint->project($projInObj, $projOutObj); | 262 | $poPoint->project($projInObj, $projOutObj); |
263 | } | 263 | } |
classesphp/funcoes_gerais.php
@@ -1238,7 +1238,7 @@ array( | @@ -1238,7 +1238,7 @@ array( | ||
1238 | */ | 1238 | */ |
1239 | function geo2utm($x,$y,$zona) | 1239 | function geo2utm($x,$y,$zona) |
1240 | { | 1240 | { |
1241 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 1241 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
1242 | if($y < 0){$ns = "south";} | 1242 | if($y < 0){$ns = "south";} |
1243 | else | 1243 | else |
1244 | {$ns = "north";} | 1244 | {$ns = "north";} |
@@ -1920,7 +1920,7 @@ function calculaAreaPixel($map_file,$celsize) | @@ -1920,7 +1920,7 @@ function calculaAreaPixel($map_file,$celsize) | ||
1920 | { | 1920 | { |
1921 | $mapa = ms_newMapObj($map_file); | 1921 | $mapa = ms_newMapObj($map_file); |
1922 | $rect = $mapa->extent; | 1922 | $rect = $mapa->extent; |
1923 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 1923 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
1924 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); | 1924 | $projOutObj = ms_newprojectionobj("proj=poly,ellps=GRS67,lat_0=0,lon_0=".$rect->minx.",x_0=5000000,y_0=10000000"); |
1925 | $y = $rect->maxy - ((($rect->maxy) - ($rect->miny)) / 2); | 1925 | $y = $rect->maxy - ((($rect->maxy) - ($rect->miny)) / 2); |
1926 | $x = $rect->maxx - ((($rect->maxx) - ($rect->minx)) / 2); | 1926 | $x = $rect->maxx - ((($rect->maxx) - ($rect->minx)) / 2); |
classesphp/mapa_controle.php
@@ -2417,7 +2417,7 @@ function projetaExt($map_file,$ext,$separador=" ") | @@ -2417,7 +2417,7 @@ function projetaExt($map_file,$ext,$separador=" ") | ||
2417 | $rect = ms_newRectObj(); | 2417 | $rect = ms_newRectObj(); |
2418 | $rect->setextent($extA[0],$extA[1],$extA[2],$extA[3]); | 2418 | $rect->setextent($extA[0],$extA[1],$extA[2],$extA[3]); |
2419 | $prjMapa = $mapa->getProjection(); | 2419 | $prjMapa = $mapa->getProjection(); |
2420 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 2420 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
2421 | $projOutObj = ms_newprojectionobj($prjMapa); | 2421 | $projOutObj = ms_newprojectionobj($prjMapa); |
2422 | $rect->project($projInObj, $projOutObj); | 2422 | $rect->project($projInObj, $projOutObj); |
2423 | if($ponto == false) | 2423 | if($ponto == false) |
css/geral.css
@@ -8,13 +8,7 @@ para nao selecionar | @@ -8,13 +8,7 @@ para nao selecionar | ||
8 | -o-user-select: none; | 8 | -o-user-select: none; |
9 | user-select: none; | 9 | user-select: none; |
10 | } | 10 | } |
11 | -input[type=text], textarea{ | ||
12 | - -webkit-user-select: text; | ||
13 | - -khtml-user-select: text; | ||
14 | - -moz-user-select: text; | ||
15 | - -o-user-select: text; | ||
16 | - user-select: text; | ||
17 | -} | 11 | + |
18 | /* | 12 | /* |
19 | Para nao marcar links | 13 | Para nao marcar links |
20 | */ | 14 | */ |
@@ -641,43 +635,6 @@ td { | @@ -641,43 +635,6 @@ td { | ||
641 | font-family: Verdana, Arial, Helvetica, sans-serif; | 635 | font-family: Verdana, Arial, Helvetica, sans-serif; |
642 | } | 636 | } |
643 | 637 | ||
644 | -input { | ||
645 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
646 | - font-size: 10px; | ||
647 | - color: #2F4632; | ||
648 | - background-color: #FFFFFF; | ||
649 | - padding: 0; | ||
650 | - border: 1px solid rgb(180, 180, 180); | ||
651 | - text-align: center; | ||
652 | - cursor: text; | ||
653 | -} | ||
654 | - | ||
655 | -input[type=checkbox] { | ||
656 | - border: 0px solid white; | ||
657 | -} | ||
658 | - | ||
659 | -input[type=file] { | ||
660 | - border: 0px solid white; | ||
661 | - background-color: none; | ||
662 | - background: none; | ||
663 | -} | ||
664 | - | ||
665 | -select { | ||
666 | - box-shadow: 1px 1px 3px 0 lightgray; | ||
667 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
668 | - font-size: 10px; | ||
669 | - color: #2F4632; | ||
670 | - background-color: #FFFFFF; | ||
671 | - padding: 0; | ||
672 | - border: 1px solid rgb(230, 230, 230); | ||
673 | - text-align: left; | ||
674 | - cursor: pointer; | ||
675 | -} | ||
676 | - | ||
677 | -select option:hover { | ||
678 | - background-color: #CCFFFF; | ||
679 | -} | ||
680 | - | ||
681 | .ajuda_usuario { | 638 | .ajuda_usuario { |
682 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); | 639 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); |
683 | background-position: 0px 0px; | 640 | background-position: 0px 0px; |
@@ -712,17 +669,6 @@ select option:hover { | @@ -712,17 +669,6 @@ select option:hover { | ||
712 | font-size: 10px; | 669 | font-size: 10px; |
713 | } | 670 | } |
714 | 671 | ||
715 | -.inputsb { | ||
716 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
717 | - font-size: 10px; | ||
718 | - color: #2F4632; | ||
719 | - background-color: #FFFFFF; | ||
720 | - padding: 0; | ||
721 | - border: 0px solid gray; | ||
722 | - text-align: center; | ||
723 | - cursor: text; | ||
724 | -} | ||
725 | - | ||
726 | .legendatemas { | 672 | .legendatemas { |
727 | cursor: pointer; | 673 | cursor: pointer; |
728 | text-align: left; | 674 | text-align: left; |
@@ -933,6 +879,7 @@ select option:hover { | @@ -933,6 +879,7 @@ select option:hover { | ||
933 | .digitar input { | 879 | .digitar input { |
934 | border: 1px solid rgb(180, 180, 180); | 880 | border: 1px solid rgb(180, 180, 180); |
935 | } | 881 | } |
882 | + | ||
936 | .digitarOver { | 883 | .digitarOver { |
937 | margin: 0px; | 884 | margin: 0px; |
938 | color: #426252; | 885 | color: #426252; |
@@ -1385,110 +1332,6 @@ h1 { | @@ -1385,110 +1332,6 @@ h1 { | ||
1385 | } | 1332 | } |
1386 | } | 1333 | } |
1387 | 1334 | ||
1388 | -.styled-select input, .styled-select150 input { | ||
1389 | - width: 100%; | ||
1390 | - height: 22px; | ||
1391 | - border: 0; | ||
1392 | - box-shadow: none; | ||
1393 | - line-height: 1.5; | ||
1394 | - -webkit-appearance: none; | ||
1395 | - -moz-appearance: none; | ||
1396 | - text-indent: 0.01px; | ||
1397 | - text-overflow: ''; | ||
1398 | - font-size: 12px; | ||
1399 | - appearance: none; | ||
1400 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1401 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1402 | - (min-resolution: 192dpi) { | ||
1403 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1404 | - background-size: 16px 144px; | ||
1405 | - } | ||
1406 | -} | ||
1407 | - | ||
1408 | -.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
1409 | - width: 252px; | ||
1410 | - overflow: hidden; | ||
1411 | - background: #F8F8F8; | ||
1412 | - border: 1px solid #DDDDDD; | ||
1413 | - height: 22px; | ||
1414 | - border-radius: 2px; | ||
1415 | -} | ||
1416 | - | ||
1417 | -.i3geoForm150 { | ||
1418 | - width: 150px; | ||
1419 | -} | ||
1420 | - | ||
1421 | -.i3geoForm100 { | ||
1422 | - width: 100px; | ||
1423 | -} | ||
1424 | - | ||
1425 | -.i3geoFormIconeEdita { | ||
1426 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1427 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1428 | - (min-resolution: 192dpi) { | ||
1429 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1430 | - background-size: 16px 144px; | ||
1431 | - } | ||
1432 | -} | ||
1433 | - | ||
1434 | -.i3geoFormSemIcone { | ||
1435 | - background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1436 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1437 | - (min-resolution: 192dpi) { | ||
1438 | - background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1439 | - background-size: 16px 144px; | ||
1440 | - } | ||
1441 | -} | ||
1442 | - | ||
1443 | -.i3geoFormTag { | ||
1444 | - background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1445 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1446 | - (min-resolution: 192dpi) { | ||
1447 | - background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1448 | - background-size: 16px 144px; | ||
1449 | - } | ||
1450 | - border-radius: 8px; | ||
1451 | - background-color: #F0F0F0; | ||
1452 | - cursor: pointer; | ||
1453 | -} | ||
1454 | - | ||
1455 | -.i3geoFormIconeAquarela { | ||
1456 | - cursor: pointer; | ||
1457 | - background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
1458 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1459 | - (min-resolution: 192dpi) { | ||
1460 | - background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
1461 | - background-size: 16px 144px; | ||
1462 | - } | ||
1463 | - | ||
1464 | -} | ||
1465 | - | ||
1466 | -.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
1467 | - width: 90%; | ||
1468 | - height: 22px; | ||
1469 | - border: 0; | ||
1470 | - box-shadow: none; | ||
1471 | - line-height: 1.5; | ||
1472 | - -webkit-appearance: none; | ||
1473 | - -moz-appearance: none; | ||
1474 | - text-indent: 0.01px; | ||
1475 | - text-overflow: ''; | ||
1476 | - font-size: 12px; | ||
1477 | - appearance: none; | ||
1478 | - cursor: text; | ||
1479 | -} | ||
1480 | - | ||
1481 | -.i3geoFormIconeAquarela input{ | ||
1482 | - width: 80%; | ||
1483 | -} | ||
1484 | - | ||
1485 | -/*hack opera */ | ||
1486 | -@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
1487 | - (-webkit-min-device-pixel-ratio:0) { | ||
1488 | - .inputsb { | ||
1489 | - border: 1px solid black | ||
1490 | - } | ||
1491 | -} | ||
1492 | /* esconde na impressao */ | 1335 | /* esconde na impressao */ |
1493 | @media print { | 1336 | @media print { |
1494 | .noprint { | 1337 | .noprint { |
css/i3geo6.css
1 | +input{ | ||
2 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
3 | +} | ||
4 | +input[type=text], textarea{ | ||
5 | +-webkit-user-select: text; | ||
6 | +-khtml-user-select: text; | ||
7 | +-moz-user-select: text; | ||
8 | +-o-user-select: text; | ||
9 | +user-select: text; | ||
10 | +} | ||
11 | +input[type=text] { | ||
12 | +font-size: 10px; | ||
13 | +color: #2F4632; | ||
14 | +background-color: #FFFFFF; | ||
15 | +padding: 0; | ||
16 | +border: 1px solid rgb(180, 180, 180); | ||
17 | +text-align: center; | ||
18 | +cursor: text; | ||
19 | +height: 22px; | ||
20 | +} | ||
21 | +input[type=checkbox] { | ||
22 | +border: 0px solid white; | ||
23 | +} | ||
24 | +input[type=file] { | ||
25 | +border: 0px solid white; | ||
26 | +background-color: none; | ||
27 | +background: none; | ||
28 | +} | ||
29 | +select { | ||
30 | +box-shadow: 1px 1px 3px 0 lightgray; | ||
31 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
32 | +font-size: 10px; | ||
33 | +color: #2F4632; | ||
34 | +background-color: #FFFFFF; | ||
35 | +padding: 0; | ||
36 | +border: 1px solid rgb(230, 230, 230); | ||
37 | +text-align: left; | ||
38 | +cursor: pointer; | ||
39 | +} | ||
40 | +select option:hover { | ||
41 | +background-color: #CCFFFF; | ||
42 | +} | ||
43 | +.inputsb { | ||
44 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
45 | +font-size: 10px; | ||
46 | +color: #2F4632; | ||
47 | +background-color: #FFFFFF; | ||
48 | +padding: 0; | ||
49 | +border: 0px solid gray; | ||
50 | +text-align: center; | ||
51 | +cursor: text; | ||
52 | +} | ||
53 | +.styled-select input, .styled-select150 input { | ||
54 | +width: 100%; | ||
55 | +height: 22px; | ||
56 | +border: 0; | ||
57 | +box-shadow: none; | ||
58 | +line-height: 1.5; | ||
59 | +-webkit-appearance: none; | ||
60 | +-moz-appearance: none; | ||
61 | +text-indent: 0.01px; | ||
62 | +text-overflow: ''; | ||
63 | +font-size: 12px; | ||
64 | +appearance: none; | ||
65 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
66 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
67 | +(min-resolution: 192dpi) { | ||
68 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
69 | +background-size: 16px 144px; | ||
70 | +} | ||
71 | +} | ||
72 | +.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
73 | +width: 252px; | ||
74 | +overflow: hidden; | ||
75 | +background: #F8F8F8; | ||
76 | +border: 1px solid #DDDDDD; | ||
77 | +height: 22px; | ||
78 | +border-radius: 2px; | ||
79 | +} | ||
80 | +.i3geoForm150 { | ||
81 | +width: 150px; | ||
82 | +} | ||
83 | +.i3geoForm100 { | ||
84 | +width: 100px; | ||
85 | +} | ||
86 | +.i3geoFormIconeEdita { | ||
87 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
88 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
89 | +(min-resolution: 192dpi) { | ||
90 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
91 | +background-size: 16px 144px; | ||
92 | +} | ||
93 | +} | ||
94 | +.i3geoFormIconeUsuario { | ||
95 | +background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
96 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
97 | +(min-resolution: 192dpi) { | ||
98 | +background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
99 | +background-size: 16px 144px; | ||
100 | +} | ||
101 | +} | ||
102 | +.i3geoFormIconeSenha { | ||
103 | +background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
104 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
105 | +(min-resolution: 192dpi) { | ||
106 | +background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
107 | +background-size: 16px 144px; | ||
108 | +} | ||
109 | +} | ||
110 | +.i3geoFormSemIcone { | ||
111 | +background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
112 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
113 | +(min-resolution: 192dpi) { | ||
114 | +background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
115 | +background-size: 16px 144px; | ||
116 | +} | ||
117 | +} | ||
118 | +.i3geoFormTag { | ||
119 | +background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
120 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
121 | +(min-resolution: 192dpi) { | ||
122 | +background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
123 | +background-size: 16px 144px; | ||
124 | +} | ||
125 | +border-radius: 8px; | ||
126 | +background-color: #F0F0F0; | ||
127 | +cursor: pointer; | ||
128 | +} | ||
129 | +.i3geoFormIconeAquarela { | ||
130 | +cursor: pointer; | ||
131 | +background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
132 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
133 | +(min-resolution: 192dpi) { | ||
134 | +background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
135 | +background-size: 16px 144px; | ||
136 | +} | ||
137 | +} | ||
138 | +.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
139 | +width: 90%; | ||
140 | +height: 22px; | ||
141 | +border: 0; | ||
142 | +box-shadow: none; | ||
143 | +line-height: 1.5; | ||
144 | +-webkit-appearance: none; | ||
145 | +-moz-appearance: none; | ||
146 | +text-indent: 0.01px; | ||
147 | +text-overflow: ''; | ||
148 | +font-size: 12px; | ||
149 | +appearance: none; | ||
150 | +cursor: text; | ||
151 | +} | ||
152 | +.i3geoFormIconeAquarela input{ | ||
153 | +width: 80%; | ||
154 | +} | ||
155 | +/*hack opera */ | ||
156 | +@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
157 | +(-webkit-min-device-pixel-ratio:0) { | ||
158 | +.inputsb { | ||
159 | +border: 1px solid black | ||
160 | +} | ||
161 | +} | ||
1 | /* | 162 | /* |
2 | para nao selecionar | 163 | para nao selecionar |
3 | */ | 164 | */ |
@@ -8,13 +169,6 @@ para nao selecionar | @@ -8,13 +169,6 @@ para nao selecionar | ||
8 | -o-user-select: none; | 169 | -o-user-select: none; |
9 | user-select: none; | 170 | user-select: none; |
10 | } | 171 | } |
11 | -input[type=text], textarea{ | ||
12 | --webkit-user-select: text; | ||
13 | --khtml-user-select: text; | ||
14 | --moz-user-select: text; | ||
15 | --o-user-select: text; | ||
16 | -user-select: text; | ||
17 | -} | ||
18 | /* | 172 | /* |
19 | Para nao marcar links | 173 | Para nao marcar links |
20 | */ | 174 | */ |
@@ -576,38 +730,6 @@ text-align: center; | @@ -576,38 +730,6 @@ text-align: center; | ||
576 | font-size: 12px; | 730 | font-size: 12px; |
577 | font-family: Verdana, Arial, Helvetica, sans-serif; | 731 | font-family: Verdana, Arial, Helvetica, sans-serif; |
578 | } | 732 | } |
579 | -input { | ||
580 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
581 | -font-size: 10px; | ||
582 | -color: #2F4632; | ||
583 | -background-color: #FFFFFF; | ||
584 | -padding: 0; | ||
585 | -border: 1px solid rgb(180, 180, 180); | ||
586 | -text-align: center; | ||
587 | -cursor: text; | ||
588 | -} | ||
589 | -input[type=checkbox] { | ||
590 | -border: 0px solid white; | ||
591 | -} | ||
592 | -input[type=file] { | ||
593 | -border: 0px solid white; | ||
594 | -background-color: none; | ||
595 | -background: none; | ||
596 | -} | ||
597 | -select { | ||
598 | -box-shadow: 1px 1px 3px 0 lightgray; | ||
599 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
600 | -font-size: 10px; | ||
601 | -color: #2F4632; | ||
602 | -background-color: #FFFFFF; | ||
603 | -padding: 0; | ||
604 | -border: 1px solid rgb(230, 230, 230); | ||
605 | -text-align: left; | ||
606 | -cursor: pointer; | ||
607 | -} | ||
608 | -select option:hover { | ||
609 | -background-color: #CCFFFF; | ||
610 | -} | ||
611 | .ajuda_usuario { | 733 | .ajuda_usuario { |
612 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); | 734 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); |
613 | background-position: 0px 0px; | 735 | background-position: 0px 0px; |
@@ -639,16 +761,6 @@ background-position: right; | @@ -639,16 +761,6 @@ background-position: right; | ||
639 | font-family: Verdana, Arial, Helvetica, sans-serif; | 761 | font-family: Verdana, Arial, Helvetica, sans-serif; |
640 | font-size: 10px; | 762 | font-size: 10px; |
641 | } | 763 | } |
642 | -.inputsb { | ||
643 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
644 | -font-size: 10px; | ||
645 | -color: #2F4632; | ||
646 | -background-color: #FFFFFF; | ||
647 | -padding: 0; | ||
648 | -border: 0px solid gray; | ||
649 | -text-align: center; | ||
650 | -cursor: text; | ||
651 | -} | ||
652 | .legendatemas { | 764 | .legendatemas { |
653 | cursor: pointer; | 765 | cursor: pointer; |
654 | text-align: left; | 766 | text-align: left; |
@@ -1237,99 +1349,6 @@ background: transparent url("../imagens/menuarodwn8_nrm_1.gif") no-repeat scroll | @@ -1237,99 +1349,6 @@ background: transparent url("../imagens/menuarodwn8_nrm_1.gif") no-repeat scroll | ||
1237 | background-size: 16px 144px; | 1349 | background-size: 16px 144px; |
1238 | } | 1350 | } |
1239 | } | 1351 | } |
1240 | -.styled-select input, .styled-select150 input { | ||
1241 | -width: 100%; | ||
1242 | -height: 22px; | ||
1243 | -border: 0; | ||
1244 | -box-shadow: none; | ||
1245 | -line-height: 1.5; | ||
1246 | --webkit-appearance: none; | ||
1247 | --moz-appearance: none; | ||
1248 | -text-indent: 0.01px; | ||
1249 | -text-overflow: ''; | ||
1250 | -font-size: 12px; | ||
1251 | -appearance: none; | ||
1252 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1253 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1254 | -(min-resolution: 192dpi) { | ||
1255 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1256 | -background-size: 16px 144px; | ||
1257 | -} | ||
1258 | -} | ||
1259 | -.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
1260 | -width: 252px; | ||
1261 | -overflow: hidden; | ||
1262 | -background: #F8F8F8; | ||
1263 | -border: 1px solid #DDDDDD; | ||
1264 | -height: 22px; | ||
1265 | -border-radius: 2px; | ||
1266 | -} | ||
1267 | -.i3geoForm150 { | ||
1268 | -width: 150px; | ||
1269 | -} | ||
1270 | -.i3geoForm100 { | ||
1271 | -width: 100px; | ||
1272 | -} | ||
1273 | -.i3geoFormIconeEdita { | ||
1274 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1275 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1276 | -(min-resolution: 192dpi) { | ||
1277 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1278 | -background-size: 16px 144px; | ||
1279 | -} | ||
1280 | -} | ||
1281 | -.i3geoFormSemIcone { | ||
1282 | -background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1283 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1284 | -(min-resolution: 192dpi) { | ||
1285 | -background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1286 | -background-size: 16px 144px; | ||
1287 | -} | ||
1288 | -} | ||
1289 | -.i3geoFormTag { | ||
1290 | -background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1291 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1292 | -(min-resolution: 192dpi) { | ||
1293 | -background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1294 | -background-size: 16px 144px; | ||
1295 | -} | ||
1296 | -border-radius: 8px; | ||
1297 | -background-color: #F0F0F0; | ||
1298 | -cursor: pointer; | ||
1299 | -} | ||
1300 | -.i3geoFormIconeAquarela { | ||
1301 | -cursor: pointer; | ||
1302 | -background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
1303 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1304 | -(min-resolution: 192dpi) { | ||
1305 | -background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
1306 | -background-size: 16px 144px; | ||
1307 | -} | ||
1308 | -} | ||
1309 | -.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
1310 | -width: 90%; | ||
1311 | -height: 22px; | ||
1312 | -border: 0; | ||
1313 | -box-shadow: none; | ||
1314 | -line-height: 1.5; | ||
1315 | --webkit-appearance: none; | ||
1316 | --moz-appearance: none; | ||
1317 | -text-indent: 0.01px; | ||
1318 | -text-overflow: ''; | ||
1319 | -font-size: 12px; | ||
1320 | -appearance: none; | ||
1321 | -cursor: text; | ||
1322 | -} | ||
1323 | -.i3geoFormIconeAquarela input{ | ||
1324 | -width: 80%; | ||
1325 | -} | ||
1326 | -/*hack opera */ | ||
1327 | -@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
1328 | -(-webkit-min-device-pixel-ratio:0) { | ||
1329 | -.inputsb { | ||
1330 | -border: 1px solid black | ||
1331 | -} | ||
1332 | -} | ||
1333 | /* esconde na impressao */ | 1352 | /* esconde na impressao */ |
1334 | @media print { | 1353 | @media print { |
1335 | .noprint { | 1354 | .noprint { |
css/i3geo6.css.php
1 | -<?php error_reporting(0);if(extension_loaded('zlib')){ob_start('ob_gzhandler');} header("Content-type: text/css"); ?>/* | 1 | +<?php error_reporting(0);if(extension_loaded('zlib')){ob_start('ob_gzhandler');} header("Content-type: text/css"); ?>input{ |
2 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
3 | +} | ||
4 | +input[type=text], textarea{ | ||
5 | +-webkit-user-select: text; | ||
6 | +-khtml-user-select: text; | ||
7 | +-moz-user-select: text; | ||
8 | +-o-user-select: text; | ||
9 | +user-select: text; | ||
10 | +} | ||
11 | +input[type=text] { | ||
12 | +font-size: 10px; | ||
13 | +color: #2F4632; | ||
14 | +background-color: #FFFFFF; | ||
15 | +padding: 0; | ||
16 | +border: 1px solid rgb(180, 180, 180); | ||
17 | +text-align: center; | ||
18 | +cursor: text; | ||
19 | +height: 22px; | ||
20 | +} | ||
21 | +input[type=checkbox] { | ||
22 | +border: 0px solid white; | ||
23 | +} | ||
24 | +input[type=file] { | ||
25 | +border: 0px solid white; | ||
26 | +background-color: none; | ||
27 | +background: none; | ||
28 | +} | ||
29 | +select { | ||
30 | +box-shadow: 1px 1px 3px 0 lightgray; | ||
31 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
32 | +font-size: 10px; | ||
33 | +color: #2F4632; | ||
34 | +background-color: #FFFFFF; | ||
35 | +padding: 0; | ||
36 | +border: 1px solid rgb(230, 230, 230); | ||
37 | +text-align: left; | ||
38 | +cursor: pointer; | ||
39 | +} | ||
40 | +select option:hover { | ||
41 | +background-color: #CCFFFF; | ||
42 | +} | ||
43 | +.inputsb { | ||
44 | +font-family: Verdana, Arial, Helvetica, sans-serif; | ||
45 | +font-size: 10px; | ||
46 | +color: #2F4632; | ||
47 | +background-color: #FFFFFF; | ||
48 | +padding: 0; | ||
49 | +border: 0px solid gray; | ||
50 | +text-align: center; | ||
51 | +cursor: text; | ||
52 | +} | ||
53 | +.styled-select input, .styled-select150 input { | ||
54 | +width: 100%; | ||
55 | +height: 22px; | ||
56 | +border: 0; | ||
57 | +box-shadow: none; | ||
58 | +line-height: 1.5; | ||
59 | +-webkit-appearance: none; | ||
60 | +-moz-appearance: none; | ||
61 | +text-indent: 0.01px; | ||
62 | +text-overflow: ''; | ||
63 | +font-size: 12px; | ||
64 | +appearance: none; | ||
65 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
66 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
67 | +(min-resolution: 192dpi) { | ||
68 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
69 | +background-size: 16px 144px; | ||
70 | +} | ||
71 | +} | ||
72 | +.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
73 | +width: 252px; | ||
74 | +overflow: hidden; | ||
75 | +background: #F8F8F8; | ||
76 | +border: 1px solid #DDDDDD; | ||
77 | +height: 22px; | ||
78 | +border-radius: 2px; | ||
79 | +} | ||
80 | +.i3geoForm150 { | ||
81 | +width: 150px; | ||
82 | +} | ||
83 | +.i3geoForm100 { | ||
84 | +width: 100px; | ||
85 | +} | ||
86 | +.i3geoFormIconeEdita { | ||
87 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
88 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
89 | +(min-resolution: 192dpi) { | ||
90 | +background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
91 | +background-size: 16px 144px; | ||
92 | +} | ||
93 | +} | ||
94 | +.i3geoFormIconeUsuario { | ||
95 | +background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
96 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
97 | +(min-resolution: 192dpi) { | ||
98 | +background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
99 | +background-size: 16px 144px; | ||
100 | +} | ||
101 | +} | ||
102 | +.i3geoFormIconeSenha { | ||
103 | +background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
104 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
105 | +(min-resolution: 192dpi) { | ||
106 | +background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
107 | +background-size: 16px 144px; | ||
108 | +} | ||
109 | +} | ||
110 | +.i3geoFormSemIcone { | ||
111 | +background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
112 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
113 | +(min-resolution: 192dpi) { | ||
114 | +background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
115 | +background-size: 16px 144px; | ||
116 | +} | ||
117 | +} | ||
118 | +.i3geoFormTag { | ||
119 | +background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
120 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
121 | +(min-resolution: 192dpi) { | ||
122 | +background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
123 | +background-size: 16px 144px; | ||
124 | +} | ||
125 | +border-radius: 8px; | ||
126 | +background-color: #F0F0F0; | ||
127 | +cursor: pointer; | ||
128 | +} | ||
129 | +.i3geoFormIconeAquarela { | ||
130 | +cursor: pointer; | ||
131 | +background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
132 | +@media (-webkit-min-device-pixel-ratio: 2), | ||
133 | +(min-resolution: 192dpi) { | ||
134 | +background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
135 | +background-size: 16px 144px; | ||
136 | +} | ||
137 | +} | ||
138 | +.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
139 | +width: 90%; | ||
140 | +height: 22px; | ||
141 | +border: 0; | ||
142 | +box-shadow: none; | ||
143 | +line-height: 1.5; | ||
144 | +-webkit-appearance: none; | ||
145 | +-moz-appearance: none; | ||
146 | +text-indent: 0.01px; | ||
147 | +text-overflow: ''; | ||
148 | +font-size: 12px; | ||
149 | +appearance: none; | ||
150 | +cursor: text; | ||
151 | +} | ||
152 | +.i3geoFormIconeAquarela input{ | ||
153 | +width: 80%; | ||
154 | +} | ||
155 | +/*hack opera */ | ||
156 | +@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
157 | +(-webkit-min-device-pixel-ratio:0) { | ||
158 | +.inputsb { | ||
159 | +border: 1px solid black | ||
160 | +} | ||
161 | +} | ||
162 | +/* | ||
2 | para nao selecionar | 163 | para nao selecionar |
3 | */ | 164 | */ |
4 | * { | 165 | * { |
@@ -8,13 +169,6 @@ para nao selecionar | @@ -8,13 +169,6 @@ para nao selecionar | ||
8 | -o-user-select: none; | 169 | -o-user-select: none; |
9 | user-select: none; | 170 | user-select: none; |
10 | } | 171 | } |
11 | -input[type=text], textarea{ | ||
12 | --webkit-user-select: text; | ||
13 | --khtml-user-select: text; | ||
14 | --moz-user-select: text; | ||
15 | --o-user-select: text; | ||
16 | -user-select: text; | ||
17 | -} | ||
18 | /* | 172 | /* |
19 | Para nao marcar links | 173 | Para nao marcar links |
20 | */ | 174 | */ |
@@ -576,38 +730,6 @@ text-align: center; | @@ -576,38 +730,6 @@ text-align: center; | ||
576 | font-size: 12px; | 730 | font-size: 12px; |
577 | font-family: Verdana, Arial, Helvetica, sans-serif; | 731 | font-family: Verdana, Arial, Helvetica, sans-serif; |
578 | } | 732 | } |
579 | -input { | ||
580 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
581 | -font-size: 10px; | ||
582 | -color: #2F4632; | ||
583 | -background-color: #FFFFFF; | ||
584 | -padding: 0; | ||
585 | -border: 1px solid rgb(180, 180, 180); | ||
586 | -text-align: center; | ||
587 | -cursor: text; | ||
588 | -} | ||
589 | -input[type=checkbox] { | ||
590 | -border: 0px solid white; | ||
591 | -} | ||
592 | -input[type=file] { | ||
593 | -border: 0px solid white; | ||
594 | -background-color: none; | ||
595 | -background: none; | ||
596 | -} | ||
597 | -select { | ||
598 | -box-shadow: 1px 1px 3px 0 lightgray; | ||
599 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
600 | -font-size: 10px; | ||
601 | -color: #2F4632; | ||
602 | -background-color: #FFFFFF; | ||
603 | -padding: 0; | ||
604 | -border: 1px solid rgb(230, 230, 230); | ||
605 | -text-align: left; | ||
606 | -cursor: pointer; | ||
607 | -} | ||
608 | -select option:hover { | ||
609 | -background-color: #CCFFFF; | ||
610 | -} | ||
611 | .ajuda_usuario { | 733 | .ajuda_usuario { |
612 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); | 734 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); |
613 | background-position: 0px 0px; | 735 | background-position: 0px 0px; |
@@ -639,16 +761,6 @@ background-position: right; | @@ -639,16 +761,6 @@ background-position: right; | ||
639 | font-family: Verdana, Arial, Helvetica, sans-serif; | 761 | font-family: Verdana, Arial, Helvetica, sans-serif; |
640 | font-size: 10px; | 762 | font-size: 10px; |
641 | } | 763 | } |
642 | -.inputsb { | ||
643 | -font-family: Verdana, Arial, Helvetica, sans-serif; | ||
644 | -font-size: 10px; | ||
645 | -color: #2F4632; | ||
646 | -background-color: #FFFFFF; | ||
647 | -padding: 0; | ||
648 | -border: 0px solid gray; | ||
649 | -text-align: center; | ||
650 | -cursor: text; | ||
651 | -} | ||
652 | .legendatemas { | 764 | .legendatemas { |
653 | cursor: pointer; | 765 | cursor: pointer; |
654 | text-align: left; | 766 | text-align: left; |
@@ -1237,99 +1349,6 @@ background: transparent url("../imagens/menuarodwn8_nrm_1.gif") no-repeat scroll | @@ -1237,99 +1349,6 @@ background: transparent url("../imagens/menuarodwn8_nrm_1.gif") no-repeat scroll | ||
1237 | background-size: 16px 144px; | 1349 | background-size: 16px 144px; |
1238 | } | 1350 | } |
1239 | } | 1351 | } |
1240 | -.styled-select input, .styled-select150 input { | ||
1241 | -width: 100%; | ||
1242 | -height: 22px; | ||
1243 | -border: 0; | ||
1244 | -box-shadow: none; | ||
1245 | -line-height: 1.5; | ||
1246 | --webkit-appearance: none; | ||
1247 | --moz-appearance: none; | ||
1248 | -text-indent: 0.01px; | ||
1249 | -text-overflow: ''; | ||
1250 | -font-size: 12px; | ||
1251 | -appearance: none; | ||
1252 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1253 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1254 | -(min-resolution: 192dpi) { | ||
1255 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1256 | -background-size: 16px 144px; | ||
1257 | -} | ||
1258 | -} | ||
1259 | -.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
1260 | -width: 252px; | ||
1261 | -overflow: hidden; | ||
1262 | -background: #F8F8F8; | ||
1263 | -border: 1px solid #DDDDDD; | ||
1264 | -height: 22px; | ||
1265 | -border-radius: 2px; | ||
1266 | -} | ||
1267 | -.i3geoForm150 { | ||
1268 | -width: 150px; | ||
1269 | -} | ||
1270 | -.i3geoForm100 { | ||
1271 | -width: 100px; | ||
1272 | -} | ||
1273 | -.i3geoFormIconeEdita { | ||
1274 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1275 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1276 | -(min-resolution: 192dpi) { | ||
1277 | -background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1278 | -background-size: 16px 144px; | ||
1279 | -} | ||
1280 | -} | ||
1281 | -.i3geoFormSemIcone { | ||
1282 | -background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1283 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1284 | -(min-resolution: 192dpi) { | ||
1285 | -background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1286 | -background-size: 16px 144px; | ||
1287 | -} | ||
1288 | -} | ||
1289 | -.i3geoFormTag { | ||
1290 | -background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1291 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1292 | -(min-resolution: 192dpi) { | ||
1293 | -background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1294 | -background-size: 16px 144px; | ||
1295 | -} | ||
1296 | -border-radius: 8px; | ||
1297 | -background-color: #F0F0F0; | ||
1298 | -cursor: pointer; | ||
1299 | -} | ||
1300 | -.i3geoFormIconeAquarela { | ||
1301 | -cursor: pointer; | ||
1302 | -background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
1303 | -@media (-webkit-min-device-pixel-ratio: 2), | ||
1304 | -(min-resolution: 192dpi) { | ||
1305 | -background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
1306 | -background-size: 16px 144px; | ||
1307 | -} | ||
1308 | -} | ||
1309 | -.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
1310 | -width: 90%; | ||
1311 | -height: 22px; | ||
1312 | -border: 0; | ||
1313 | -box-shadow: none; | ||
1314 | -line-height: 1.5; | ||
1315 | --webkit-appearance: none; | ||
1316 | --moz-appearance: none; | ||
1317 | -text-indent: 0.01px; | ||
1318 | -text-overflow: ''; | ||
1319 | -font-size: 12px; | ||
1320 | -appearance: none; | ||
1321 | -cursor: text; | ||
1322 | -} | ||
1323 | -.i3geoFormIconeAquarela input{ | ||
1324 | -width: 80%; | ||
1325 | -} | ||
1326 | -/*hack opera */ | ||
1327 | -@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
1328 | -(-webkit-min-device-pixel-ratio:0) { | ||
1329 | -.inputsb { | ||
1330 | -border: 1px solid black | ||
1331 | -} | ||
1332 | -} | ||
1333 | /* esconde na impressao */ | 1352 | /* esconde na impressao */ |
1334 | @media print { | 1353 | @media print { |
1335 | .noprint { | 1354 | .noprint { |
css/i3geo_ferramentas6.css
1 | +input{ | ||
2 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
3 | +} | ||
4 | +input[type=text], textarea{ | ||
5 | + -webkit-user-select: text; | ||
6 | + -khtml-user-select: text; | ||
7 | + -moz-user-select: text; | ||
8 | + -o-user-select: text; | ||
9 | + user-select: text; | ||
10 | +} | ||
11 | + | ||
12 | +input[type=text] { | ||
13 | + font-size: 10px; | ||
14 | + color: #2F4632; | ||
15 | + background-color: #FFFFFF; | ||
16 | + padding: 0; | ||
17 | + border: 1px solid rgb(180, 180, 180); | ||
18 | + text-align: center; | ||
19 | + cursor: text; | ||
20 | + height: 22px; | ||
21 | +} | ||
22 | + | ||
23 | +input[type=checkbox] { | ||
24 | + border: 0px solid white; | ||
25 | +} | ||
26 | + | ||
27 | +input[type=file] { | ||
28 | + border: 0px solid white; | ||
29 | + background-color: none; | ||
30 | + background: none; | ||
31 | +} | ||
32 | + | ||
33 | +select { | ||
34 | + box-shadow: 1px 1px 3px 0 lightgray; | ||
35 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
36 | + font-size: 10px; | ||
37 | + color: #2F4632; | ||
38 | + background-color: #FFFFFF; | ||
39 | + padding: 0; | ||
40 | + border: 1px solid rgb(230, 230, 230); | ||
41 | + text-align: left; | ||
42 | + cursor: pointer; | ||
43 | +} | ||
44 | + | ||
45 | +select option:hover { | ||
46 | + background-color: #CCFFFF; | ||
47 | +} | ||
48 | + | ||
49 | +.inputsb { | ||
50 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
51 | + font-size: 10px; | ||
52 | + color: #2F4632; | ||
53 | + background-color: #FFFFFF; | ||
54 | + padding: 0; | ||
55 | + border: 0px solid gray; | ||
56 | + text-align: center; | ||
57 | + cursor: text; | ||
58 | +} | ||
59 | + | ||
60 | +.styled-select input, .styled-select150 input { | ||
61 | + width: 100%; | ||
62 | + height: 22px; | ||
63 | + border: 0; | ||
64 | + box-shadow: none; | ||
65 | + line-height: 1.5; | ||
66 | + -webkit-appearance: none; | ||
67 | + -moz-appearance: none; | ||
68 | + text-indent: 0.01px; | ||
69 | + text-overflow: ''; | ||
70 | + font-size: 12px; | ||
71 | + appearance: none; | ||
72 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
73 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
74 | + (min-resolution: 192dpi) { | ||
75 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
76 | + background-size: 16px 144px; | ||
77 | + } | ||
78 | +} | ||
79 | + | ||
80 | +.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
81 | + width: 252px; | ||
82 | + overflow: hidden; | ||
83 | + background: #F8F8F8; | ||
84 | + border: 1px solid #DDDDDD; | ||
85 | + height: 22px; | ||
86 | + border-radius: 2px; | ||
87 | +} | ||
88 | + | ||
89 | +.i3geoForm150 { | ||
90 | + width: 150px; | ||
91 | +} | ||
92 | + | ||
93 | +.i3geoForm100 { | ||
94 | + width: 100px; | ||
95 | +} | ||
96 | + | ||
97 | +.i3geoFormIconeEdita { | ||
98 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
99 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
100 | + (min-resolution: 192dpi) { | ||
101 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
102 | + background-size: 16px 144px; | ||
103 | + } | ||
104 | +} | ||
105 | + | ||
106 | +.i3geoFormIconeUsuario { | ||
107 | + background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
108 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
109 | + (min-resolution: 192dpi) { | ||
110 | + background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
111 | + background-size: 16px 144px; | ||
112 | + } | ||
113 | +} | ||
114 | + | ||
115 | +.i3geoFormIconeSenha { | ||
116 | + background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
117 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
118 | + (min-resolution: 192dpi) { | ||
119 | + background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
120 | + background-size: 16px 144px; | ||
121 | + } | ||
122 | +} | ||
123 | + | ||
124 | +.i3geoFormSemIcone { | ||
125 | + background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
126 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
127 | + (min-resolution: 192dpi) { | ||
128 | + background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
129 | + background-size: 16px 144px; | ||
130 | + } | ||
131 | +} | ||
132 | + | ||
133 | +.i3geoFormTag { | ||
134 | + background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
135 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
136 | + (min-resolution: 192dpi) { | ||
137 | + background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
138 | + background-size: 16px 144px; | ||
139 | + } | ||
140 | + border-radius: 8px; | ||
141 | + background-color: #F0F0F0; | ||
142 | + cursor: pointer; | ||
143 | +} | ||
144 | + | ||
145 | +.i3geoFormIconeAquarela { | ||
146 | + cursor: pointer; | ||
147 | + background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
148 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
149 | + (min-resolution: 192dpi) { | ||
150 | + background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
151 | + background-size: 16px 144px; | ||
152 | + } | ||
153 | + | ||
154 | +} | ||
155 | + | ||
156 | +.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
157 | + width: 90%; | ||
158 | + height: 22px; | ||
159 | + border: 0; | ||
160 | + box-shadow: none; | ||
161 | + line-height: 1.5; | ||
162 | + -webkit-appearance: none; | ||
163 | + -moz-appearance: none; | ||
164 | + text-indent: 0.01px; | ||
165 | + text-overflow: ''; | ||
166 | + font-size: 12px; | ||
167 | + appearance: none; | ||
168 | + cursor: text; | ||
169 | +} | ||
170 | + | ||
171 | +.i3geoFormIconeAquarela input{ | ||
172 | + width: 80%; | ||
173 | +} | ||
174 | + | ||
175 | +/*hack opera */ | ||
176 | +@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
177 | + (-webkit-min-device-pixel-ratio:0) { | ||
178 | + .inputsb { | ||
179 | + border: 1px solid black | ||
180 | + } | ||
181 | +} | ||
182 | + | ||
1 | /* | 183 | /* |
2 | para nao selecionar | 184 | para nao selecionar |
3 | */ | 185 | */ |
@@ -8,13 +190,7 @@ para nao selecionar | @@ -8,13 +190,7 @@ para nao selecionar | ||
8 | -o-user-select: none; | 190 | -o-user-select: none; |
9 | user-select: none; | 191 | user-select: none; |
10 | } | 192 | } |
11 | -input[type=text], textarea{ | ||
12 | - -webkit-user-select: text; | ||
13 | - -khtml-user-select: text; | ||
14 | - -moz-user-select: text; | ||
15 | - -o-user-select: text; | ||
16 | - user-select: text; | ||
17 | -} | 193 | + |
18 | /* | 194 | /* |
19 | Para nao marcar links | 195 | Para nao marcar links |
20 | */ | 196 | */ |
@@ -641,43 +817,6 @@ td { | @@ -641,43 +817,6 @@ td { | ||
641 | font-family: Verdana, Arial, Helvetica, sans-serif; | 817 | font-family: Verdana, Arial, Helvetica, sans-serif; |
642 | } | 818 | } |
643 | 819 | ||
644 | -input { | ||
645 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
646 | - font-size: 10px; | ||
647 | - color: #2F4632; | ||
648 | - background-color: #FFFFFF; | ||
649 | - padding: 0; | ||
650 | - border: 1px solid rgb(180, 180, 180); | ||
651 | - text-align: center; | ||
652 | - cursor: text; | ||
653 | -} | ||
654 | - | ||
655 | -input[type=checkbox] { | ||
656 | - border: 0px solid white; | ||
657 | -} | ||
658 | - | ||
659 | -input[type=file] { | ||
660 | - border: 0px solid white; | ||
661 | - background-color: none; | ||
662 | - background: none; | ||
663 | -} | ||
664 | - | ||
665 | -select { | ||
666 | - box-shadow: 1px 1px 3px 0 lightgray; | ||
667 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
668 | - font-size: 10px; | ||
669 | - color: #2F4632; | ||
670 | - background-color: #FFFFFF; | ||
671 | - padding: 0; | ||
672 | - border: 1px solid rgb(230, 230, 230); | ||
673 | - text-align: left; | ||
674 | - cursor: pointer; | ||
675 | -} | ||
676 | - | ||
677 | -select option:hover { | ||
678 | - background-color: #CCFFFF; | ||
679 | -} | ||
680 | - | ||
681 | .ajuda_usuario { | 820 | .ajuda_usuario { |
682 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); | 821 | background-image: url(../imagens/oxygen/16x16/dialog-information.png); |
683 | background-position: 0px 0px; | 822 | background-position: 0px 0px; |
@@ -712,17 +851,6 @@ select option:hover { | @@ -712,17 +851,6 @@ select option:hover { | ||
712 | font-size: 10px; | 851 | font-size: 10px; |
713 | } | 852 | } |
714 | 853 | ||
715 | -.inputsb { | ||
716 | - font-family: Verdana, Arial, Helvetica, sans-serif; | ||
717 | - font-size: 10px; | ||
718 | - color: #2F4632; | ||
719 | - background-color: #FFFFFF; | ||
720 | - padding: 0; | ||
721 | - border: 0px solid gray; | ||
722 | - text-align: center; | ||
723 | - cursor: text; | ||
724 | -} | ||
725 | - | ||
726 | .legendatemas { | 854 | .legendatemas { |
727 | cursor: pointer; | 855 | cursor: pointer; |
728 | text-align: left; | 856 | text-align: left; |
@@ -933,6 +1061,7 @@ select option:hover { | @@ -933,6 +1061,7 @@ select option:hover { | ||
933 | .digitar input { | 1061 | .digitar input { |
934 | border: 1px solid rgb(180, 180, 180); | 1062 | border: 1px solid rgb(180, 180, 180); |
935 | } | 1063 | } |
1064 | + | ||
936 | .digitarOver { | 1065 | .digitarOver { |
937 | margin: 0px; | 1066 | margin: 0px; |
938 | color: #426252; | 1067 | color: #426252; |
@@ -1385,110 +1514,6 @@ h1 { | @@ -1385,110 +1514,6 @@ h1 { | ||
1385 | } | 1514 | } |
1386 | } | 1515 | } |
1387 | 1516 | ||
1388 | -.styled-select input, .styled-select150 input { | ||
1389 | - width: 100%; | ||
1390 | - height: 22px; | ||
1391 | - border: 0; | ||
1392 | - box-shadow: none; | ||
1393 | - line-height: 1.5; | ||
1394 | - -webkit-appearance: none; | ||
1395 | - -moz-appearance: none; | ||
1396 | - text-indent: 0.01px; | ||
1397 | - text-overflow: ''; | ||
1398 | - font-size: 12px; | ||
1399 | - appearance: none; | ||
1400 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1401 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1402 | - (min-resolution: 192dpi) { | ||
1403 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
1404 | - background-size: 16px 144px; | ||
1405 | - } | ||
1406 | -} | ||
1407 | - | ||
1408 | -.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
1409 | - width: 252px; | ||
1410 | - overflow: hidden; | ||
1411 | - background: #F8F8F8; | ||
1412 | - border: 1px solid #DDDDDD; | ||
1413 | - height: 22px; | ||
1414 | - border-radius: 2px; | ||
1415 | -} | ||
1416 | - | ||
1417 | -.i3geoForm150 { | ||
1418 | - width: 150px; | ||
1419 | -} | ||
1420 | - | ||
1421 | -.i3geoForm100 { | ||
1422 | - width: 100px; | ||
1423 | -} | ||
1424 | - | ||
1425 | -.i3geoFormIconeEdita { | ||
1426 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1427 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1428 | - (min-resolution: 192dpi) { | ||
1429 | - background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
1430 | - background-size: 16px 144px; | ||
1431 | - } | ||
1432 | -} | ||
1433 | - | ||
1434 | -.i3geoFormSemIcone { | ||
1435 | - background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1436 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1437 | - (min-resolution: 192dpi) { | ||
1438 | - background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
1439 | - background-size: 16px 144px; | ||
1440 | - } | ||
1441 | -} | ||
1442 | - | ||
1443 | -.i3geoFormTag { | ||
1444 | - background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1445 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1446 | - (min-resolution: 192dpi) { | ||
1447 | - background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
1448 | - background-size: 16px 144px; | ||
1449 | - } | ||
1450 | - border-radius: 8px; | ||
1451 | - background-color: #F0F0F0; | ||
1452 | - cursor: pointer; | ||
1453 | -} | ||
1454 | - | ||
1455 | -.i3geoFormIconeAquarela { | ||
1456 | - cursor: pointer; | ||
1457 | - background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
1458 | - @media (-webkit-min-device-pixel-ratio: 2), | ||
1459 | - (min-resolution: 192dpi) { | ||
1460 | - background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
1461 | - background-size: 16px 144px; | ||
1462 | - } | ||
1463 | - | ||
1464 | -} | ||
1465 | - | ||
1466 | -.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
1467 | - width: 90%; | ||
1468 | - height: 22px; | ||
1469 | - border: 0; | ||
1470 | - box-shadow: none; | ||
1471 | - line-height: 1.5; | ||
1472 | - -webkit-appearance: none; | ||
1473 | - -moz-appearance: none; | ||
1474 | - text-indent: 0.01px; | ||
1475 | - text-overflow: ''; | ||
1476 | - font-size: 12px; | ||
1477 | - appearance: none; | ||
1478 | - cursor: text; | ||
1479 | -} | ||
1480 | - | ||
1481 | -.i3geoFormIconeAquarela input{ | ||
1482 | - width: 80%; | ||
1483 | -} | ||
1484 | - | ||
1485 | -/*hack opera */ | ||
1486 | -@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
1487 | - (-webkit-min-device-pixel-ratio:0) { | ||
1488 | - .inputsb { | ||
1489 | - border: 1px solid black | ||
1490 | - } | ||
1491 | -} | ||
1492 | /* esconde na impressao */ | 1517 | /* esconde na impressao */ |
1493 | @media print { | 1518 | @media print { |
1494 | .noprint { | 1519 | .noprint { |
@@ -0,0 +1,181 @@ | @@ -0,0 +1,181 @@ | ||
1 | +input{ | ||
2 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
3 | +} | ||
4 | +input[type=text], textarea{ | ||
5 | + -webkit-user-select: text; | ||
6 | + -khtml-user-select: text; | ||
7 | + -moz-user-select: text; | ||
8 | + -o-user-select: text; | ||
9 | + user-select: text; | ||
10 | +} | ||
11 | + | ||
12 | +input[type=text] { | ||
13 | + font-size: 10px; | ||
14 | + color: #2F4632; | ||
15 | + background-color: #FFFFFF; | ||
16 | + padding: 0; | ||
17 | + border: 1px solid rgb(180, 180, 180); | ||
18 | + text-align: center; | ||
19 | + cursor: text; | ||
20 | + height: 22px; | ||
21 | +} | ||
22 | + | ||
23 | +input[type=checkbox] { | ||
24 | + border: 0px solid white; | ||
25 | +} | ||
26 | + | ||
27 | +input[type=file] { | ||
28 | + border: 0px solid white; | ||
29 | + background-color: none; | ||
30 | + background: none; | ||
31 | +} | ||
32 | + | ||
33 | +select { | ||
34 | + box-shadow: 1px 1px 3px 0 lightgray; | ||
35 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
36 | + font-size: 10px; | ||
37 | + color: #2F4632; | ||
38 | + background-color: #FFFFFF; | ||
39 | + padding: 0; | ||
40 | + border: 1px solid rgb(230, 230, 230); | ||
41 | + text-align: left; | ||
42 | + cursor: pointer; | ||
43 | +} | ||
44 | + | ||
45 | +select option:hover { | ||
46 | + background-color: #CCFFFF; | ||
47 | +} | ||
48 | + | ||
49 | +.inputsb { | ||
50 | + font-family: Verdana, Arial, Helvetica, sans-serif; | ||
51 | + font-size: 10px; | ||
52 | + color: #2F4632; | ||
53 | + background-color: #FFFFFF; | ||
54 | + padding: 0; | ||
55 | + border: 0px solid gray; | ||
56 | + text-align: center; | ||
57 | + cursor: text; | ||
58 | +} | ||
59 | + | ||
60 | +.styled-select input, .styled-select150 input { | ||
61 | + width: 100%; | ||
62 | + height: 22px; | ||
63 | + border: 0; | ||
64 | + box-shadow: none; | ||
65 | + line-height: 1.5; | ||
66 | + -webkit-appearance: none; | ||
67 | + -moz-appearance: none; | ||
68 | + text-indent: 0.01px; | ||
69 | + text-overflow: ''; | ||
70 | + font-size: 12px; | ||
71 | + appearance: none; | ||
72 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
73 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
74 | + (min-resolution: 192dpi) { | ||
75 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 97% 5px; | ||
76 | + background-size: 16px 144px; | ||
77 | + } | ||
78 | +} | ||
79 | + | ||
80 | +.i3geoForm, .i3geoForm150, .i3geoForm100 { | ||
81 | + width: 252px; | ||
82 | + overflow: hidden; | ||
83 | + background: #F8F8F8; | ||
84 | + border: 1px solid #DDDDDD; | ||
85 | + height: 22px; | ||
86 | + border-radius: 2px; | ||
87 | +} | ||
88 | + | ||
89 | +.i3geoForm150 { | ||
90 | + width: 150px; | ||
91 | +} | ||
92 | + | ||
93 | +.i3geoForm100 { | ||
94 | + width: 100px; | ||
95 | +} | ||
96 | + | ||
97 | +.i3geoFormIconeEdita { | ||
98 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
99 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
100 | + (min-resolution: 192dpi) { | ||
101 | + background: transparent url("../imagens/gisicons/edit2.png") no-repeat scroll 100% 5px; | ||
102 | + background-size: 16px 144px; | ||
103 | + } | ||
104 | +} | ||
105 | + | ||
106 | +.i3geoFormIconeUsuario { | ||
107 | + background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
108 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
109 | + (min-resolution: 192dpi) { | ||
110 | + background: transparent url("../imagens/oxygen/22x22/system-users.png") no-repeat scroll 100% 0px; | ||
111 | + background-size: 16px 144px; | ||
112 | + } | ||
113 | +} | ||
114 | + | ||
115 | +.i3geoFormIconeSenha { | ||
116 | + background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
117 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
118 | + (min-resolution: 192dpi) { | ||
119 | + background: transparent url("../imagens/oxygen/22x22/preferences-desktop-user-password.png") no-repeat scroll 100% 0px; | ||
120 | + background-size: 16px 144px; | ||
121 | + } | ||
122 | +} | ||
123 | + | ||
124 | +.i3geoFormSemIcone { | ||
125 | + background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
126 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
127 | + (min-resolution: 192dpi) { | ||
128 | + background: transparent url("../imagens/branco.gif") no-repeat scroll 100% 5px; | ||
129 | + background-size: 16px 144px; | ||
130 | + } | ||
131 | +} | ||
132 | + | ||
133 | +.i3geoFormTag { | ||
134 | + background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
135 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
136 | + (min-resolution: 192dpi) { | ||
137 | + background: transparent url("../imagens/oxygen/16x16/list-remove.png") no-repeat scroll 100% 3px; | ||
138 | + background-size: 16px 144px; | ||
139 | + } | ||
140 | + border-radius: 8px; | ||
141 | + background-color: #F0F0F0; | ||
142 | + cursor: pointer; | ||
143 | +} | ||
144 | + | ||
145 | +.i3geoFormIconeAquarela { | ||
146 | + cursor: pointer; | ||
147 | + background: transparent url("../imagens/aquarela.gif") no-repeat scroll 98% 5px; | ||
148 | + @media (-webkit-min-device-pixel-ratio: 2), | ||
149 | + (min-resolution: 192dpi) { | ||
150 | + background: transparent url("../imagens/aquarela.gif") no-repeat scroll 100% 5px; | ||
151 | + background-size: 16px 144px; | ||
152 | + } | ||
153 | + | ||
154 | +} | ||
155 | + | ||
156 | +.i3geoForm input, .i3geoForm150 input, .i3geoForm100 input { | ||
157 | + width: 90%; | ||
158 | + height: 22px; | ||
159 | + border: 0; | ||
160 | + box-shadow: none; | ||
161 | + line-height: 1.5; | ||
162 | + -webkit-appearance: none; | ||
163 | + -moz-appearance: none; | ||
164 | + text-indent: 0.01px; | ||
165 | + text-overflow: ''; | ||
166 | + font-size: 12px; | ||
167 | + appearance: none; | ||
168 | + cursor: text; | ||
169 | +} | ||
170 | + | ||
171 | +.i3geoFormIconeAquarela input{ | ||
172 | + width: 80%; | ||
173 | +} | ||
174 | + | ||
175 | +/*hack opera */ | ||
176 | +@media all and (-webkit-min-device-pixel-ratio:10000) , not all and | ||
177 | + (-webkit-min-device-pixel-ratio:0) { | ||
178 | + .inputsb { | ||
179 | + border: 1px solid black | ||
180 | + } | ||
181 | +} |
ferramentas/aplicarsld/upload.php
@@ -13,6 +13,7 @@ $postgis_mapa = $_SESSION["postgis_mapa"]; | @@ -13,6 +13,7 @@ $postgis_mapa = $_SESSION["postgis_mapa"]; | ||
13 | ?> | 13 | ?> |
14 | <html> | 14 | <html> |
15 | <head> | 15 | <head> |
16 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
16 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 17 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
17 | <title></title> | 18 | <title></title> |
18 | </head> | 19 | </head> |
ferramentas/bufferpt/index.js
@@ -64,7 +64,6 @@ i3GEOF.bufferpt = { | @@ -64,7 +64,6 @@ i3GEOF.bufferpt = { | ||
64 | */ | 64 | */ |
65 | mustacheHash : function() { | 65 | mustacheHash : function() { |
66 | var dicionario = i3GEO.idioma.objetoIdioma(i3GEOF.bufferpt.dicionario); | 66 | var dicionario = i3GEO.idioma.objetoIdioma(i3GEOF.bufferpt.dicionario); |
67 | - dicionario["distancia"] = $inputText('','','i3GEOFbufferptDistancia','',10,0); | ||
68 | dicionario["x"] = i3GEOF.bufferpt.x; | 67 | dicionario["x"] = i3GEOF.bufferpt.x; |
69 | dicionario["y"] = i3GEOF.bufferpt.y; | 68 | dicionario["y"] = i3GEOF.bufferpt.y; |
70 | return dicionario; | 69 | return dicionario; |
@@ -139,7 +138,7 @@ i3GEOF.bufferpt = { | @@ -139,7 +138,7 @@ i3GEOF.bufferpt = { | ||
139 | titulo = "<div class='i3GeoTituloJanela'>" + $trad("u10")+"<a class=ajuda_usuario target=_blank href='" + i3GEO.configura.locaplic + "/ajuda_usuario.php?idcategoria=24&idajuda=3' ><b> </b></a></div>"; | 138 | titulo = "<div class='i3GeoTituloJanela'>" + $trad("u10")+"<a class=ajuda_usuario target=_blank href='" + i3GEO.configura.locaplic + "/ajuda_usuario.php?idcategoria=24&idajuda=3' ><b> </b></a></div>"; |
140 | janela = i3GEO.janela.cria( | 139 | janela = i3GEO.janela.cria( |
141 | "290px", | 140 | "290px", |
142 | - "110px", | 141 | + "130px", |
143 | "", | 142 | "", |
144 | "", | 143 | "", |
145 | "", | 144 | "", |
ferramentas/bufferpt/template_mst.html
1 | <p class='paragrafo'>{{{entorno}}}</p> | 1 | <p class='paragrafo'>{{{entorno}}}</p> |
2 | -{{{distancia}}} | ||
3 | -<br> | 2 | +<div class='i3geoForm i3geoFormIconeEdita'> |
3 | +<input id='i3GEOFbufferptDistancia' type=text value='' /> | ||
4 | +</div> | ||
4 | <br> | 5 | <br> |
5 | <p class='paragrafo'> | 6 | <p class='paragrafo'> |
6 | <input id='i3GEObufferptbotao1' size='16' type='button' value='{{{criaEntorno}}}' /> | 7 | <input id='i3GEObufferptbotao1' size='16' type='button' value='{{{criaEntorno}}}' /> |
7 | -</p> | 8 | +<br> |
9 | +<p class='paragrafo'> | ||
8 | <b>X:</b> {{{x}}} <b>Y:</b> {{{y}}} | 10 | <b>X:</b> {{{x}}} <b>Y:</b> {{{y}}} |
9 | \ No newline at end of file | 11 | \ No newline at end of file |
ferramentas/carregamapa/upload.php
@@ -12,6 +12,7 @@ $postgis_mapa = $_SESSION["postgis_mapa"]; | @@ -12,6 +12,7 @@ $postgis_mapa = $_SESSION["postgis_mapa"]; | ||
12 | ?> | 12 | ?> |
13 | <html> | 13 | <html> |
14 | <head> | 14 | <head> |
15 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
15 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 16 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
16 | <title></title> | 17 | <title></title> |
17 | </head> | 18 | </head> |
ferramentas/importarwmc/upload.php
@@ -10,6 +10,7 @@ $map_file = $_SESSION["map_file"]; | @@ -10,6 +10,7 @@ $map_file = $_SESSION["map_file"]; | ||
10 | ?> | 10 | ?> |
11 | <html> | 11 | <html> |
12 | <head> | 12 | <head> |
13 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
13 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 14 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
14 | <title></title> | 15 | <title></title> |
15 | </head> | 16 | </head> |
ferramentas/imprimir/a4l.htm
1 | <html> | 1 | <html> |
2 | <head> | 2 | <head> |
3 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
3 | <link rel="stylesheet" type="text/css" href="../../css/geral.css"> | 4 | <link rel="stylesheet" type="text/css" href="../../css/geral.css"> |
4 | <link rel="stylesheet" type="text/css" href="../../css/botoes2.css"> | 5 | <link rel="stylesheet" type="text/css" href="../../css/botoes2.css"> |
5 | </head> | 6 | </head> |
ferramentas/imprimir/a4p.htm
1 | <html> | 1 | <html> |
2 | <head> | 2 | <head> |
3 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
3 | <link rel="stylesheet" type="text/css" href="../../css/geral.css"> | 4 | <link rel="stylesheet" type="text/css" href="../../css/geral.css"> |
4 | <link rel="stylesheet" type="text/css" href="../../css/botoes2.css"> | 5 | <link rel="stylesheet" type="text/css" href="../../css/botoes2.css"> |
5 | </head> | 6 | </head> |
ferramentas/loginusuario/index.js
@@ -113,11 +113,15 @@ i3GEOF.loginusuario = { | @@ -113,11 +113,15 @@ i3GEOF.loginusuario = { | ||
113 | usuario = ""; | 113 | usuario = ""; |
114 | } | 114 | } |
115 | ins = '<div style=width:90%;margin:auto; ><p class="paragrafo" >'+$trad("x30")+': <b><i>'+u+"</i></b>" + | 115 | ins = '<div style=width:90%;margin:auto; ><p class="paragrafo" >'+$trad("x30")+': <b><i>'+u+"</i></b>" + |
116 | - '<p class="paragrafo" >'+$trad("x27")+':<br>' + | ||
117 | - '<input id=i3geousuario type=text style="width:200px;" value="'+usuario+'"/>' + | ||
118 | - '<p class="paragrafo" >'+$trad("x28")+':<br>' + | ||
119 | - '<input id=i3geosenha type=password style="width:200px;" value=""/><br>' + | ||
120 | - '<p class="paragrafo" ><input id=i3GEOFloginusuario size=20 type=button value="'+$trad("x29")+'" /> <input id=i3GEOFlogoutusuario size=20 type=button value="Logout" />' + | 116 | + '<p class="paragrafo" >'+$trad("x27")+':</p>' + |
117 | + '<div class="i3geoForm i3geoFormIconeUsuario">' + | ||
118 | + '<input id=i3geousuario type=text value="'+usuario+'"/>' + | ||
119 | + '</div>' + | ||
120 | + '<br><p class="paragrafo" >'+$trad("x28")+':</p>' + | ||
121 | + '<div class="i3geoForm i3geoFormIconeSenha">' + | ||
122 | + '<input id=i3geosenha type=password value=""/><br>' + | ||
123 | + '</div>' + | ||
124 | + '<br><p class="paragrafo" ><input id=i3GEOFloginusuario size=20 type=button value="'+$trad("x29")+'" /> <input id=i3GEOFlogoutusuario size=20 type=button value="Logout" />' + | ||
121 | '<p class="paragrafo" onclick="i3GEOF.loginusuario.recuperarSenha()" style="cursor:pointer;color:blue;">'+$trad("x32")+'</p>' + | 125 | '<p class="paragrafo" onclick="i3GEOF.loginusuario.recuperarSenha()" style="cursor:pointer;color:blue;">'+$trad("x32")+'</p>' + |
122 | '<p class="paragrafo" onclick="i3GEOF.loginusuario.alterarSenha()" style="cursor:pointer;color:blue;">'+$trad("x52")+'</p>' + | 126 | '<p class="paragrafo" onclick="i3GEOF.loginusuario.alterarSenha()" style="cursor:pointer;color:blue;">'+$trad("x52")+'</p>' + |
123 | '</div>'; | 127 | '</div>'; |
ferramentas/tabela/relatorio.php
@@ -291,7 +291,7 @@ function calculaarea($geo) | @@ -291,7 +291,7 @@ function calculaarea($geo) | ||
291 | $g = $geo->towkt(); | 291 | $g = $geo->towkt(); |
292 | $shape = ms_shapeObjFromWkt($g); | 292 | $shape = ms_shapeObjFromWkt($g); |
293 | $rect = $shape->bounds; | 293 | $rect = $shape->bounds; |
294 | - $projInObj = ms_newprojectionobj("proj=latlong"); | 294 | + $projInObj = ms_newprojectionobj("proj=longlat,ellps=WGS84,datum=WGS84,no_defs"); |
295 | $projOutObj = ms_newprojectionobj("proj=laea,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=500000,y_0=10000000,ellps=GRS67,units=m,no_defs"); | 295 | $projOutObj = ms_newprojectionobj("proj=laea,lat_0=".$rect->miny.",lon_0=".$rect->minx.",x_0=500000,y_0=10000000,ellps=GRS67,units=m,no_defs"); |
296 | $shape->project($projInObj, $projOutObj); | 296 | $shape->project($projInObj, $projOutObj); |
297 | $s = $shape->towkt(); | 297 | $s = $shape->towkt(); |
ferramentas/upload/upload.php
@@ -19,6 +19,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -19,6 +19,7 @@ if (ob_get_level() == 0) ob_start(); | ||
19 | <html> | 19 | <html> |
20 | <head> | 20 | <head> |
21 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> | 21 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> |
22 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
22 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 23 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
23 | <script src="../../classesjs/classe_util.js"></script> | 24 | <script src="../../classesjs/classe_util.js"></script> |
24 | <title></title> | 25 | <title></title> |
ferramentas/uploaddbf/upload.php
@@ -13,6 +13,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -13,6 +13,7 @@ if (ob_get_level() == 0) ob_start(); | ||
13 | ?> | 13 | ?> |
14 | <html> | 14 | <html> |
15 | <head> | 15 | <head> |
16 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
16 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 17 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
17 | <title></title> | 18 | <title></title> |
18 | </head> | 19 | </head> |
ferramentas/uploadgpx/upload.php
@@ -14,6 +14,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -14,6 +14,7 @@ if (ob_get_level() == 0) ob_start(); | ||
14 | ?> | 14 | ?> |
15 | <html> | 15 | <html> |
16 | <head> | 16 | <head> |
17 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
17 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 18 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
18 | <title></title> | 19 | <title></title> |
19 | </head> | 20 | </head> |
ferramentas/uploadkml/upload.php
@@ -14,6 +14,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -14,6 +14,7 @@ if (ob_get_level() == 0) ob_start(); | ||
14 | ?> | 14 | ?> |
15 | <html> | 15 | <html> |
16 | <head> | 16 | <head> |
17 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
17 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 18 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
18 | <title></title> | 19 | <title></title> |
19 | </head> | 20 | </head> |
ferramentas/uploadsimbolo/upload.php
@@ -12,6 +12,7 @@ if (ob_get_level() == 0) ob_start(); | @@ -12,6 +12,7 @@ if (ob_get_level() == 0) ob_start(); | ||
12 | <html> | 12 | <html> |
13 | <head> | 13 | <head> |
14 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> | 14 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> |
15 | +<link rel="stylesheet" type="text/css" href="../../css/input.css" /> | ||
15 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> | 16 | <link rel="stylesheet" type="text/css" href="../../css/geral.css" /> |
16 | <title></title> | 17 | <title></title> |
17 | </head> | 18 | </head> |
geradordelinks.htm
@@ -6,6 +6,7 @@ | @@ -6,6 +6,7 @@ | ||
6 | <meta name="description" content="Mapa interativo do MMA"> | 6 | <meta name="description" content="Mapa interativo do MMA"> |
7 | <meta name="keywords" content="WMS OGC mapa sig gis webmapping geo geoprocessamento interativo meio ambiente MMA cartografia geografia"> | 7 | <meta name="keywords" content="WMS OGC mapa sig gis webmapping geo geoprocessamento interativo meio ambiente MMA cartografia geografia"> |
8 | <meta name="robots" content="index,follow"> | 8 | <meta name="robots" content="index,follow"> |
9 | +<link rel="stylesheet" type="text/css" href="css/input.css" /> | ||
9 | <link rel="stylesheet" type="text/css" href="css/geral.css"> | 10 | <link rel="stylesheet" type="text/css" href="css/geral.css"> |
10 | <script type="text/javascript" src="classesjs/i3geo.js"></script> | 11 | <script type="text/javascript" src="classesjs/i3geo.js"></script> |
11 | <script type="text/javascript" src="classesjs/geradordelinks.js"></script> | 12 | <script type="text/javascript" src="classesjs/geradordelinks.js"></script> |
1.08 KB
1.11 KB
js/compactajs.php
@@ -211,6 +211,7 @@ salvatudojs($jsfiles,$buffer,"i3geo_tudo_compacto7.js","js"); | @@ -211,6 +211,7 @@ salvatudojs($jsfiles,$buffer,"i3geo_tudo_compacto7.js","js"); | ||
211 | // | 211 | // |
212 | 212 | ||
213 | $cssfiles = array( | 213 | $cssfiles = array( |
214 | +"../css/input.css", | ||
214 | "../css/geral.css", | 215 | "../css/geral.css", |
215 | "../css/botoes2.css", | 216 | "../css/botoes2.css", |
216 | "../css/documentation.css", | 217 | "../css/documentation.css", |
@@ -237,6 +238,7 @@ $buffer = ""; | @@ -237,6 +238,7 @@ $buffer = ""; | ||
237 | salvatudojs($cssfiles,$buffer,"../css/i3geo7.css","css"); | 238 | salvatudojs($cssfiles,$buffer,"../css/i3geo7.css","css"); |
238 | //css das ferramentas | 239 | //css das ferramentas |
239 | $cssfiles = array( | 240 | $cssfiles = array( |
241 | +"../css/input.css", | ||
240 | "../css/geral.css", | 242 | "../css/geral.css", |
241 | "../css/button.css", | 243 | "../css/button.css", |
242 | "../css/ferramentas.css", | 244 | "../css/ferramentas.css", |
js/i3geonaocompacto.js
@@ -77,6 +77,7 @@ | @@ -77,6 +77,7 @@ | ||
77 | //css | 77 | //css |
78 | var allCssTags = ""; | 78 | var allCssTags = ""; |
79 | var cssfiles = new Array( | 79 | var cssfiles = new Array( |
80 | + "../css/input.css", | ||
80 | "../css/geral.css", | 81 | "../css/geral.css", |
81 | "../css/botoes2.css", | 82 | "../css/botoes2.css", |
82 | "../css/documentation.css", | 83 | "../css/documentation.css", |