nitro-react/src/views/friends/FriendsView.scss

105 lines
2.2 KiB
SCSS
Raw Normal View History

2021-11-18 09:40:51 +01:00
.nitro-friends-spritesheet {
background: url('../../assets/images/friends/friends-spritesheet.png') transparent no-repeat;
&.icon-friendbar-visit {
width: 21px; height: 21px;
background-position: -38px -5px;
}
&.icon-heart {
width: 16px; height: 14px;
background-position: -5px -67px;
}
&.icon-new-message {
width: 14px; height: 14px;
background-position: -96px -53px;
}
&.icon-none {
width: 16px; height: 14px;
background-position: -31px -67px;
}
&.icon-profile {
width: 21px; height: 21px;
background-position: -5px -36px;
}
&.icon-profile-sm {
width: 13px; height: 11px;
background-position: -51px -91px;
&:hover {
width: 13px; height: 11px;
background-position: -74px -91px;
}
}
&.icon-smile {
width: 16px; height: 14px;
background-position: -57px -67px;
}
&.icon-warning {
width: 23px; height: 21px;
background-position: -5px -5px;
}
&.icon-accept {
width: 13px; height: 14px;
background-position: -5px -91px;
}
&.icon-add {
width: 16px; height: 15px;
background-position: -69px -31px;
}
&.icon-bobba {
width: 16px; height: 14px;
background-position: -96px -5px;
}
&.icon-chat {
width: 17px; height: 16px;
background-position: -69px -5px;
}
&.icon-deny {
width: 13px; height: 14px;
background-position: -28px -91px;
}
&.icon-follow {
width: 16px; height: 14px;
background-position: -96px -29px;
}
&.icon-friendbar-chat {
width: 20px; height: 21px;
background-position: -36px -36px;
}
}
2021-09-16 06:37:17 +02:00
.nitro-friends {
2021-11-17 09:46:34 +01:00
width: $friends-list-width;
height: $friends-list-height;
2021-11-18 09:40:51 +01:00
.search-input {
border: 0;
border-bottom: 1px solid rgba($black, 0.2);
}
2021-09-15 18:26:51 +02:00
}
2022-02-13 23:38:20 +01:00
.nitro-friends-room-invite {
width: $friends-list-width;
}
.nitro-friends-remove-confirmation {
width: $friends-list-width;
}
2021-11-17 09:46:34 +01:00
@import "./views/friend-bar/FriendBarView";
@import "./views/messenger/FriendsMessengerView";