summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authoropensaucesystems <ashley@opensaucesystems.com>2013-06-04 16:04:29 +0200
committeropensaucesystems <ashley@opensaucesystems.com>2013-06-04 16:04:29 +0200
commitd987bea6354af7030e6dc8db5df3f71762d30802 (patch)
tree6e113e930bfb0ecd6c5e849cd84ca021bc1eb3e2 /core
parent4976f2e0d363e980a90745bb2e2cb93d5dd2f5cb (diff)
downloadnextcloud-server-d987bea6354af7030e6dc8db5df3f71762d30802.tar.gz
nextcloud-server-d987bea6354af7030e6dc8db5df3f71762d30802.zip
Added input[type="url"] to styles.css
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 78671a7bc11..313f89195df 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -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;