css: Limit message_failed class to inside message_controls.

This is mostly for readability.
This commit is contained in:
Tim Abbott
2019-03-19 13:19:47 -07:00
parent 8700d14c15
commit f9eeddc78c

View File

@@ -716,6 +716,25 @@ td.pointer {
&.sender-status-controls {
top: 10px;
}
.message_failed {
display: inline-block;
cursor: pointer;
font-size: 13px;
font-weight: bold;
color: hsl(0, 100%, 50%);
position: relative;
.rotating {
display: inline-block;
-webkit-animation: rotate 1s infinite linear;
-moz-animation: rotate 1s infinite linear;
-ms-animation: rotate 1s infinite linear;
-o-animation: rotate 1s infinite linear;
animation: rotate 1s infinite linear;
}
}
}
.star {
@@ -754,25 +773,6 @@ td.pointer {
top: -3px;
}
.message_failed {
display: inline-block;
cursor: pointer;
font-size: 13px;
font-weight: bold;
color: hsl(0, 100%, 50%);
position: relative;
.rotating {
display: inline-block;
-webkit-animation: rotate 1s infinite linear;
-moz-animation: rotate 1s infinite linear;
-ms-animation: rotate 1s infinite linear;
-o-animation: rotate 1s infinite linear;
animation: rotate 1s infinite linear;
}
}
.message_header {
vertical-align: middle;
text-align: left;