Commit 931e4cbfcc1fe0e371f308c82746e23e1579aaa8

Authored by Edmar Moretti
1 parent c8e1b1b3

Correção na cópia para a memória de textos em textarea

css/geral.css
... ... @@ -8,7 +8,7 @@ para nao selecionar
8 8 -o-user-select: none;
9 9 user-select: none;
10 10 }
11   -.bd input {
  11 +.bd input, .bd textarea {
12 12 -webkit-user-select: text;
13 13 -khtml-user-select: text;
14 14 -moz-user-select: text;
... ...
css/i3geo6.css
... ... @@ -257,7 +257,7 @@ para nao selecionar
257 257 -o-user-select: none;
258 258 user-select: none;
259 259 }
260   -.bd input {
  260 +.bd input, .bd textarea {
261 261 -webkit-user-select: text;
262 262 -khtml-user-select: text;
263 263 -moz-user-select: text;
... ...
css/i3geo6.css.php
... ... @@ -257,7 +257,7 @@ para nao selecionar
257 257 -o-user-select: none;
258 258 user-select: none;
259 259 }
260   -.bd input {
  260 +.bd input, .bd textarea {
261 261 -webkit-user-select: text;
262 262 -khtml-user-select: text;
263 263 -moz-user-select: text;
... ...
css/i3geo_ferramentas6.css
... ... @@ -12,7 +12,7 @@ input[type=text], textarea, input[type=number],{
12 12 input[type=text] {
13 13 font-size: 10px;
14 14 color: #2F4632;
15   - background-color: #FFFFFF;
  15 + background-color: rgb(250, 250, 250);
16 16 padding: 0;
17 17 border: 1px solid rgb(180, 180, 180);
18 18 text-align: center;
... ... @@ -23,7 +23,7 @@ input[type=text] {
23 23 input[type=number] {
24 24 font-size: 12px;
25 25 color: #2F4632;
26   - background-color: #FFFFFF;
  26 + background-color: rgb(250, 250, 250);
27 27 padding: 0;
28 28 border: 1px solid rgb(180, 180, 180);
29 29 text-align: center;
... ... @@ -88,6 +88,12 @@ select option:hover {
88 88 }
89 89 }
90 90  
  91 +
  92 +.styled-select input:focus, .i3geoForm input:focus {
  93 + box-shadow: 0 0 1px blue inset;
  94 + background: white none repeat scroll 0 0;
  95 +}
  96 +
91 97 .i3geoForm, .i3geoForm150, .i3geoForm100 {
92 98 width: 252px;
93 99 overflow: hidden;
... ... @@ -281,7 +287,7 @@ para nao selecionar
281 287 -o-user-select: none;
282 288 user-select: none;
283 289 }
284   -.bd input {
  290 +.bd input, .bd textarea {
285 291 -webkit-user-select: text;
286 292 -khtml-user-select: text;
287 293 -moz-user-select: text;
... ...