bitwarden-estensione-browser/src/notification/bar.scss

95 lines
1.3 KiB
SCSS
Raw Normal View History

body {
2021-12-21 15:43:35 +01:00
background-color: #ffffff;
padding: 0;
margin: 0;
height: 100%;
font-size: 14px;
line-height: 16px;
color: #333333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
2021-09-18 22:37:53 +02:00
.outer-wrapper {
2021-12-21 15:43:35 +01:00
padding: 0 10px;
border-bottom: 2px solid #175ddc;
display: grid;
grid-template-columns: 24px auto 55px;
grid-column-gap: 10px;
box-sizing: border-box;
min-height: 42px;
}
2021-09-18 22:37:53 +02:00
.inner-wrapper {
2021-12-21 15:43:35 +01:00
display: grid;
grid-template-columns: auto max-content;
}
2021-12-21 15:43:35 +01:00
.outer-wrapper > *,
.inner-wrapper > * {
align-self: center;
2021-09-18 22:37:53 +02:00
}
img {
2021-12-21 15:43:35 +01:00
border: 0;
margin: 0;
padding: 0;
}
#logo {
2021-12-21 15:43:35 +01:00
width: 24px;
height: 24px;
display: block;
}
#close {
2021-12-21 15:43:35 +01:00
width: 15px;
height: 15px;
display: block;
padding: 5px 0;
margin-right: 10px;
}
2016-12-30 22:47:07 +01:00
button:not(.link),
button:not(.neutral) {
2021-12-21 15:43:35 +01:00
background-color: #175ddc;
padding: 5px 15px;
border-radius: 3px;
color: #ffffff;
border: 0;
2016-12-30 22:47:07 +01:00
2021-12-21 15:43:35 +01:00
&:hover {
cursor: pointer;
background-color: #1751bd;
}
}
button.link,
button.neutral {
2021-12-21 15:43:35 +01:00
background: none;
padding: 5px 15px;
color: #175ddc;
border: 0;
2021-12-21 15:43:35 +01:00
&:hover {
cursor: pointer;
background: none;
text-decoration: underline;
}
}
.select-folder[isVaultLocked="true"] {
2021-12-21 15:43:35 +01:00
display: none;
}
@media screen and (max-width: 768px) {
2021-12-21 15:43:35 +01:00
.select-folder {
display: none;
}
}
@media (print) {
2021-12-21 15:43:35 +01:00
body {
display: none;
}
}