style communities button, make it visible again

This commit is contained in:
Bruno Windels 2018-12-10 15:34:05 +01:00
parent 10a989a003
commit fe76287035
3 changed files with 81 additions and 7 deletions

View file

@ -124,13 +124,28 @@ limitations under the License.
padding-right: 4px;
}
.mx_TagPanel_groupsButton {
.mx_TagPanel_groupsButton > .mx_AccessibleButton {
flex: auto;
margin-bottom: 17px;
margin-top: 18px;
height: 25px;
display: none;
}
height: 40px;
width: 40px;
border-radius: 20px;
background-color: $roomheader-addroom-color;
position: relative;
/* overwrite mx_RoleButton inline-block */
display: block !important;
.mx_TagPanel_groupsButton object {
pointer-events: none;
&:before {
background-color: $tagpanel-bg-color;
mask: url('../../img/icons-groups-nobg.svg');
mask-repeat: no-repeat;
mask-position: center 8px;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
}