mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-27 17:18:04 +01:00
break words on password history
This commit is contained in:
parent
88cde6bfdc
commit
1bc1e86a53
@ -20,7 +20,7 @@
|
|||||||
<div class="box-content-row box-content-row-flex" *ngFor="let h of history">
|
<div class="box-content-row box-content-row-flex" *ngFor="let h of history">
|
||||||
<div class="row-main">
|
<div class="row-main">
|
||||||
<div class="row-main-content">
|
<div class="row-main-content">
|
||||||
<span class="text monospaced no-ellipsis">
|
<span class="text monospaced no-ellipsis break-all">
|
||||||
{{h.password}}
|
{{h.password}}
|
||||||
</span>
|
</span>
|
||||||
<span class="detail">{{h.date | date:'medium'}}</span>
|
<span class="detail">{{h.date | date:'medium'}}</span>
|
||||||
|
@ -68,6 +68,10 @@ p.lead {
|
|||||||
padding-bottom: 0 !important;
|
padding-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.break-all {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@ -124,14 +128,6 @@ app-root > #loading {
|
|||||||
color: $text-muted;
|
color: $text-muted;
|
||||||
}
|
}
|
||||||
|
|
||||||
app-password-generator .password-block {
|
|
||||||
font-size: $font-size-large;
|
|
||||||
word-break: break-all;
|
|
||||||
font-family: $font-family-monospace;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
app-vault-icon {
|
app-vault-icon {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
@ -7,3 +7,11 @@ app-sync {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
app-password-generator .password-block {
|
||||||
|
font-size: $font-size-large;
|
||||||
|
word-break: break-all;
|
||||||
|
font-family: $font-family-monospace;
|
||||||
|
text-align: center;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user