diff options
author | pb1dft <pb1dft@ampache> | 2007-02-22 22:54:02 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2007-02-22 22:54:02 +0000 |
commit | 8be0e3593f140403ba9dcdbde89bc46f3b481252 (patch) | |
tree | a384132f4a7bf11ebb28e94e87cd51433bcf4ad1 /contrib/themes | |
parent | b1a9417f5d39cba83f62b218f85422abefb67bc4 (diff) | |
download | ampache-8be0e3593f140403ba9dcdbde89bc46f3b481252.tar.gz ampache-8be0e3593f140403ba9dcdbde89bc46f3b481252.tar.bz2 ampache-8be0e3593f140403ba9dcdbde89bc46f3b481252.zip |
CSS update
Diffstat (limited to 'contrib/themes')
-rw-r--r-- | contrib/themes/tangens/templates/default.css | 96 | ||||
-rwxr-xr-x | contrib/themes/tangens/theme.cfg.php | 7 |
2 files changed, 102 insertions, 1 deletions
diff --git a/contrib/themes/tangens/templates/default.css b/contrib/themes/tangens/templates/default.css index 0dd1fd61..9b16f431 100644 --- a/contrib/themes/tangens/templates/default.css +++ b/contrib/themes/tangens/templates/default.css @@ -257,5 +257,101 @@ th, tr.table-header td { #sidebar li:hover ul, #sidebar li.sfhover ul {
left: auto; /* this calls the submenu back when the parent li is hovered. */
}
+
+/* User Online/Offline style, used in users.php */
+td.user_online {
+ border:0px;
+ background-color: green;
+}
+td.user_offline {
+ border:0px;
+ background-color: #AA0000;
+}
+td.user_disabled {
+ border:0px;
+ background-color: gray;
+}
+/* styles for the star ratings */
+.star-rating{
+ list-style:none;
+ margin: 0px;
+ padding:0px;
+ width: 80px;
+ height: 15px;
+ position: relative;
+ background: url(../../../images/ratings/star_rating.gif) top left repeat-x;
+}
+.star-rating li{
+ padding:0px;
+ margin:0px;
+ float: right;
+}
+.star-rating li span{
+ display:block;
+ width:16px;
+ height: 15px;
+ text-decoration: none;
+ text-indent: -9000px;
+ z-index: 20;
+ position: absolute;
+ padding: 0px;
+}
+.star-rating li span:hover{
+ background: url(../../../images/ratings/star_rating.gif) left center;
+ z-index: 2;
+ left: 0px;
+}
+li.zero-stars span:hover {
+ background: url(../../../images/ratings/x.gif);
+ height: 15px;
+ left: 80px;
+ display: block;
+}
+span.zero-stars {
+ background: url(../../../images/ratings/x_off.gif);
+ height: 15px;
+ left: 80px;
+ display: block;
+}
+span.one-stars{
+ left: 0px;
+}
+span.one-stars:hover{
+ width:16px;
+}
+span.two-stars{
+ left:16px;
+}
+span.two-stars:hover{
+ width: 32px;
+}
+span.three-stars{
+ left: 32px;
+}
+span.three-stars:hover{
+ width: 48px;
+}
+span.four-stars{
+ left: 48px;
+}
+span.four-stars:hover{
+ width: 64px;
+}
+span.five-stars{
+ left: 64px;
+}
+span.five-stars:hover{
+ width: 80px;
+}
+li.current-rating{
+ background: url(../../../images/ratings/star_rating.gif) left bottom;
+ position: absolute;
+ height: 15px;
+ display: block;
+ text-indent: -9000px;
+ z-index: 1;
+}
+
+
-->
</style>
diff --git a/contrib/themes/tangens/theme.cfg.php b/contrib/themes/tangens/theme.cfg.php index c870d9dd..45bd5b20 100755 --- a/contrib/themes/tangens/theme.cfg.php +++ b/contrib/themes/tangens/theme.cfg.php @@ -16,7 +16,7 @@ name = "tangens" # This is just a way of giving credit to the # person who actually created this theme # DEFAULT: N/A -#author = "Florian Kleinert" +author = "Florian Kleinert modified by Terence Theijn (pb1dft)" # Theme Maintainer # This is just a way of listing who is responsible for @@ -37,6 +37,11 @@ orientation = "vertical" # comment this out #submenu = "simple" +# Version +# This is the revision for this theme, It's up to the maintainer +# or author to decide how they want to format this +version = "1.1" + # Theme Colors ################### [color] |