confirmation modal for deleting an application
- adds delete-confirmation Vue component - refactors some button styles to make them globally available
This commit is contained in:
@@ -213,12 +213,6 @@
|
||||
border-top: 0;
|
||||
padding: 3 * $gap 2 * $gap;
|
||||
|
||||
.usa-button-secondary {
|
||||
color: $color-red;
|
||||
background-color: $color-red-lightest;
|
||||
box-shadow: inset 0 0 0 1px $color-red;
|
||||
}
|
||||
|
||||
.usa-button-disabled {
|
||||
color: $color-gray-medium;
|
||||
background-color: $color-gray-lightest;
|
||||
@@ -271,10 +265,6 @@
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
.usa-button-danger {
|
||||
background: $color-red;
|
||||
}
|
||||
|
||||
select {
|
||||
padding-left: 1.2rem
|
||||
}
|
||||
|
@@ -11,3 +11,23 @@ button,
|
||||
opacity: 0.75;
|
||||
}
|
||||
}
|
||||
|
||||
.button-danger {
|
||||
background: $color-red;
|
||||
|
||||
&:hover {
|
||||
background-color: $color-red-darkest;
|
||||
}
|
||||
}
|
||||
|
||||
.button-danger-outline, input[type="button"].button-danger-outline {
|
||||
color: $color-red;
|
||||
background-color: $color-red-lightest;
|
||||
box-shadow: inset 0 0 0 1px $color-red;
|
||||
|
||||
&:hover {
|
||||
color: white;
|
||||
background-color: $color-red-darkest;
|
||||
box-shadow: inset 0 0 0 1px $color-red-darkest;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user