bitwarden-estensione-browser/src/scss/plugins.scss

182 lines
4.1 KiB
SCSS
Raw Normal View History

2018-04-15 02:45:08 +02:00
$fa-font-path: "~font-awesome/fonts";
2018-01-27 19:12:06 +01:00
@import "~font-awesome/scss/font-awesome.scss";
@import "~angular2-toaster/toaster";
@import "~sweetalert2/src/sweetalert2.scss";
2018-01-27 19:12:06 +01:00
@import "variables.scss";
2018-01-26 20:12:41 +01:00
#toast-container {
.toast-close-button {
right: -0.15em;
}
.toast {
opacity: 1 !important;
background-image: none !important;
border-radius: $border-radius;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
display: flex;
align-items: center;
&:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
&:before {
font-family: FontAwesome;
font-size: 25px;
line-height: 20px;
float: left;
color: #ffffff;
2018-04-15 02:45:08 +02:00
padding-right: 10px;
2018-01-26 20:12:41 +01:00
margin: auto 0 auto -36px;
}
.toaster-icon {
display: none;
}
2018-08-02 14:48:48 +02:00
.toast-message {
p {
margin-bottom: 0.5rem;
&:last-child {
margin-bottom: 0;
}
}
}
2018-01-26 20:12:41 +01:00
&.toast-danger, &.toast-error {
background-image: none !important;
2018-05-30 21:21:41 +02:00
@include themify($themes) {
background-color: themed('dangerColor');
}
2018-01-26 20:12:41 +01:00
&:before {
content: "\f0e7";
margin-left: -30px;
}
}
&.toast-warning {
background-image: none !important;
2018-05-30 21:21:41 +02:00
@include themify($themes) {
background-color: themed('warningColor');
}
2018-01-26 20:12:41 +01:00
&:before {
content: "\f071";
}
}
&.toast-info {
background-image: none !important;
2018-05-30 21:21:41 +02:00
@include themify($themes) {
background-color: themed('infoColor');
}
2018-01-26 20:12:41 +01:00
&:before {
content: "\f05a";
}
}
&.toast-success {
background-image: none !important;
2018-05-30 21:21:41 +02:00
@include themify($themes) {
background-color: themed('successColor');
}
2018-01-26 20:12:41 +01:00
&:before {
content: "\f00C";
}
}
}
}
2019-02-13 16:06:58 +01:00
// SweetAlert2
2019-02-13 16:06:58 +01:00
.swal2-popup {
2019-02-13 16:06:58 +01:00
border-radius: $border-radius;
padding: 0;
width: 34em;
2019-02-13 16:06:58 +01:00
@include themify($themes) {
background-color: themed('backgroundColorAlt');
color: themed('textColor');
}
.swal2-content {
padding: 20px 20px 15px;
2019-02-14 20:00:09 +01:00
font-size: $font-size-base;
color: inherit;
2019-02-14 20:00:09 +01:00
label.checkbox {
margin-top: 10px;
display: flex;
text-align: left;
align-items: top;
input {
margin: 3px 5px 0 1px;
}
}
.swal2-input, .swal2-textarea {
border: 1px solid #000000;
border-radius: $border-radius;
margin-bottom: 0;
2020-02-24 16:13:26 +01:00
box-shadow: none;
// Inherit theme font-size
font-size: inherit;
// Sweetalert 1 did not have box-shadow
&:focus {
box-shadow: none;
}
@include themify($themes) {
border-color: themed('inputBorderColor');
color: themed('textColor');
background-color: themed('inputBackgroundColor');
}
&::-webkit-input-placeholder {
@include themify($themes) {
color: themed('inputPlaceholderColor');
}
}
}
2019-02-14 20:00:09 +01:00
}
.swal2-text {
text-align: left; // sweetalert1 behaviour
2019-02-13 16:06:58 +01:00
font-size: $font-size-base;
@include themify($themes) {
color: themed('textColor');
}
}
> .swal2-text:first-child {
2019-02-13 16:06:58 +01:00
margin-top: 20px;
}
.swal2-actions {
padding: 0 10px 10px 10px; // 0 due to padding to content being 15px
2019-02-13 16:06:58 +01:00
margin: 0;
justify-content: flex-end;
2019-02-13 16:06:58 +01:00
2020-02-24 16:13:26 +01:00
button {
margin-left: 10px;
2019-02-13 16:06:58 +01:00
@extend .btn;
2020-02-24 16:13:26 +01:00
&.swal2-confirm {
@extend .btn.primary;
font-weight: bold;
}
2019-02-13 16:06:58 +01:00
}
}
}