Create a secondary form button

This commit is contained in:
Jean-Baptiste Bellet
2021-09-22 10:32:10 +02:00
committed by Nihal M. Kelanthodika
parent 786b198f4d
commit 802c5c8c94
2 changed files with 20 additions and 0 deletions

View File

@@ -10,6 +10,12 @@ input[type='button'], input[type='submit'] {
background-color: $disabled-background;
color: #ffffff;
}
&.secondary:disabled {
background-color: #ebf3fb;
border: 1px solid #ebf3fb;
color: #AFCFEF;
}
}
.select2-container-disabled {

View File

@@ -85,6 +85,20 @@ button, .button {
width: 100%;
text-align: center;
}
&.secondary {
background-color: transparent;
border: 1px solid $color-btn-bg;
color: $color-btn-bg;
&:hover, &:active, &:focus {
background-color: #ebf3fb;
}
&:active:focus {
box-shadow: none;
}
}
}
span.info {