aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-04-03 17:03:32 +0200
committermarijus <mario@mariovavti.com>2014-04-03 17:03:32 +0200
commit3f1a78fa690e2220b46823527f3abf0a0d51cd8e (patch)
tree1b9784fd6dc8cb49fe4703781b60c3c502f77d1f /view/theme/redbasic
parent98788308e156173cfc49c4477bf0d12dbda88662 (diff)
downloadvolse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.tar.gz
volse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.tar.bz2
volse-hubzilla-3f1a78fa690e2220b46823527f3abf0a0d51cd8e.zip
some work on jot, remove some deprecated js and some random style fixes
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r--view/theme/redbasic/css/style.css45
-rw-r--r--view/theme/redbasic/js/redbasic.js25
2 files changed, 10 insertions, 60 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 0b94bff80..688dcf478 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -818,6 +818,7 @@ footer {
}
#search-text {
+ border: 1px solid #ccc;
font-size: 1em;
}
@@ -1444,13 +1445,20 @@ div.jGrowl div.jGrowl-notification {
border-top: none;
}
-#search-text-ac .autocomplete,
+#search-text-ac .autocomplete {
+ margin-top: 2px;
+ margin-left: $radiuspx;
+ border: 1px solid #ccc;
+ border-top: none;
+}
+
#recip-ac .autocomplete,
#poke-recip-ac .autocomplete,
#id-name-ac .autocomplete,
#contact-search-ac .autocomplete {
margin-top: 2px;
margin-left: $radiuspx;
+ margin-right: $radiuspx;
border: 1px solid #666;
border-top: none;
@@ -1881,34 +1889,7 @@ img.mail-list-sender-photo {
#profile-jot-text-loading {
color: #777;
-}
-
-#profile-jot-submit {
- background: linear-gradient(top, #0080ff 0%, #0080aa);
- background: -webkit-linear-gradient(top, #0080ff 0%, #0080aa);
- background: -moz-linear-gradient(top, #0080ff 0%, #0080aa);
- background: -o-linear-gradient(top, #0080ff 0%, #0080aa);
- background: -ms-linear-gradient(top, #0080ff 0%, #0080aa);
- color: #fff;
- font-weight: bold;
- border-radius: 0px $radiuspx $radiuspx 0px;
- text-shadow: 1px 1px #111;
- cursor: pointer;
-}
-
-#profile-jot-submit:hover {
- background: linear-gradient(top, #0080aa 0%, #0080ff);
- background: -webkit-linear-gradient(top, #0080aa 0%, #0080ff);
- background: -moz-linear-gradient(top, #0080aa 0%, #0080ff);
- background: -o-linear-gradient(top, #0080aa 0%, #0080ff);
- background: -ms-linear-gradient(top, #0080aa 0%, #0080ff);
-}
-
-#profile-jot-perms {
- background-color: $toolicon_colour;
- border: 1px solid #666;
- border-right: none;
- border-radius: $radiuspx 0px 0px $radiuspx;
+ display: none;
}
#profile-rotator {
@@ -1916,14 +1897,9 @@ img.mail-list-sender-photo {
}
.jot-icons {
- font-size: 1.2em;
color: $toolicon_colour;
}
-.jot-icons:hover {
- color: $toolicon_activecolour;
-}
-
/* conversation */
.thread-wrapper .wall-item-comment-wrapper,
@@ -2015,7 +1991,6 @@ img.mail-list-sender-photo {
color: darkgreen;
}
-
.wall-item-ago {
color: #777;
font-size: 0.8em;
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index 0aab42cd5..20902fe1a 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -40,31 +40,6 @@ if($('#tabs-collapse-1').length == 0) {
$('#expand-tabs').hide();
}
-$('.group-edit-icon').hover(
- function() {
- $(this).css('opacity','1.0');},
- function() {
- $(this).css('opacity','0');}
-);
-
-$('.sidebar-group-element').hover(
- function() {
- id = $(this).attr('id');
- $('#edit-' + id).css('opacity','1.0');},
-
- function() {
- id = $(this).attr('id');
- $('#edit-' + id).css('opacity','0');}
- );
-
-
-$('.savedsearchdrop').hover(
- function() {
- $(this).css('opacity','1.0');},
- function() {
- $(this).css('opacity','0');}
- );
-
});