diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-12 11:03:30 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-12 11:03:30 +0000 |
commit | 2165c39e8e014061329c6d28351a8d6746f82e0b (patch) | |
tree | e5378ad1da7fb29bb74c6e1c22074e4bb0b12e83 /views | |
parent | c9c47ef313fd26b78ebc81dfb92810240632ae12 (diff) | |
download | elgg-2165c39e8e014061329c6d28351a8d6746f82e0b.tar.gz elgg-2165c39e8e014061329c6d28351a8d6746f82e0b.tar.bz2 |
Added disabled class to submit_button
git-svn-id: http://code.elgg.org/elgg/trunk@6696 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/views/default/css.php b/views/default/css.php index 311901ad2..8cfa5d420 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1181,6 +1181,16 @@ a.longtext_control { background-repeat: repeat-x; background-position: left 10px; } +.submit_button.disabled { + background-color:#999999; + border-color:#999999; + color:#dedede; +} +.submit_button.disabled:hover { + background-color:#999999; + border-color:#999999; + color:#dedede; +} input[type="password"]:focus { border: solid 1px #4690d6; background-color: #e4ecf5; |