password-manager/frontend/delta/scss/style/accountStatus.scss
Giulio Cesare Solaroli 187959fd1e 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
2015-03-10 22:59:24 +01:00

50 lines
703 B
SCSS

.miscInfo {
.proxyInfo {
border-bottom: 1px solid white;
display: none;
visibility: hidden;
&.OFFLINE_COPY {
display:block;
visibility: visible;
background-color: $clipperz-blue;
color: white;
.referenceDate {
padding-left: 10px;
}
}
}
.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;
}
}
}