Change left pane header color
// FREEBIE
This commit is contained in:
parent
85fa71b940
commit
8bb8ed8151
5 changed files with 39 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
||||||
<meta charset='utf-8'>
|
<meta charset='utf-8'>
|
||||||
<script type='text/x-tmpl-mustache' id='two-column'>
|
<script type='text/x-tmpl-mustache' id='two-column'>
|
||||||
<div class='gutter'>
|
<div class='gutter'>
|
||||||
<div class='title-bar' id='header'>
|
<div class='title-bar active' id='header'>
|
||||||
<div class='header-buttons'>
|
<div class='header-buttons'>
|
||||||
<div class='vertical-align'>
|
<div class='vertical-align'>
|
||||||
<div class='global-menu menu'>
|
<div class='global-menu menu'>
|
||||||
|
|
|
@ -105,6 +105,8 @@
|
||||||
},
|
},
|
||||||
events: {
|
events: {
|
||||||
'click': 'closeMenu',
|
'click': 'closeMenu',
|
||||||
|
'click #header': 'focusHeader',
|
||||||
|
'click .conversation': 'focusConversation',
|
||||||
'click .global-menu .hamburger': 'toggleMenu',
|
'click .global-menu .hamburger': 'toggleMenu',
|
||||||
'click .show-debug-log': 'showDebugLog',
|
'click .show-debug-log': 'showDebugLog',
|
||||||
'click .settings': 'showSettings',
|
'click .settings': 'showSettings',
|
||||||
|
@ -112,6 +114,18 @@
|
||||||
'input input.search': 'filterContacts',
|
'input input.search': 'filterContacts',
|
||||||
'click .restart-signal': 'reloadBackgroundPage'
|
'click .restart-signal': 'reloadBackgroundPage'
|
||||||
},
|
},
|
||||||
|
focusConversation: function(e) {
|
||||||
|
if (e && this.$(e.target).hasClass('placeholder')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$('#header').removeClass('active');
|
||||||
|
this.$('.conversation-stack').removeClass('inactive');
|
||||||
|
},
|
||||||
|
focusHeader: function() {
|
||||||
|
this.$('.conversation-stack').addClass('inactive');
|
||||||
|
this.$('#header').addClass('active');
|
||||||
|
},
|
||||||
reloadBackgroundPage: function() {
|
reloadBackgroundPage: function() {
|
||||||
chrome.runtime.reload();
|
chrome.runtime.reload();
|
||||||
},
|
},
|
||||||
|
@ -133,6 +147,7 @@
|
||||||
this.searchView.hideHints();
|
this.searchView.hideHints();
|
||||||
conversation = ConversationController.create(conversation);
|
conversation = ConversationController.create(conversation);
|
||||||
this.conversation_stack.open(conversation);
|
this.conversation_stack.open(conversation);
|
||||||
|
this.focusConversation();
|
||||||
},
|
},
|
||||||
toggleMenu: function() {
|
toggleMenu: function() {
|
||||||
this.$('.global-menu .menu-list').toggle();
|
this.$('.global-menu .menu-list').toggle();
|
||||||
|
|
|
@ -29,7 +29,14 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
background-color: $blue;
|
background-color: $grey_l;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
background-color: $blue;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 64px;
|
line-height: 64px;
|
||||||
|
@ -38,7 +45,6 @@ body {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-text {
|
.title-text {
|
||||||
|
|
|
@ -70,6 +70,10 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.inactive .conversation-header {
|
||||||
|
background: $grey_l !important;
|
||||||
|
color: $grey_d;
|
||||||
|
}
|
||||||
|
|
||||||
input.search {
|
input.search {
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -90,7 +94,7 @@ input.search {
|
||||||
|
|
||||||
.tool-bar {
|
.tool-bar {
|
||||||
background: $grey_l;
|
background: $grey_l;
|
||||||
padding: 2px 1px 1px;
|
padding: 2px;
|
||||||
|
|
||||||
button.show-new-conversation {
|
button.show-new-conversation {
|
||||||
float: right;
|
float: right;
|
||||||
|
|
|
@ -38,7 +38,11 @@ body {
|
||||||
display: none; }
|
display: none; }
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
background-color: #2090ea; }
|
background-color: #f3f3f3;
|
||||||
|
color: black; }
|
||||||
|
#header.active {
|
||||||
|
background-color: #2090ea;
|
||||||
|
color: white; }
|
||||||
#header h1 {
|
#header h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 64px;
|
line-height: 64px;
|
||||||
|
@ -480,6 +484,10 @@ input[type=text]:active, input[type=text]:focus, input[type=search]:active, inpu
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
position: relative; }
|
position: relative; }
|
||||||
|
|
||||||
|
.inactive .conversation-header {
|
||||||
|
background: #f3f3f3 !important;
|
||||||
|
color: #454545; }
|
||||||
|
|
||||||
input.search {
|
input.search {
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -496,7 +504,7 @@ input.search {
|
||||||
|
|
||||||
.tool-bar {
|
.tool-bar {
|
||||||
background: #f3f3f3;
|
background: #f3f3f3;
|
||||||
padding: 2px 1px 1px; }
|
padding: 2px; }
|
||||||
.tool-bar button.show-new-conversation {
|
.tool-bar button.show-new-conversation {
|
||||||
float: right;
|
float: right;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
|
|
Loading…
Reference in a new issue