diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2011-11-15 22:54:49 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2011-11-15 22:54:49 -0800 |
commit | 8a7969ad2e6189d1d536b9fd58ef9e53ed94b555 (patch) | |
tree | 6ec98c69ee1254f3b1769971d5a3618ff0d90cab /css/tutorial.css | |
parent | 147d60865d5fdbd9a867c645c6bbde4c1256a93f (diff) | |
download | pathery-8a7969ad2e6189d1d536b9fd58ef9e53ed94b555.tar.xz |
Locking and Unlocking for the "Next" button in tutorial.
Diffstat (limited to 'css/tutorial.css')
-rw-r--r-- | css/tutorial.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/css/tutorial.css b/css/tutorial.css index 5c7e9ae..971bfce 100644 --- a/css/tutorial.css +++ b/css/tutorial.css @@ -16,11 +16,19 @@ a.next { box-shadow: 0 0 1px #445; float: right; margin: 0 10px; + cursor: pointer; } a.next:hover { background-color: #446; border: 1px solid #223; } +a.next.disabled, a.next.disabled:hover { + color: #447; + background-color: #557; + border: 1px solid #446; + cursor: default; +} + .hidden { display: none; |