Commit 33e8621a by marco Committed by Jay Zoldak

cursor state for discussions (not inline) span text needed to be set to pointer

parent 18759b21
...@@ -2456,6 +2456,10 @@ body.discussion { ...@@ -2456,6 +2456,10 @@ body.discussion {
margin-right: 10px; margin-right: 10px;
opacity:.8; opacity:.8;
span {
cursor: pointer;
}
&:hover { &:hover {
@include transition(opacity .2s); @include transition(opacity .2s);
opacity: 1; opacity: 1;
...@@ -2469,7 +2473,6 @@ body.discussion { ...@@ -2469,7 +2473,6 @@ body.discussion {
position: relative; position: relative;
right:-20px; right:-20px;
top:-13px; top:-13px;
opacity:.6;
margin-right:35px; margin-right:35px;
margin-top:13px; margin-top:13px;
opacity: 1; opacity: 1;
...@@ -2498,12 +2501,14 @@ body.discussion { ...@@ -2498,12 +2501,14 @@ body.discussion {
.pinned span { .pinned span {
color: #B82066; color: #B82066;
font-style: italic; font-style: italic;
//cursor change is here since pins are read-only for inline discussions.
cursor: default; cursor: default;
} }
.notpinned span { .notpinned span {
color: #888; color: #888;
font-style: italic; font-style: italic;
//cursor change is here since pins are read-only for inline discussions.
cursor: default; cursor: default;
} }
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
</header> </header>
<div class="post-body">${'<%- body %>'}</div> <div class="post-body">${'<%- body %>'}</div>
<div class="discussion-flag-abuse notflagged" data-role="thread-flag" data-tooltip="report misuse"> <div class="discussion-flag-abuse notflagged" data-role="thread-flag" data-tooltip="Report Misuse">
<i class="icon"></i><span class="flag-label">Report Misuse</span></div> <i class="icon"></i><span class="flag-label">Report Misuse</span></div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment