Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit a6e9ecc

Browse files
author
Billy Clark
committed
logos on disabled cards for the hub were to small
1 parent a1d9dca commit a6e9ecc

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

themes/material/common-head-elements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
$colors = htmlentities($this->configuration->getValue('theme.color-scheme') ?: 'indigo-purple');
3333
?>
3434
<link rel="stylesheet" href="material.<?= $colors ?>.1.2.1.min.css">
35-
<link rel="stylesheet" href="styles.2.2.2.css">
35+
<link rel="stylesheet" href="styles.2.2.3.css">
3636

3737
<script async src="material.1.2.1.min.js"></script>
3838

themes/material/mfa/prompt-for-mfa-backupcode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<form layout-children="column" method="post" autocomplete="off">
1919
<div class="mdl-card mdl-shadow--8dp">
2020
<div class="mdl-card__media white-bg margin" layout-children="column">
21-
<img src="mfa-backupcode.svg"
21+
<img src="mfa-backupcode.svg" class="icon"
2222
alt="<?= $this->t('{material:mfa:backupcode_icon}') ?>">
2323
</div>
2424

themes/material/mfa/prompt-for-mfa-totp.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
<form layout-children="column" method="post" autocomplete="off">
1919
<div class="mdl-card mdl-shadow--8dp">
2020
<div class="mdl-card__media white-bg margin" layout-children="column">
21-
<img src="mfa-totp.svg" alt="<?= $this->t('{material:mfa:totp_icon}') ?>">
21+
<img src="mfa-totp.svg" alt="<?= $this->t('{material:mfa:totp_icon}') ?>"
22+
class="icon">
2223
</div>
2324

2425
<div class="mdl-card__title center">

themes/material/mfa/prompt-for-mfa-u2f.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ function createHiddenInput(name) {
115115
<form layout-children="column" method="post">
116116
<div class="mdl-card mdl-shadow--8dp">
117117
<div class="mdl-card__media white-bg margin" layout-children="column">
118-
<img src="mfa-u2f.svg" alt="<?= $this->t('{material:mfa:u2f_icon}') ?>">
118+
<img src="mfa-u2f.svg" alt="<?= $this->t('{material:mfa:u2f_icon}') ?>"
119+
class="icon">
119120
</div>
120121

121122
<div class="mdl-card__title center">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ form p.error > i {
203203
rgba(200,200,200,1) 100%);
204204
}
205205

206-
.mdl-card > .mdl-card__media > img {
206+
.mdl-card > .mdl-card__media > img.icon {
207207
max-width: 24px;
208208
}
209209

0 commit comments

Comments
 (0)