Created
August 7, 2018 08:34
-
-
Save okoghenun/6566dc2d47c32eb89ac09188c9bc9529 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.5.4) | |
// ---- | |
@mixin emoji-menu-toggle-button { | |
line-height: 1; | |
padding: 0; | |
min-width: 16px; | |
color: gray; | |
fill: gray; | |
.fa { | |
position: relative; | |
font-size: 16px; | |
} | |
svg { | |
margin: 0; | |
} | |
.award-control-icon-positive, | |
.award-control-icon-super-positive { | |
position: absolute; | |
top: 0; | |
left: 0; | |
opacity: 0; | |
} | |
&:hover, | |
&:active, | |
&.is-active { | |
.danger-highlight { | |
color: red; | |
} | |
.link-highlight { | |
color: blue; | |
fill: blue; | |
} | |
.award-control-icon-neutral { | |
opacity: 0; | |
} | |
.award-control-icon-positive { | |
opacity: 1; | |
} | |
} | |
&:active, | |
&.is-active { | |
.award-control-icon-positive { | |
opacity: 0; | |
} | |
.award-control-icon-super-positive { | |
opacity: 1; | |
} | |
} | |
} | |
.note-action-button { | |
@include emoji-menu-toggle-button; | |
} | |
.edit-user { | |
.clear-user-status { | |
svg { | |
fill: gray; | |
} | |
} | |
.emoji-menu-toggle-button { | |
@include emoji-menu-toggle-button; | |
.no-emoji-placeholder { | |
position: relative; | |
svg { | |
fill: gray; | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.note-action-button { | |
line-height: 1; | |
padding: 0; | |
min-width: 16px; | |
color: gray; | |
fill: gray; | |
} | |
.note-action-button .fa { | |
position: relative; | |
font-size: 16px; | |
} | |
.note-action-button svg { | |
margin: 0; | |
} | |
.note-action-button .award-control-icon-positive, | |
.note-action-button .award-control-icon-super-positive { | |
position: absolute; | |
top: 0; | |
left: 0; | |
opacity: 0; | |
} | |
.note-action-button:hover .danger-highlight, .note-action-button:active .danger-highlight, .note-action-button.is-active .danger-highlight { | |
color: red; | |
} | |
.note-action-button:hover .link-highlight, .note-action-button:active .link-highlight, .note-action-button.is-active .link-highlight { | |
color: blue; | |
fill: blue; | |
} | |
.note-action-button:hover .award-control-icon-neutral, .note-action-button:active .award-control-icon-neutral, .note-action-button.is-active .award-control-icon-neutral { | |
opacity: 0; | |
} | |
.note-action-button:hover .award-control-icon-positive, .note-action-button:active .award-control-icon-positive, .note-action-button.is-active .award-control-icon-positive { | |
opacity: 1; | |
} | |
.note-action-button:active .award-control-icon-positive, .note-action-button.is-active .award-control-icon-positive { | |
opacity: 0; | |
} | |
.note-action-button:active .award-control-icon-super-positive, .note-action-button.is-active .award-control-icon-super-positive { | |
opacity: 1; | |
} | |
.edit-user .clear-user-status svg { | |
fill: gray; | |
} | |
.edit-user .emoji-menu-toggle-button { | |
line-height: 1; | |
padding: 0; | |
min-width: 16px; | |
color: gray; | |
fill: gray; | |
} | |
.edit-user .emoji-menu-toggle-button .fa { | |
position: relative; | |
font-size: 16px; | |
} | |
.edit-user .emoji-menu-toggle-button svg { | |
margin: 0; | |
} | |
.edit-user .emoji-menu-toggle-button .award-control-icon-positive, | |
.edit-user .emoji-menu-toggle-button .award-control-icon-super-positive { | |
position: absolute; | |
top: 0; | |
left: 0; | |
opacity: 0; | |
} | |
.edit-user .emoji-menu-toggle-button:hover .danger-highlight, .edit-user .emoji-menu-toggle-button:active .danger-highlight, .edit-user .emoji-menu-toggle-button.is-active .danger-highlight { | |
color: red; | |
} | |
.edit-user .emoji-menu-toggle-button:hover .link-highlight, .edit-user .emoji-menu-toggle-button:active .link-highlight, .edit-user .emoji-menu-toggle-button.is-active .link-highlight { | |
color: blue; | |
fill: blue; | |
} | |
.edit-user .emoji-menu-toggle-button:hover .award-control-icon-neutral, .edit-user .emoji-menu-toggle-button:active .award-control-icon-neutral, .edit-user .emoji-menu-toggle-button.is-active .award-control-icon-neutral { | |
opacity: 0; | |
} | |
.edit-user .emoji-menu-toggle-button:hover .award-control-icon-positive, .edit-user .emoji-menu-toggle-button:active .award-control-icon-positive, .edit-user .emoji-menu-toggle-button.is-active .award-control-icon-positive { | |
opacity: 1; | |
} | |
.edit-user .emoji-menu-toggle-button:active .award-control-icon-positive, .edit-user .emoji-menu-toggle-button.is-active .award-control-icon-positive { | |
opacity: 0; | |
} | |
.edit-user .emoji-menu-toggle-button:active .award-control-icon-super-positive, .edit-user .emoji-menu-toggle-button.is-active .award-control-icon-super-positive { | |
opacity: 1; | |
} | |
.edit-user .emoji-menu-toggle-button .no-emoji-placeholder { | |
position: relative; | |
} | |
.edit-user .emoji-menu-toggle-button .no-emoji-placeholder svg { | |
fill: gray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment