diff options
Diffstat (limited to 'view/theme/darkbubble')
-rw-r--r-- | view/theme/darkbubble/dbicons.png | bin | 0 -> 19694 bytes | |||
-rw-r--r-- | view/theme/darkbubble/screenshot.jpg | bin | 0 -> 71056 bytes | |||
-rw-r--r-- | view/theme/darkbubble/style.css | 33 | ||||
-rw-r--r-- | view/theme/darkbubble/theme.php | 22 |
4 files changed, 55 insertions, 0 deletions
diff --git a/view/theme/darkbubble/dbicons.png b/view/theme/darkbubble/dbicons.png Binary files differnew file mode 100644 index 000000000..696ef779c --- /dev/null +++ b/view/theme/darkbubble/dbicons.png diff --git a/view/theme/darkbubble/screenshot.jpg b/view/theme/darkbubble/screenshot.jpg Binary files differnew file mode 100644 index 000000000..0d9af2c04 --- /dev/null +++ b/view/theme/darkbubble/screenshot.jpg diff --git a/view/theme/darkbubble/style.css b/view/theme/darkbubble/style.css new file mode 100644 index 000000000..9336dc01b --- /dev/null +++ b/view/theme/darkbubble/style.css @@ -0,0 +1,33 @@ +@import url('../testbubble/style.css'); + +.icon { + background-image: url('dbicons.png'); +} + +body { + background: #000000; + color: #dddddd; +} + +.info-message { + color: #444444; +} + +#id_openid_url { + background: url(../testbubble/login-bg.gif) no-repeat #ffffff; + background-position: 0 50%; + padding-left: 18px; + width: 385px; + color: #000000; +} + +.vevent, .eventcal { + color: #000000; +} +.event-list-date { + color: #DDDDDD; +} + +.fortunate { + color: #8888FF !important; +}
\ No newline at end of file diff --git a/view/theme/darkbubble/theme.php b/view/theme/darkbubble/theme.php new file mode 100644 index 000000000..053730c21 --- /dev/null +++ b/view/theme/darkbubble/theme.php @@ -0,0 +1,22 @@ +<?php + +/* + * Name: Dark Bubble + * Version: 1.0 + * Maintainer: Mike Macgirvin <mike@macgirvin.com> + */ + + +$a->theme_info = array( + 'extends' => 'testbubble', +); + + +$a->page['htmlhead'] .= <<< EOT +<script> +$(document).ready(function() { + +$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); +}); +</script> +EOT; |