1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00

tooltip rendering bug

This commit is contained in:
Harvey Kandola 2017-11-27 16:17:17 +00:00
parent 1f0fc844a8
commit 533a0f094e
4 changed files with 42 additions and 3 deletions

View file

@ -470,6 +470,41 @@
}
}
.button-icon-theme {
display: inline-block;
cursor: default;
@include ease-in();
> i {
color: $color-primary;
font-size: 2rem;
@include ease-in();
}
&:hover {
> i {
color: darken($color-primary, 5%);
}
}
}
.button-icon-theme-light {
display: inline-block;
cursor: default;
@include ease-in();
> i {
color: $color-primary-light;
font-size: 2rem;
@include ease-in();
}
&:hover {
> i {
color: darken($color-primary-light, 5%);
}
}
}
.button-icon-small {
> i {
font-size: 1.3rem;