diff options
author | shadlaws <shad@shadlaws.com> | 2013-03-02 23:00:02 +0100 |
---|---|---|
committer | shadlaws <shad@shadlaws.com> | 2013-03-02 23:00:02 +0100 |
commit | 73139982c7be10789c27360913b4bc4cbd5cd38e (patch) | |
tree | 806a1f95936c0952cfa1740eae2eccc534c5d46e /themes | |
parent | 0d05e91cd3c5050c25133c864f8b789f499d8e17 (diff) |
#2032 - Fix short form submit/cancel button formatting.
- fixed the height of the submit buttons to match the input box
- changed the cancel links into cancel buttons
- added the hover effect to the buttons when used in in_place_edit (e.g. admin/tags)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/admin_wind/css/screen.css | 7 | ||||
-rw-r--r-- | themes/wind/css/screen.css | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css index 23d319b2..1deb3cda 100644 --- a/themes/admin_wind/css/screen.css +++ b/themes/admin_wind/css/screen.css @@ -255,6 +255,10 @@ input[readonly] { width: 100%; } +.g-short-form .submit { + padding: .3em .6em; +} + .g-short-form .textbox.g-error { border: 1px solid #f00; color: #f00; @@ -263,7 +267,8 @@ input[readonly] { .g-short-form .g-cancel { display: block; - margin: .3em .8em; + margin: 0em .8em; + padding: .3em .6em; } #g-sidebar .g-short-form li { diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index c088180d..7ef8e2e4 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -276,6 +276,10 @@ input[readonly] { width: 100%; } +.g-short-form .submit { + padding: .3em .6em; +} + .g-short-form .textbox.g-error { border: 1px solid #f00; color: #f00; @@ -284,7 +288,8 @@ input[readonly] { .g-short-form .g-cancel { display: block; - margin: .3em .8em; + margin: 0em .8em; + padding: .3em .6em; } #g-sidebar .g-short-form li { |