aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme
diff options
context:
space:
mode:
Diffstat (limited to 'view/theme')
-rw-r--r--view/theme/redbasic/css/style.css66
-rw-r--r--view/theme/redbasic/js/redbasic.js2
-rw-r--r--view/theme/redbasic/php/style.php2
-rw-r--r--view/theme/redbasic/schema/bluegrid.css17
-rw-r--r--view/theme/redbasic/schema/dark.css22
-rw-r--r--view/theme/redbasic/schema/simple_black_on_white.css13
-rw-r--r--view/theme/redbasic/schema/simple_green_on_black.css13
-rw-r--r--view/theme/redbasic/schema/simple_white_on_black.css13
8 files changed, 100 insertions, 48 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 5fcf901fb..b2255b3af 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -297,7 +297,7 @@ footer {
margin-bottom: 10px;
padding: 10px;
background-color: rgba(254,254,254,0.5);
- border-bottom: 1px solid rgba(238,238,238,0.8);
+ border: 1px solid rgba(254,254,254,0.5);
-moz-border-radius: $radiuspx;
-webkit-border-radius: $radiuspx;
border-radius: $radiuspx;
@@ -310,6 +310,11 @@ footer {
margin-bottom: 0px;
}
+.connect-btn-wrapper {
+ margin-bottom: 10px;
+
+}
+
.profile-edit-side-link {
padding: 3px 0px;
opacity: 0;
@@ -475,53 +480,15 @@ footer {
float: right;
}
-.rconnect {
- display: block;
- color: $nav_active_icon_colour;
- margin-top: 15px;
- 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;
-}
-
-a.rateme, 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;
right: 5px;
}
-#vcard-end {
- clear: both;
-}
-
#contact-block {
width: 100%;
float: left;
- background-color: rgba(254,254,254,0.5);
- border-bottom: 1px solid rgba(238,238,238,0.8);
- -moz-border-radius: $radiuspx;
- -webkit-border-radius: $radiuspx;
- border-radius: $radiuspx;
- padding: 10px;
- margin-bottom:10px;
}
#contact-block-numcontacts {
@@ -995,6 +962,9 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover {
margin-bottom: 18px;
}
+#jot-preview-content {
+ margin-top: 10px;
+}
.acl-list-item {
width: 48%; /* fallback if browser does not support calc() */
width: calc(50% - 10px);
@@ -1193,6 +1163,13 @@ img.mail-conv-sender-photo {
background-color: #fff;
}
+#profile-jot-wrapper {
+ background-color: rgba(254,254,254,.5);
+ border: 1px solid rgba(254,254,254,.5);
+ border-radius: $radiuspx;
+
+}
+
#profile-jot-text {
color:#000;
border: 1px solid #cccccc;
@@ -1394,8 +1371,8 @@ img.mail-conv-sender-photo {
/* widgets */
.widget {
- background-color: rgba(254,254,254,0.5);
- border-bottom: 1px solid rgba(238,238,238,0.8);
+ background-color: rgba(254,254,254,.5);
+ border: 1px solid rgba(254,254,254,.5);
-moz-border-radius: $radiuspx;
-webkit-border-radius: $radiuspx;
border-radius: $radiuspx;
@@ -1724,6 +1701,13 @@ nav .badge.mail-update:hover {
padding: 7px 10px;
}
+.nav-tabs.nav-justified {
+ background-color: rgba(254,254,254,.5);
+ border: 1px solid rgba(254,254,254,.5);
+ border-top-left-radius: $radiuspx;
+ border-top-right-radius: $radiuspx;
+}
+
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index 302efc365..38dc4d209 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -7,7 +7,7 @@ $(document).ready(function() {
if( $('#css3-calc').width() == 10) {
$(window).resize(function() {
if($(window).width() < 767) {
- $('main').css('width', $(window).width() + 285 );
+ $('main').css('width', $(window).width() + 287 );
} else {
$('main').css('width', '100%' );
}
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index a0da5e302..443ebb1fb 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -154,7 +154,7 @@ if(file_exists('view/theme/redbasic/css/style.css')) {
$x = file_get_contents('view/theme/redbasic/css/style.css');
- $aside_width = 285;
+ $aside_width = 287;
// left aside and right aside are 285px + converse width
if($align_left) {
diff --git a/view/theme/redbasic/schema/bluegrid.css b/view/theme/redbasic/schema/bluegrid.css
index 820e84baa..36e26302a 100644
--- a/view/theme/redbasic/schema/bluegrid.css
+++ b/view/theme/redbasic/schema/bluegrid.css
@@ -2,7 +2,7 @@ body {
background-size: auto;
}
-.generic-content-wrapper-styled, #profile-jot-wrapper {
+.generic-content-wrapper-styled {
background-color: rgba(67,72,138,.8);
color: #FFF;
}
@@ -11,6 +11,11 @@ body {
border: 1px solid #FFF;
}
+#profile-jot-wrapper {
+ background-color: inherit;
+ border: none;
+}
+
.generic-content-wrapper-styled a:hover, .generic-content-wrapper-styled a:focus, .generic-content-wrapper-styled .field.checkbox:hover label, .generic-content-wrapper-styled .field.checkbox:focus label, .allcontact-link:hover, .allcontact-link:focus {
color: rgba(255,255,255,.8);
}
@@ -160,6 +165,14 @@ nav .badge:hover, nav .badge:focus {
color: rgba(255,255,255,.8);
}
+.widget .conv-participants {
+ color: #BBB;
+}
+
+.widget .active:hover .conv-participants, .widget .active:focus .conv-participants {
+ color: inherit;
+}
+
.help-block, .comment-icon, .jot-icons, .admin-icons {
color: inherit;
}
@@ -450,3 +463,5 @@ a:hover > .icon-trash {
background-color: #43488A !important;
}
}
+
+
diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css
index 936f74761..16044b224 100644
--- a/view/theme/redbasic/schema/dark.css
+++ b/view/theme/redbasic/schema/dark.css
@@ -5,12 +5,19 @@
.vcard, #contact-block, .widget {
background-color: transparent;
+ border: none;
border-bottom: 1px solid #333;
border-radius: 0px
}
#profile-photo-wrapper {
- border:none;
+ border: none;
+}
+
+#profile-edit-default-desc {
+ background-color: #665029;
+ color: #FFF;
+ padding: 20px;
}
.photo {
@@ -88,7 +95,7 @@
background-color: #111;
}
-.jotnets-wrapper > a.btn {
+a.btn, aside a {
font-weight: 400 !important;
}
@@ -330,11 +337,18 @@ pre {
text-decoration: underline;
}
-
-
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #333;
}
}
+#profile-jot-wrapper {
+ background-color: inherit;
+ border: none;
+}
+
+.nav-tabs.nav-justified {
+ background-color: inherit;
+ border: none;
+}
diff --git a/view/theme/redbasic/schema/simple_black_on_white.css b/view/theme/redbasic/schema/simple_black_on_white.css
index f69ba3450..ba9771a40 100644
--- a/view/theme/redbasic/schema/simple_black_on_white.css
+++ b/view/theme/redbasic/schema/simple_black_on_white.css
@@ -5,6 +5,7 @@
.vcard, #contact-block, .widget {
background-color: transparent;
+ border: none;
border-bottom: 1px solid #fff;
}
@@ -75,6 +76,10 @@
background-color: #fff;
}
+a.btn, aside a {
+ font-weight: 400 !important;
+}
+
.btn-default {
background-color: #fff;
border-color: #000;
@@ -261,4 +266,12 @@ pre {
}
}
+#profile-jot-wrapper {
+ background-color: inherit;
+ border: none;
+}
+.nav-tabs.nav-justified {
+ background-color: inherit;
+ border: none;
+}
diff --git a/view/theme/redbasic/schema/simple_green_on_black.css b/view/theme/redbasic/schema/simple_green_on_black.css
index 1f0a2f1e6..0928c64f3 100644
--- a/view/theme/redbasic/schema/simple_green_on_black.css
+++ b/view/theme/redbasic/schema/simple_green_on_black.css
@@ -5,6 +5,7 @@
.vcard, #contact-block, .widget {
background-color: transparent;
+ border: none;
border-bottom: 1px solid #fff;
}
@@ -75,6 +76,10 @@
background-color: #000;
}
+a.btn, aside a {
+ font-weight: 400 !important;
+}
+
.btn-default {
background-color: #000;
border-color: #143D12;
@@ -278,4 +283,12 @@ pre {
}
}
+#profile-jot-wrapper {
+ background-color: inherit;
+ border: none;
+}
+.nav-tabs.nav-justified {
+ background-color: inherit;
+ border: none;
+}
diff --git a/view/theme/redbasic/schema/simple_white_on_black.css b/view/theme/redbasic/schema/simple_white_on_black.css
index 627f3ee5c..45bdba1cd 100644
--- a/view/theme/redbasic/schema/simple_white_on_black.css
+++ b/view/theme/redbasic/schema/simple_white_on_black.css
@@ -5,6 +5,7 @@
.vcard, #contact-block, .widget {
background-color: transparent;
+ border: none;
border-bottom: 1px solid #fff;
}
@@ -71,6 +72,10 @@
background-color: #000;
}
+a.btn, aside a {
+ font-weight: 400 !important;
+}
+
.btn-default {
background-color: #000;
border-color: #fff;
@@ -257,4 +262,12 @@ pre {
}
}
+#profile-jot-wrapper {
+ background-color: inherit;
+ border: none;
+}
+.nav-tabs.nav-justified {
+ background-color: inherit;
+ border: none;
+}