Skip to content

Commit

Permalink
Fixes for Search button issues
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissainty committed May 19, 2019
1 parent d242ede commit d5b0cb6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/Blazor.Gitter.Client/wwwroot/css/blazord.gitter.css
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@ app {
position: fixed;
top: 70px;
right: 20px;
color: #FF6600;
background: #000;
border-radius: 4rem;
width: 5rem;
Expand Down

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions src/Blazor.Gitter.Core/Components/Pages/Room.razor
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ else
{
<div class="chat-room">
<div class="chat-room__content">
<div class="chat-room__search-button" onclick="@ToggleSearchMenu">
<i class="fas fa-search"></i>
</div>
<button class="chat-room__search-button fas fa-search" onclick="@ToggleSearchMenu"></button>
<RoomTitle ChatRoom="@ThisRoom" />
<RoomMessages ChatRoom="@ThisRoom" UserId="@State.GetMyUser().Id" />
<RoomSend ChatRoom="@ThisRoom" User="@State.GetMyUser()" />
Expand Down
1 change: 1 addition & 0 deletions src/Blazor.Gitter.Core/content/css/_chatroom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
position: fixed;
top: 70px;
right: 20px;
color: $accent;
background: #000;
border-radius: 4rem;
width: 5rem;
Expand Down
1 change: 1 addition & 0 deletions src/Blazor.Gitter.Server/wwwroot/css/blazord.gitter.css
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@ app {
position: fixed;
top: 70px;
right: 20px;
color: #FF6600;
background: #000;
border-radius: 4rem;
width: 5rem;
Expand Down

Large diffs are not rendered by default.

0 comments on commit d5b0cb6

Please sign in to comment.