diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 21:50:34 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 21:50:34 +0000 |
commit | d3b5a8a53771dee9788608d1a30135ca0fa7c6aa (patch) | |
tree | 3c6202684991301a68802d307bec9eb4308dcd88 /install | |
parent | d27572e839f8f5d035471ce79aa2c2797b9bd086 (diff) | |
download | elgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.gz elgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.bz2 |
Fixes #3109: added non-vendor-prefixed css property declarations where applicable. Cleaned up various other aspects of the css
git-svn-id: http://code.elgg.org/elgg/trunk@8703 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'install')
-rw-r--r-- | install/css/install.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/install/css/install.css b/install/css/install.css index f891dff6c..8dba57949 100644 --- a/install/css/install.css +++ b/install/css/install.css @@ -190,15 +190,18 @@ input[type="submit"] { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; - color: #ffffff; + color: #fff; background: #4690d6; border: 4px solid #4690d6; + -webkit-border-radius: 4px; -moz-border-radius: 4px; + border-radius: 4px; + width: auto; height: 35px; - padding: 2px 6px 2px 6px; - margin: 10px 0 10px 0; + padding: 2px 6px; + margin: 10px 0; cursor: pointer; float: right; } @@ -224,9 +227,12 @@ select { color: #ffffff; background: #4690d6; border: 4px solid #4690d6; + -webkit-border-radius: 4px; -moz-border-radius: 4px; - padding: 2px 9px 2px 9px; + border-radius: 4px; + + padding: 2px 9px; margin: 10px; cursor: pointer; float: right; |