+
diff --git a/web/react/components/navbar.jsx b/web/react/components/navbar.jsx
index 500fabb0e2..6d23c0d9ba 100644
--- a/web/react/components/navbar.jsx
+++ b/web/react/components/navbar.jsx
@@ -191,7 +191,7 @@ module.exports = React.createClass({
;
var right_sidebar_collapse_button= currentId == null ? null :
;
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx
index d6422fe3a7..8eaaf4e8c8 100644
--- a/web/react/components/post_info.jsx
+++ b/web/react/components/post_info.jsx
@@ -4,6 +4,8 @@
var UserStore = require('../stores/user_store.jsx');
var utils = require('../utils/utils.jsx');
+var Constants = require('../utils/constants.jsx');
+
module.exports = React.createClass({
getInitialState: function() {
return { };
@@ -21,7 +23,7 @@ module.exports = React.createClass({
var comments = "";
var lastCommentClass = this.props.isLastComment ? " comment-icon__container__show" : " comment-icon__container__hide";
if (this.props.commentCount >= 1) {
- comments =
"}} />{this.props.commentCount};
+ comments =
{this.props.commentCount};
}
return (
diff --git a/web/react/components/sidebar_header.jsx b/web/react/components/sidebar_header.jsx
index 859e425a62..5b442aeacc 100644
--- a/web/react/components/sidebar_header.jsx
+++ b/web/react/components/sidebar_header.jsx
@@ -6,6 +6,8 @@ var utils = require('../utils/utils.jsx');
var client = require('../utils/client.jsx');
var UserStore = require('../stores/user_store.jsx');
+var Constants = require('../utils/constants.jsx');
+
function getStateFromStores() {
return { teams: UserStore.getTeams() };
}
@@ -75,7 +77,7 @@ var NavbarDropdown = React.createClass({
-
- "}} />
+
- Account Settings
diff --git a/web/react/utils/constants.jsx b/web/react/utils/constants.jsx
index 2249da0d34..77ce195302 100644
--- a/web/react/utils/constants.jsx
+++ b/web/react/utils/constants.jsx
@@ -82,5 +82,7 @@ module.exports = {
MONTHS: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
MAX_DMS: 10,
ONLINE_ICON_SVG: "",
- OFFLINE_ICON_SVG: ""
+ OFFLINE_ICON_SVG: "",
+ MENU_ICON: "",
+ COMMENT_ICON: ""
};
diff --git a/web/sass-files/sass/partials/_headers.scss b/web/sass-files/sass/partials/_headers.scss
index 4351e167bb..687e330a69 100644
--- a/web/sass-files/sass/partials/_headers.scss
+++ b/web/sass-files/sass/partials/_headers.scss
@@ -96,6 +96,10 @@
right: 22px;
.dropdown-toggle {
padding: 10px;
+ @include opacity(0.8);
+ &:hover {
+ @include opacity(1);
+ }
}
.dropdown-menu {
li a {
@@ -119,7 +123,7 @@
}
.header__info {
color: #fff;
- padding-left: 3px
+ padding-left: 4px;
}
.team__name, .user__name {
display: block;
diff --git a/web/sass-files/sass/partials/_navbar.scss b/web/sass-files/sass/partials/_navbar.scss
index 6d8f11ce38..e5e67a9e02 100644
--- a/web/sass-files/sass/partials/_navbar.scss
+++ b/web/sass-files/sass/partials/_navbar.scss
@@ -24,9 +24,10 @@
border-radius: 0;
margin: 0;
padding: 0 10px;
- line-height: 50px;
+ line-height: 53px;
height: 50px;
z-index: 5;
+ fill: #fff;
.icon-bar {
background: #fff;
width: 21px;
diff --git a/web/sass-files/sass/partials/_responsive.scss b/web/sass-files/sass/partials/_responsive.scss
index 3a2768a478..2d78cf242d 100644
--- a/web/sass-files/sass/partials/_responsive.scss
+++ b/web/sass-files/sass/partials/_responsive.scss
@@ -459,14 +459,15 @@
border-radius: 0;
padding: 0;
border-bottom: 1px solid #FFF;
- border-bottom: 1px solid rgba(#fff, 0.6);
- @include input-placeholder {
- color: rgba(#fff, 0.6);
+ border-bottom: 1px solid rgba(#fff, 0.4);
+ &:focus {
+ border-bottom: 1px solid rgba(#fff, 0.8);
}
}
input[type=text] {
@include input-placeholder {
color: #fff;
+ color: rgba(#fff, 0.6);
}
}
}
diff --git a/web/sass-files/sass/partials/_search.scss b/web/sass-files/sass/partials/_search.scss
index d4a4da2433..7943583206 100644
--- a/web/sass-files/sass/partials/_search.scss
+++ b/web/sass-files/sass/partials/_search.scss
@@ -5,9 +5,10 @@
width: auto;
height: auto;
position: absolute;
- top: 17px;
+ top: 1px;
right: 15px;
cursor: pointer;
+ padding: 1em 0;
z-index: 5;
display: none;
}