Merge pull request #919 from kkrisstoff/add/raise-hand-icon
rise-hand-ico: blured class added
This commit is contained in:
commit
a054a0d61d
|
@ -1,4 +1,5 @@
|
|||
node_modules
|
||||
.DS_Store
|
||||
*.swp
|
||||
.idea/
|
||||
*.iml
|
||||
|
|
|
@ -110,10 +110,6 @@
|
|||
cursor: default;
|
||||
}
|
||||
|
||||
.button.toggled {
|
||||
color: $toolbarButtonToggled;
|
||||
}
|
||||
|
||||
a.button.unclickable:hover,
|
||||
a.button.unclickable:active,
|
||||
a.button.unclickable.selected{
|
||||
|
|
|
@ -27,7 +27,6 @@ $tooltipBg: rgba(0,0,0, 0.7);
|
|||
|
||||
// Toolbar
|
||||
$toolbarSelectBackground: rgba(0, 0, 0, .6);
|
||||
$toolbarButtonToggled: #44A5FF;
|
||||
|
||||
$toolbarBadgeBackground: #165ECC;
|
||||
$toolbarBadgeColor: #FFFFFF;
|
||||
|
|
|
@ -586,7 +586,7 @@ const Toolbar = {
|
|||
* Toggles / untoggles the view for raised hand.
|
||||
*/
|
||||
_toggleRaiseHand(isRaisedHand) {
|
||||
$('#toolbar_button_raisehand').toggleClass("toggled", isRaisedHand);
|
||||
$('#toolbar_button_raisehand').toggleClass("glow", isRaisedHand);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue