diff options
author | Simon | 2011-04-08 19:21:53 +0200 |
---|---|---|
committer | Simon | 2011-04-08 19:21:53 +0200 |
commit | 75f17f907f711a84b143c2274e9c1fbd1297ae00 (patch) | |
tree | 3f37b3eb5b505da6ae84dd0714ce768c8332c72d | |
parent | findby in Filter angepasst, Aktionsicons nur bei Berechtigung (diff) | |
download | pbs2-75f17f907f711a84b143c2274e9c1fbd1297ae00.tar.gz pbs2-75f17f907f711a84b143c2274e9c1fbd1297ae00.tar.xz pbs2-75f17f907f711a84b143c2274e9c1fbd1297ae00.zip |
Disabled oder Readonly-Elemente werden immer ausgegraut und haben den normalen Mauszeiger
-rw-r--r-- | public/media/css/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/media/css/style.css b/public/media/css/style.css index e843441..d1f3b28 100644 --- a/public/media/css/style.css +++ b/public/media/css/style.css @@ -368,6 +368,11 @@ dl.zend_form dd * { font-size: 12px; } +input[disabled], input[readonly], select[disabled], select[readonly], checkbox[disabled], checkbox[readonly], textarea[disabled], textarea[readonly] { + background-color: #EEE; + cursor: default; +} + tr.entry { background-color: #FFF5CC; } |