Change tab close icon

This commit is contained in:
Ken-Håvard Lieng 2017-05-16 08:38:43 +02:00
parent 2328cfa940
commit 05ce88a656
7 changed files with 46 additions and 36 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
@font-face {
font-family: 'fontello';
src: url('font/fontello.woff2?73444496') format('woff2'),
url('font/fontello.woff?73444496') format('woff'),
url('font/fontello.ttf?73444496') format('truetype');
src: url('../font/fontello.woff2?48901973') format('woff2'),
url('../font/fontello.woff?48901973') format('woff'),
url('../font/fontello.ttf?48901973') format('truetype');
font-weight: normal;
font-style: normal;
}
@ -34,16 +34,17 @@
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-cog:before { content: '\e800'; } /* '' */
.icon-ellipsis:before { content: '\e801'; } /* '' */
.icon-search:before { content: '\e802'; } /* '' */
.icon-user:before { content: '\e803'; } /* '' */
.icon-users:before { content: '\e804'; } /* '' */
.icon-logout:before { content: '\e805'; } /* '' */
.icon-menu:before { content: '\e806'; } /* '' */
.icon-plus:before { content: '\e807'; } /* '' */
.icon-cancel:before { content: '\e808'; } /* '' */
.icon-cancel:before { content: '\e800'; } /* '' */
.icon-menu:before { content: '\e801'; } /* '' */
.icon-cog:before { content: '\e802'; } /* '' */
.icon-search:before { content: '\e803'; } /* '' */
.icon-user:before { content: '\f061'; } /* '' */
.icon-ellipsis:before { content: '\f141'; } /* '' */

View File

@ -436,6 +436,15 @@ i[class^="icon-"]:before, i[class*=" icon-"]:before {
cursor: pointer;
}
.message a {
text-decoration: none;
color: #0066FF;
}
.message a:hover {
text-decoration: underline;
}
.message-input-wrap {
position: absolute;
left: 0;

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -40,7 +40,7 @@ export default class ChatTitle extends PureComponent {
</div>
<i className="icon-search" title="Search" onClick={toggleSearch} />
<i
className="icon-logout button-leave"
className="icon-cancel button-leave"
title={leaveTitle}
onClick={this.handleLeaveClick}
/>