Merge pull request #919 from kkrisstoff/add/raise-hand-icon

rise-hand-ico: blured class added
This commit is contained in:
yanas 2016-09-23 11:59:40 -05:00 committed by GitHub
commit a054a0d61d
4 changed files with 2 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
node_modules
.DS_Store
*.swp
.idea/
*.iml

View File

@ -110,10 +110,6 @@
cursor: default;
}
.button.toggled {
color: $toolbarButtonToggled;
}
a.button.unclickable:hover,
a.button.unclickable:active,
a.button.unclickable.selected{

View File

@ -27,7 +27,6 @@ $tooltipBg: rgba(0,0,0, 0.7);
// Toolbar
$toolbarSelectBackground: rgba(0, 0, 0, .6);
$toolbarButtonToggled: #44A5FF;
$toolbarBadgeBackground: #165ECC;
$toolbarBadgeColor: #FFFFFF;

View File

@ -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);
},
/**