Skip to content

Commit f4274d8

Browse files
committed
More readability for the password.
1 parent 7f80caa commit f4274d8

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,12 @@ floating-toolbar.accented .bar .btn-flat {
496496
left: 370px;
497497
}
498498

499+
.password {
500+
font-family: "Verdana", "Helvetica", "Arial", sans-serif;
501+
letter-spacing: 1px;
502+
font-weight: bold;
503+
}
504+
499505
.webdav-ios-tuto {
500506
background-image: url("/resources/lmn_common/resources/img/webdav-app-ios-empty.png");
501507
width: 500px;

usr/lib/linuxmuster-webui/plugins/lmn_common/resources/styles.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,12 @@ floating-toolbar {
585585
left:370px;
586586
}
587587

588+
.password {
589+
font-family: "Verdana", "Helvetica", "Arial", sans-serif;
590+
letter-spacing: 1px;
591+
font-weight: bold;
592+
}
593+
588594
.webdav-ios-tuto {
589595
background-image: url("/resources/lmn_common/resources/img/webdav-app-ios-empty.png");
590596
width:500px;

usr/lib/linuxmuster-webui/plugins/lmn_users/resources/partial/showPassword.modal.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ <h3 translate>Password Information</h3>
66

77
<div style="padding: 0 20px;" ng:show="password != null">
88
<br />
9-
<table class="table" style="width: 350px;">
9+
<table class="table">
1010
<tr>
1111
<td><b translate>Loginname:</b></td>
1212
<td>{{username}}</td>
1313
<td> </td>
1414
</tr>
1515
<tr>
1616
<td><b translate>Password:</b></td>
17-
<td>{{password}}</td>
17+
<td class="password">{{password}}</td>
1818
<td>
1919
<progress-spinner ng:show="passwordStatus == null"></progress-spinner>
2020
<span style="color:{{passwordStatusColor}}">{{passwordStatus}}</span>

0 commit comments

Comments
 (0)