Added set icons
This commit is contained in:
parent
b1dd7efed8
commit
ff13782ab5
|
@ -142,10 +142,12 @@ module.exports = React.createClass({
|
||||||
<div>
|
<div>
|
||||||
<div className={ favouriteClasses } onClick={this._onClickFavourite} >
|
<div className={ favouriteClasses } onClick={this._onClickFavourite} >
|
||||||
<img className="mx_RoomTagContextMenu_icon" src="img/icon_context_fave.svg" width="15" height="15" />
|
<img className="mx_RoomTagContextMenu_icon" src="img/icon_context_fave.svg" width="15" height="15" />
|
||||||
|
<img className="mx_RoomTagContextMenu_icon_set" src="img/icon_context_fave_on.svg" width="15" height="15" />
|
||||||
Favourite
|
Favourite
|
||||||
</div>
|
</div>
|
||||||
<div className={ lowPriorityClasses } onClick={this._onClickLowPriority} >
|
<div className={ lowPriorityClasses } onClick={this._onClickLowPriority} >
|
||||||
<img className="mx_RoomTagContextMenu_icon" src="img/icon_context_low.svg" width="15" height="15" />
|
<img className="mx_RoomTagContextMenu_icon" src="img/icon_context_low.svg" width="15" height="15" />
|
||||||
|
<img className="mx_RoomTagContextMenu_icon_set" src="img/icon_context_low_on.svg" width="15" height="15" />
|
||||||
Low Priority
|
Low Priority
|
||||||
</div>
|
</div>
|
||||||
<hr className="mx_RoomTagContextMenu_separator" />
|
<hr className="mx_RoomTagContextMenu_separator" />
|
||||||
|
|
|
@ -33,10 +33,20 @@ limitations under the License.
|
||||||
color: #ff0064;
|
color: #ff0064;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldSet {
|
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldSet {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldSet .mx_RoomTagContextMenu_icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldSet .mx_RoomTagContextMenu_icon_set {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldDisabled {
|
.mx_RoomTagContextMenu_field.mx_RoomTagContextMenu_fieldDisabled {
|
||||||
color: rgba(0, 0, 0, 0.2);
|
color: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
@ -44,6 +54,13 @@ limitations under the License.
|
||||||
.mx_RoomTagContextMenu_icon {
|
.mx_RoomTagContextMenu_icon {
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
|
display: inline-block
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomTagContextMenu_icon_set {
|
||||||
|
padding-right: 8px;
|
||||||
|
padding-left: 4px;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomTagContextMenu_separator {
|
.mx_RoomTagContextMenu_separator {
|
||||||
|
|
Loading…
Reference in New Issue