Added input[type="url"] to styles.css
This commit is contained in:
parent
4976f2e0d3
commit
d987bea635
|
@ -37,7 +37,7 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC
|
|||
|
||||
|
||||
/* INPUTS */
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"],
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"],
|
||||
textarea, select,
|
||||
button, .button,
|
||||
#quota, div.jp-progress, .pager li a {
|
||||
|
@ -48,11 +48,11 @@ button, .button,
|
|||
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
|
||||
}
|
||||
input[type="hidden"] { height:0; width:0; }
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea {
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea {
|
||||
background:#f8f8f8; color:#555; cursor:text;
|
||||
font-family: inherit; /* use default ownCloud font instead of default textarea monospace */
|
||||
}
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] {
|
||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"] {
|
||||
-webkit-appearance:textfield; -moz-appearance:textfield;
|
||||
-webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box;
|
||||
}
|
||||
|
@ -61,6 +61,7 @@ input[type="password"]:hover, input[type="password"]:focus, input[type="password
|
|||
input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:active,
|
||||
.searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
|
||||
input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active,
|
||||
input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active,
|
||||
textarea:hover, textarea:focus, textarea:active {
|
||||
background-color:#fff; color:#333;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1;
|
||||
|
|
Loading…
Reference in New Issue