Ciao,
qualcuno ha qualche indicazione da darmi per disabilitare l'effetto "pressed" su un button html.
Io al momento sto usando:
.button_blue {
margin-right: 1%;
background: #1a9cf5; /* Fallback */
background: -moz-linear-gradient(#1a9cf5, #2377df);
background: -ms-linear-gradient(#1a9cf5, #2377df);
background: -o-linear-gradient(#1a9cf5, #2377df);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#1a9cf5), to(#2377df));
background: -webkit-linear-gradient(#1a9cf5, #2377df);
background: linear-gradient(#1a9cf5, #2377df);
border: 1px solid #2b8bc7;
color: #ffffff;
text-shadow: 0 -1px rgba(0,0,0,0.3);
text-decoration: none;
text-transform:uppercase;
/* Size and position */
width: 8em;
height: 38px;
float: left;
position: relative;
margin: 15px 15px 15px 0;
/* Styles */
box-shadow: inset 0 1px rgba(255,255,255,0.3);
border-radius: 3px;
cursor: pointer;
/* Font styles */
font-family: 'Lato', Calibri, Arial, sans-serif;
font-size: 16px;
line-height: 38px; /* Same as height */
text-align: center;
font-weight: bold;
}
.button_blue:hover {
box-shadow: inset 0 1px rgba(255,255,255,0.3), inset 0 20px 40px rgba(255,255,255,0.15);
}
.button_blue:active {
top: 1px;
}
ps: ciao.

Rispondi quotando
