mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Add auto-update and pre-release update user settings - Add settings in user preferences for auto-updating (default false) and for allowing pre-release versions (default false) - Use in-Lens notifications instead of OS notifications as those were found to be flaky - Add rudimentary main->renderer notification system. - Remove options, always confirm, never auto prelease - Changed "yes later" to "yes on quit" - move register IpcHandlers - use moment instead of dateformat - moved formatting notification buttons to renderer - move to RenderButtons as function component - explicitly only send notifications to main view - move delay to utils, always retry even if check failed - fix notification rendering and disabled the auto-updater for integration tests - update integration runner to output logs on failure - pin minikube version Signed-off-by: Sebastian Malton <sebastian@malton.name>
51 lines
912 B
SCSS
51 lines
912 B
SCSS
.Notifications {
|
|
@include hidden-scrollbar;
|
|
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
padding: $padding * 2;
|
|
max-height: 100vh;
|
|
z-index: 100000;
|
|
height: min-content!important;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
.notification {
|
|
flex: 0 0;
|
|
padding: $padding;
|
|
border-radius: 3px;
|
|
min-width: 350px;
|
|
max-width: 35vw;
|
|
word-break: break-word;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: $margin * 2;
|
|
}
|
|
|
|
.ButtonPannel button:not(:last-of-type) {
|
|
margin-right: $margin;
|
|
}
|
|
|
|
> .message {
|
|
white-space: pre-line;
|
|
padding-left: $padding;
|
|
padding-right: $padding * 2;
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
@each $status, $color in (ok: $colorOk, error: $colorError, info: $colorInfo) {
|
|
&.#{$status} {
|
|
background: $color;
|
|
color: $color-white;
|
|
box-shadow: 0 0 20px $boxShadow;
|
|
}
|
|
}
|
|
}
|
|
}
|