Skip to content

Commit 5dca4d9

Browse files
committed
Fix visibility of Timeout status
1 parent e4a949c commit 5dca4d9

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

release-notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Release 3.2.1
2+
* Hide timeout status when not needed
3+
14
# Release 3.2.0
25
* Fix the state of MFA as it changes through undeclared states
36

src/assets/styles/ziti.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1867,10 +1867,14 @@ input, select {
18671867
#MfaTimeout {
18681868
cursor: pointer;
18691869
transition: var(--transition);
1870+
opacity: 0.0;
1871+
}
1872+
1873+
#MfaTimeout.open {
18701874
opacity: 1.0;
18711875
}
18721876

1873-
#MfaTimeout:hover {
1877+
#MfaTimeout.open:hover {
18741878
opacity: 0.8;
18751879
}
18761880

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zitidesktopedge",
33
"productName": "Ziti Desktop Edge (Preview)",
4-
"version": "3.2.0",
4+
"version": "3.2.1",
55
"homepage": "openziti.io",
66
"description": "Ziti Desktop Edge Client",
77
"main": "app.js",

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0
1+
3.2.1

0 commit comments

Comments
 (0)