2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions {
|
|
|
|
padding-left: 46px;
|
2017-01-09 21:33:16 +01:00
|
|
|
overflow: hidden;
|
2017-01-07 01:18:45 +01:00
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .message_reaction {
|
2016-12-02 13:23:23 +01:00
|
|
|
float: left;
|
2017-01-07 08:54:17 +01:00
|
|
|
margin: 0.15em;
|
|
|
|
padding: 0 2px 0 0;
|
|
|
|
height: 19px;
|
|
|
|
cursor: pointer;
|
2017-02-13 07:51:40 +01:00
|
|
|
background-color: #ffffff;
|
2017-01-07 08:54:17 +01:00
|
|
|
border: 1px solid #c7dfe6;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2017-02-22 08:09:05 +01:00
|
|
|
.private-message .message_reactions .message_reaction {
|
|
|
|
/* Use the PM color background, since white-on-yellow looks bad. */
|
|
|
|
background-color: #feffe0;
|
|
|
|
}
|
|
|
|
|
2017-02-13 07:51:40 +01:00
|
|
|
.message_reactions .reacted {
|
2017-02-22 08:09:05 +01:00
|
|
|
/* Needs to be important to override the .private-message one */
|
|
|
|
background-color: #eef7fa !important;
|
2017-02-13 07:51:40 +01:00
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .message_reaction .emoji {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
top: -3px;
|
|
|
|
margin: 0px;
|
|
|
|
|
|
|
|
transform: scale(0.70);
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
-moz-transform: scale(0.70);
|
|
|
|
-moz-transform-origin: 50% 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions .message_reaction_count {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
color: #0088CC;
|
|
|
|
margin: 0px 1px 0px 0px;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions .reaction_button .message_reaction_count {
|
2017-01-10 21:32:23 +01:00
|
|
|
top: 0.5px;
|
2016-12-02 13:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions i {
|
|
|
|
font-size: 1.3em;
|
|
|
|
float: left;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2017-01-07 01:18:45 +01:00
|
|
|
.message_reactions .reaction_button:not(:only-child) {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions:hover .message_reaction + .reaction_button {
|
|
|
|
visibility: visible;
|
|
|
|
pointer-events: all;
|
2016-12-02 13:23:23 +01:00
|
|
|
background-color: #fafafa;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .reaction_button i {
|
|
|
|
font-size: 1em;
|
|
|
|
margin-right: 3px;
|
2016-12-02 13:23:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .reaction_button:hover i {
|
2016-12-02 13:23:23 +01:00
|
|
|
color: #0088CC;
|
|
|
|
}
|
|
|
|
|
2017-02-22 08:09:05 +01:00
|
|
|
.message_reactions .message_reaction:hover {
|
|
|
|
border: thin solid #0088CC;
|
|
|
|
}
|
2017-01-07 08:54:17 +01:00
|
|
|
|
|
|
|
.message_reactions .reaction_button:only-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions .message_reaction + .reaction_button {
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
2017-01-10 21:32:23 +01:00
|
|
|
margin: 2px 0.1em 3px 0.1em;
|
|
|
|
padding: 3px;
|
2017-01-07 08:54:17 +01:00
|
|
|
height: 14px;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding-left: 0.3em;
|
|
|
|
border: thin solid #bbb;
|
|
|
|
padding-right: 0.3em;
|
|
|
|
float: left;
|
2016-12-02 13:23:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .reaction_button:hover {
|
2017-02-22 08:09:05 +01:00
|
|
|
border: thin solid #0088CC;
|
2017-01-07 08:54:17 +01:00
|
|
|
background-color: #eef7fa;
|
2016-12-02 13:23:23 +01:00
|
|
|
cursor: pointer;
|
|
|
|
opacity: 1.0;
|
|
|
|
color: #0088CC;
|
|
|
|
}
|
|
|
|
|
2017-01-07 08:54:17 +01:00
|
|
|
.message_reactions .reaction_button .message_reaction_count {
|
|
|
|
font-size: 1.1em;
|
|
|
|
color: #555;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions .reaction_button:hover .message_reaction_count {
|
|
|
|
color: #0088CC;
|
|
|
|
}
|
|
|
|
|
2016-12-02 13:23:23 +01:00
|
|
|
.reaction-popover {
|
|
|
|
display: inline-block;
|
2017-01-27 21:46:39 +01:00
|
|
|
width: 231px;
|
2016-12-02 13:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover-top {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover-top .icon-vector-search {
|
2017-01-27 21:46:39 +01:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 8px;
|
2016-12-02 13:23:23 +01:00
|
|
|
color: #bbb;
|
2017-01-27 21:46:39 +01:00
|
|
|
cursor: pointer;
|
2016-12-02 13:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover-filter {
|
2017-01-27 21:46:39 +01:00
|
|
|
width: calc(100% - 48px);
|
2016-12-02 13:23:23 +01:00
|
|
|
margin: auto;
|
|
|
|
padding-left: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover-emoji-map {
|
|
|
|
margin: 0;
|
2017-01-27 21:46:39 +01:00
|
|
|
padding: 0.5em 0;
|
2016-12-02 13:23:23 +01:00
|
|
|
overflow: hidden;
|
2017-02-20 04:23:35 +01:00
|
|
|
overflow-y: auto;
|
2016-12-02 13:23:23 +01:00
|
|
|
display: inline-block;
|
|
|
|
height: 16.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover-reaction {
|
|
|
|
float: left;
|
|
|
|
margin: 0.1em;
|
|
|
|
padding: 0.3em;
|
|
|
|
cursor: pointer;
|
|
|
|
border: thin solid white;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-popover .reacted {
|
|
|
|
background-color: #eef7fa;
|
|
|
|
border-color: #add8e6;
|
|
|
|
}
|