diff options
author | friendica <info@friendica.com> | 2015-02-04 15:48:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-04 15:48:39 -0800 |
commit | 398894851628ccb99090e9d70b92a9a909ef7015 (patch) | |
tree | d97049278536fdbabbc889e6be1cb81d4a72ed43 /view/theme/redbasic | |
parent | 1ceb0a7fbab5957ae077ef4867266314c612f8ea (diff) | |
download | volse-hubzilla-398894851628ccb99090e9d70b92a9a909ef7015.tar.gz volse-hubzilla-398894851628ccb99090e9d70b92a9a909ef7015.tar.bz2 volse-hubzilla-398894851628ccb99090e9d70b92a9a909ef7015.zip |
first cut at rating widget. The flaw is that it is limited because it requires local_channel() (formerly local_user()). We need to extend this to take you home like rpost does if you're logged in as remote_channel() - and/or we need zot to send the rating message to the source channel and target in addition to the directories.
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/css/style.css | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index cb58b6e11..32ded75ba 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -771,6 +771,19 @@ footer { clear: both; } +div.rateme { + display: block; + color: $nav_active_icon_colour; + background-color: $nav_bg; + -webkit-border-radius: $radiuspx ; + -moz-border-radius: $radiuspx; + border-radius: $radiuspx; + border: 1px solid $nav_bd; + padding: 5px; + font-weight: bold; + clear: both; +} + #pause { position: fixed; bottom: 5px; @@ -1442,16 +1455,22 @@ div.jGrowl div.jGrowl-notification { width: 90%; } -a.rconnect { +a.rconnect, div.rateme { color: $nav_active_icon_colour; text-decoration: none; + font-weight: normal; outline: none; } -a.rconnect:hover { +a.rconnect:hover, div.rateme:hover { color: #0080FF; + text-decoration: none; } +.widget.rateme { + margin-top: 15px; + padding: 0; +} /* header */ header { |