diff options
author | Simon <simon@kisikew.org> | 2012-04-07 20:47:37 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-04-07 20:47:37 -0700 |
commit | e3b2ac0735c908357dafb8670339fd34d3e2e6c0 (patch) | |
tree | 1d7e5f2b575b8836fefe76660f466cb176585d5c /view/theme/dispy | |
parent | f931d5c918fa3146afa851a4f32c90a35ee1c85b (diff) | |
parent | 01961f7caa8e6c8ecaaaad9d28c61883863eab68 (diff) | |
download | volse-hubzilla-e3b2ac0735c908357dafb8670339fd34d3e2e6c0.tar.gz volse-hubzilla-e3b2ac0735c908357dafb8670339fd34d3e2e6c0.tar.bz2 volse-hubzilla-e3b2ac0735c908357dafb8670339fd34d3e2e6c0.zip |
Merge pull request #213 from simonlnu/master
minor dispy* fixes
Diffstat (limited to 'view/theme/dispy')
-rw-r--r-- | view/theme/dispy/style.css | 7 | ||||
-rw-r--r-- | view/theme/dispy/theme.php | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index f8287c6ec..622cf5734 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -63,8 +63,8 @@ option { color: #222; background: #efefef; } -li { - padding: 0 0 0 2px; +ul, ol { + padding: 0; } /* remember to define focus styles! */ :focus { @@ -2603,7 +2603,8 @@ div[id$="wrapper"] br { } .icon.drop, .icon.drophide, .icon.delete { - float: left; + float: right; + margin: 5px; } .icon.s22.delete { display: block; diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php index f3c54caf9..d0f6797cb 100644 --- a/view/theme/dispy/theme.php +++ b/view/theme/dispy/theme.php @@ -9,6 +9,10 @@ * Screenshot: <a href="screenshot.jpg">Screenshot</a> */ +$a->theme_info = array( + 'extends' => 'dispy', +); + $a->page['htmlhead'] .= <<< EOT <script> $(document).ready(function() { |