Add base style for button for cursor:pointer, update default btn bg and confirm yes btn color

This commit is contained in:
advplyr 2025-03-25 17:47:11 -05:00
parent 2ce0c7ea47
commit 366fd1a6da
3 changed files with 7 additions and 2 deletions

View File

@ -16,6 +16,11 @@
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
[role='button'],
button {
cursor: pointer;
}
}
@theme {

View File

@ -68,7 +68,7 @@ export default {
return this.confirmPromptOptions.yesButtonText || this.$strings.ButtonYes
},
yesButtonColor() {
return this.confirmPromptOptions.yesButtonColor || 'bg-success'
return this.confirmPromptOptions.yesButtonColor || 'success'
},
checkboxDefaultValue() {
return !!this.confirmPromptOptions.checkboxDefaultValue

View File

@ -16,7 +16,7 @@ export default {
disabled: Boolean,
bgColor: {
type: String,
default: 'primary'
default: 'bg-primary'
},
outlined: Boolean,
borderless: Boolean,