mirror of https://github.com/vector-im/riot-web
convert attribute to class
parent
d42fa9d17a
commit
55566b35a2
|
@ -298,13 +298,13 @@ limitations under the License.
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.mx_EventTile_e2eIcon[hidden] {
|
||||
.mx_EventTile_e2eIcon.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* always override hidden attribute for blocked and warning */
|
||||
.mx_EventTile_e2eIcon[hidden][src="img/e2e-blocked.svg"],
|
||||
.mx_EventTile_e2eIcon[hidden][src="img/e2e-warning.svg"] {
|
||||
.mx_EventTile_e2eIcon.hidden[src="img/e2e-blocked.svg"],
|
||||
.mx_EventTile_e2eIcon.hidden[src="img/e2e-warning.svg"] {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
|
|
@ -745,7 +745,7 @@ function E2ePadlock(props) {
|
|||
if (SettingsStore.getValue("alwaysShowEncryptionIcons")) {
|
||||
return <img className="mx_EventTile_e2eIcon" {...props} />;
|
||||
} else {
|
||||
return <img className="mx_EventTile_e2eIcon" hidden {...props} />;
|
||||
return <img className="mx_EventTile_e2eIcon hidden" {...props} />;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue