1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-10-29 02:17:36 +01:00

Many small overall UI improvements

- proxy are now aware of their respective features;
- updated account status info and added also proxy info (especially to show when using an offline copy)
- conditionally enabled different features across the UI, based on user account / proxy available features
This commit is contained in:
Giulio Cesare Solaroli
2015-03-10 22:59:24 +01:00
parent 3d809a71db
commit 187959fd1e
19 changed files with 270 additions and 132 deletions

View File

@@ -1,44 +1,50 @@
.accountStatus {
background-color: green;
padding: 3px;
font-size: 10pt;
border-bottom: 1px solid white;
&.FULL {
.miscInfo {
.proxyInfo {
border-bottom: 1px solid white;
display: none;
visibility: hidden;
&.isExpiring {
display: block;
&.OFFLINE_COPY {
display:block;
visibility: visible;
background-color: yellow;
background-color: $clipperz-blue;
color: white;
.referenceDate {
padding-left: 10px;
}
}
}
&.TRIAL {
background-color: orange;
&.isExpiring {
.accountStatus {
border-bottom: 1px solid white;
background-color: green;
padding: 3px;
font-size: 10pt;
&.FULL {
display: none;
visibility: hidden;
&.isExpiring {
display: block;
visibility: visible;
background-color: yellow;
}
}
&.TRIAL {
background-color: orange;
&.isExpiring {
background-color: red;
}
}
&.EXPIRED {
background-color: red;
}
}
&.EXPIRED {
background-color: red;
}
&.OFFLINE_COPY {
background-color: $clipperz-blue;
color: white;
.expirationDate {
display: none;
visibility: hidden;
}
.referenceDate {
padding-left: 10px;
}
}
}
}