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
|
node_modules
|
||||||
|
.DS_Store
|
||||||
*.swp
|
*.swp
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
|
|
|
@ -110,10 +110,6 @@
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.toggled {
|
|
||||||
color: $toolbarButtonToggled;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.button.unclickable:hover,
|
a.button.unclickable:hover,
|
||||||
a.button.unclickable:active,
|
a.button.unclickable:active,
|
||||||
a.button.unclickable.selected{
|
a.button.unclickable.selected{
|
||||||
|
|
|
@ -27,7 +27,6 @@ $tooltipBg: rgba(0,0,0, 0.7);
|
||||||
|
|
||||||
// Toolbar
|
// Toolbar
|
||||||
$toolbarSelectBackground: rgba(0, 0, 0, .6);
|
$toolbarSelectBackground: rgba(0, 0, 0, .6);
|
||||||
$toolbarButtonToggled: #44A5FF;
|
|
||||||
|
|
||||||
$toolbarBadgeBackground: #165ECC;
|
$toolbarBadgeBackground: #165ECC;
|
||||||
$toolbarBadgeColor: #FFFFFF;
|
$toolbarBadgeColor: #FFFFFF;
|
||||||
|
|
|
@ -586,7 +586,7 @@ const Toolbar = {
|
||||||
* Toggles / untoggles the view for raised hand.
|
* Toggles / untoggles the view for raised hand.
|
||||||
*/
|
*/
|
||||||
_toggleRaiseHand(isRaisedHand) {
|
_toggleRaiseHand(isRaisedHand) {
|
||||||
$('#toolbar_button_raisehand').toggleClass("toggled", isRaisedHand);
|
$('#toolbar_button_raisehand').toggleClass("glow", isRaisedHand);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue