Update iconography for spaces
This commit is contained in:
parent
8369d42dd0
commit
20ea1436fc
5 changed files with 17 additions and 4 deletions
|
@ -130,6 +130,10 @@ $roomListCollapsedWidth: 68px;
|
||||||
mask-repeat: no-repeat;
|
mask-repeat: no-repeat;
|
||||||
background: $secondary-fg-color;
|
background: $secondary-fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.mx_LeftPanel_exploreButton_space::before {
|
||||||
|
mask-image: url('$(res)/img/element-icons/roomlist/browse.svg');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -339,11 +339,15 @@ $activeBorderColor: $secondary-fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_SpacePanel_iconPlus::before {
|
.mx_SpacePanel_iconPlus::before {
|
||||||
mask-image: url('$(res)/img/element-icons/plus.svg');
|
mask-image: url('$(res)/img/element-icons/roomlist/plus-circle.svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_SpacePanel_iconHash::before {
|
||||||
|
mask-image: url('$(res)/img/element-icons/roomlist/hash-circle.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_SpacePanel_iconExplore::before {
|
.mx_SpacePanel_iconExplore::before {
|
||||||
mask-image: url('$(res)/img/element-icons/roomlist/explore.svg');
|
mask-image: url('$(res)/img/element-icons/roomlist/browse.svg');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,9 @@ limitations under the License.
|
||||||
.mx_RoomList_iconExplore::before {
|
.mx_RoomList_iconExplore::before {
|
||||||
mask-image: url('$(res)/img/element-icons/roomlist/explore.svg');
|
mask-image: url('$(res)/img/element-icons/roomlist/explore.svg');
|
||||||
}
|
}
|
||||||
|
.mx_RoomList_iconBrowse::before {
|
||||||
|
mask-image: url('$(res)/img/element-icons/roomlist/browse.svg');
|
||||||
|
}
|
||||||
.mx_RoomList_iconDialpad::before {
|
.mx_RoomList_iconDialpad::before {
|
||||||
mask-image: url('$(res)/img/element-icons/roomlist/dialpad.svg');
|
mask-image: url('$(res)/img/element-icons/roomlist/dialpad.svg');
|
||||||
}
|
}
|
||||||
|
|
|
@ -392,7 +392,9 @@ export default class LeftPanel extends React.Component<IProps, IState> {
|
||||||
onEnter={this.onEnter}
|
onEnter={this.onEnter}
|
||||||
/>
|
/>
|
||||||
<AccessibleTooltipButton
|
<AccessibleTooltipButton
|
||||||
className="mx_LeftPanel_exploreButton"
|
className={classNames("mx_LeftPanel_exploreButton", {
|
||||||
|
mx_LeftPanel_exploreButton_space: !!this.state.activeSpace,
|
||||||
|
})}
|
||||||
onClick={this.onExplore}
|
onClick={this.onExplore}
|
||||||
title={_t("Explore rooms")}
|
title={_t("Explore rooms")}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -258,7 +258,7 @@ export class SpaceItem extends React.PureComponent<IItemProps, IItemState> {
|
||||||
onClick={this.onNewRoomClick}
|
onClick={this.onNewRoomClick}
|
||||||
/>
|
/>
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
iconClassName="mx_SpacePanel_iconPlus"
|
iconClassName="mx_SpacePanel_iconHash"
|
||||||
label={_t("Add existing room")}
|
label={_t("Add existing room")}
|
||||||
onClick={this.onAddExistingRoomClick}
|
onClick={this.onAddExistingRoomClick}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue