1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-12-24 08:28:56 -05:00

[ux] move statuses to dots. #2

This commit is contained in:
karolinaszczur 2013-09-25 08:57:46 +02:00
parent 9f454bb16f
commit b32385391e
2 changed files with 54 additions and 54 deletions

View File

@ -69,19 +69,31 @@
&.hasUnread .unread
display: block
&.online, &.chat, &.dnd, &.away, &.xa
&:after
content: ''
position: absolute
top: 50%
right: 15px
height: 8px
width: 8px
margin-top: -4px
roundall(10px)
&.online,
&.chat
border-left: 3px solid #427a00
&:after
background: #427a00
&.dnd
border-left: 3px solid #c50041
&:after
background: #c50041
&.away,
&.xa
border-left: 3px solid #f57900
&.offline
border-left: none
&:after
background: #f57900
&.offline:not(:hover)
.name
@ -100,21 +112,8 @@
.name
color: $baseText
&.composing, &.paused
&:after
content: ''
position: absolute
top: 50%
right: 15px
height: 8px
width: 8px
margin-top: -4px
roundall(10px)
&.composing
&:after
background: #f57900
animation: pulsate 1.5s infinite ease-in
-webkit-animation: pulsate 1.5s infinite ease-in
-moz-animation: pulsate 1.5s infinite ease-in

View File

@ -387,25 +387,45 @@ h4 {
#bookmarks li.hasUnread .unread {
display: block;
}
#roster li.online,
#bookmarks li.online,
#roster li.chat,
#bookmarks li.chat {
border-left: 3px solid #427a00;
#roster li.online:after,
#bookmarks li.online:after,
#roster li.chat:after,
#bookmarks li.chat:after,
#roster li.dnd:after,
#bookmarks li.dnd:after,
#roster li.away:after,
#bookmarks li.away:after,
#roster li.xa:after,
#bookmarks li.xa:after {
content: '';
position: absolute;
top: 50%;
right: 15px;
height: 8px;
width: 8px;
margin-top: -4px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-o-border-radius: 10px;
-border-radius: 10px;
border-radius: 10px;
}
#roster li.dnd,
#bookmarks li.dnd {
border-left: 3px solid #c50041;
#roster li.online:after,
#bookmarks li.online:after,
#roster li.chat:after,
#bookmarks li.chat:after {
background: #427a00;
}
#roster li.away,
#bookmarks li.away,
#roster li.xa,
#bookmarks li.xa {
border-left: 3px solid #f57900;
#roster li.dnd:after,
#bookmarks li.dnd:after {
background: #c50041;
}
#roster li.offline,
#bookmarks li.offline {
border-left: none;
#roster li.away:after,
#bookmarks li.away:after,
#roster li.xa:after,
#bookmarks li.xa:after {
background: #f57900;
}
#roster li.offline:not(:hover) .name,
#bookmarks li.offline:not(:hover) .name {
@ -433,26 +453,7 @@ h4 {
color: #565656;
}
#roster li.composing:after,
#bookmarks li.composing:after,
#roster li.paused:after,
#bookmarks li.paused:after {
content: '';
position: absolute;
top: 50%;
right: 15px;
height: 8px;
width: 8px;
margin-top: -4px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-o-border-radius: 10px;
-border-radius: 10px;
border-radius: 10px;
}
#roster li.composing:after,
#bookmarks li.composing:after {
background: #f57900;
animation: pulsate 1.5s infinite ease-in;
-webkit-animation: pulsate 1.5s infinite ease-in;
-moz-animation: pulsate 1.5s infinite ease-in;