keepassxc-browser/keepassxc-browser/css/notification.css

82 lines
1.9 KiB
CSS

.kpxc-notification {
border: 1px solid transparent;
border-radius: 4px;
box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
cursor: pointer;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
letter-spacing: normal !important;
word-spacing: normal !important;
text-rendering: auto !important;
margin: 0px auto;
margin-bottom: 20px;
padding: 15px;
padding-right: 35px;
position: fixed;
right: 0px;
top: 0px;
width: 520px;
z-index: 2147483646;
}
.kpxc-notification span {
padding: 2px;
}
.kpxc-notification .kpxc-banner-icon {
width: 24px;
height: 24px;
padding: 10px;
margin-right: 4px;
overflow: hidden;
background: url('chrome-extension://__MSG_@@extension_id__/icons/keepassxc.svg') right no-repeat;
background-size: contain;
}
.kpxc-notification .kpxc-banner-icon-moz {
width: 24px;
height: 24px;
padding: 10px;
margin-right: 4px;
overflow: hidden;
background: url('moz-extension://__MSG_@@extension_id__/icons/keepassxc.svg') right no-repeat;
background-size: contain;
}
.kpxc-notification .kpxc-banner-icon-safari {
width: 24px;
height: 24px;
padding: 10px;
margin-right: 4px;
overflow: hidden;
background: url('safari-web-extension://__MSG_@@extension_id__/icons/keepassxc.svg') right no-repeat;
background-size: contain;
}
.kpxc-notification .kpxc-label {
font-weight: bold;
}
.kpxc-notification-success {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
}
.kpxc-notification-warning {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
}
.kpxc-notification-info {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}
.kpxc-notification-error {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}