diff options
author | Simon <simon@kisikew.org> | 2012-04-20 17:19:49 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-04-20 17:19:49 -0700 |
commit | 7bae290aebcd7ecb5b7a21b64781bd50ccc76b41 (patch) | |
tree | dbd9b82448201ce88fb52b4915b1fdc009a8a173 | |
parent | 8809e96310048518ffdcc0ffd6a7faed112ab17a (diff) | |
parent | 7a14f459042d923aaa441d783ac84709b555a4d4 (diff) | |
download | volse-hubzilla-7bae290aebcd7ecb5b7a21b64781bd50ccc76b41.tar.gz volse-hubzilla-7bae290aebcd7ecb5b7a21b64781bd50ccc76b41.tar.bz2 volse-hubzilla-7bae290aebcd7ecb5b7a21b64781bd50ccc76b41.zip |
Merge pull request #255 from simonlnu/master
fix checkboxes and radio buttons for some browsers
-rw-r--r-- | view/theme/dispy-dark/style.css | 2 | ||||
-rw-r--r-- | view/theme/dispy/style.css | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/dispy-dark/style.css b/view/theme/dispy-dark/style.css index 100748ac4..1c7bf8f40 100644 --- a/view/theme/dispy-dark/style.css +++ b/view/theme/dispy-dark/style.css @@ -2546,6 +2546,8 @@ input[type="search"] { input[type="checkbox"], input[type="radio"] { border: 1px #999 solid; margin: 0 0 0 0; + height: 15px; + width: 15px; } input[type="submit"], input[type="button"] { background-color: #eee; diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 9af91bba6..8823bc81a 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -2547,6 +2547,8 @@ input[type="search"] { input[type="checkbox"], input[type="radio"] { border: 1px #999 solid; margin: 0 0 0 0; + height: 15px; + width: 15px; } input[type="submit"], input[type="button"] { background-color: #555753; |