Merge pull request #6692 from matrix-org/jryans/changelog-link-colour
Fix changelog link colour back to blue
This commit is contained in:
commit
32ad94bce5
2 changed files with 12 additions and 13 deletions
|
@ -381,11 +381,6 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus {
|
||||||
font-size: $font-14px;
|
font-size: $font-14px;
|
||||||
color: $primary-content;
|
color: $primary-content;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
a {
|
|
||||||
color: $accent-color;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Dialog_buttons {
|
.mx_Dialog_buttons {
|
||||||
|
|
|
@ -149,10 +149,12 @@ export default class SecurityRoomSettingsTab extends React.Component<IProps, ISt
|
||||||
"To avoid these issues, create a <a>new encrypted room</a> for " +
|
"To avoid these issues, create a <a>new encrypted room</a> for " +
|
||||||
"the conversation you plan to have.",
|
"the conversation you plan to have.",
|
||||||
null,
|
null,
|
||||||
{ "a": (sub) => <a onClick={() => {
|
{ "a": (sub) => <a
|
||||||
dialog.close();
|
className="mx_linkButton"
|
||||||
this.createNewRoom(false, true);
|
onClick={() => {
|
||||||
}}> { sub } </a> },
|
dialog.close();
|
||||||
|
this.createNewRoom(false, true);
|
||||||
|
}}> { sub } </a> },
|
||||||
) } </p>
|
) } </p>
|
||||||
</div>,
|
</div>,
|
||||||
|
|
||||||
|
@ -248,10 +250,12 @@ export default class SecurityRoomSettingsTab extends React.Component<IProps, ISt
|
||||||
"you plan to have.",
|
"you plan to have.",
|
||||||
null,
|
null,
|
||||||
{
|
{
|
||||||
"a": (sub) => <a onClick={() => {
|
"a": (sub) => <a
|
||||||
dialog.close();
|
className="mx_linkButton"
|
||||||
this.createNewRoom(true, false);
|
onClick={() => {
|
||||||
}}> { sub } </a>,
|
dialog.close();
|
||||||
|
this.createNewRoom(true, false);
|
||||||
|
}}> { sub } </a>,
|
||||||
},
|
},
|
||||||
) } </p>
|
) } </p>
|
||||||
</div>,
|
</div>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue