diff --git a/src/components/confirm/confirm.js b/src/components/confirm/confirm.js index 730ca3cd73..a09adcbcf5 100644 --- a/src/components/confirm/confirm.js +++ b/src/components/confirm/confirm.js @@ -24,7 +24,7 @@ define(['dialog', 'globalize'], function (dialog, globalize) { items.push({ name: options.confirmText || globalize.translate('ButtonOk'), id: 'ok', - type: options.primary === 'cancel' ? 'cancel' : 'submit' + type: options.primary === 'cancel' ? 'cancel' : 'delete' }); options.buttons = items; @@ -37,4 +37,4 @@ define(['dialog', 'globalize'], function (dialog, globalize) { return Promise.reject(); }); }; -}); \ No newline at end of file +}); diff --git a/src/components/themes/appletv/theme.css b/src/components/themes/appletv/theme.css index 43f1034ade..bdb8229eb2 100644 --- a/src/components/themes/appletv/theme.css +++ b/src/components/themes/appletv/theme.css @@ -102,6 +102,11 @@ html { background: #0cb0e8 } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit } diff --git a/src/components/themes/blueradiance/theme.css b/src/components/themes/blueradiance/theme.css index 840c0e23e0..9299dcdf84 100644 --- a/src/components/themes/blueradiance/theme.css +++ b/src/components/themes/blueradiance/theme.css @@ -89,6 +89,11 @@ html { color: #fff } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit } diff --git a/src/components/themes/dark/theme.css b/src/components/themes/dark/theme.css index da4c056023..1b9370be54 100644 --- a/src/components/themes/dark/theme.css +++ b/src/components/themes/dark/theme.css @@ -70,6 +70,11 @@ html { color: #fff } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit } diff --git a/src/components/themes/emby/theme.css b/src/components/themes/emby/theme.css index d948c3ae6f..88c098acf2 100644 --- a/src/components/themes/emby/theme.css +++ b/src/components/themes/emby/theme.css @@ -70,6 +70,11 @@ html { color: #fff } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit } diff --git a/src/components/themes/light/theme.css b/src/components/themes/light/theme.css index 65ceefb52c..7dac5dbc01 100644 --- a/src/components/themes/light/theme.css +++ b/src/components/themes/light/theme.css @@ -85,6 +85,11 @@ html { background: #0cb0e8 } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit } diff --git a/src/components/themes/purple-haze/theme.css b/src/components/themes/purple-haze/theme.css index 843b573059..2754e8db26 100644 --- a/src/components/themes/purple-haze/theme.css +++ b/src/components/themes/purple-haze/theme.css @@ -144,6 +144,11 @@ a[data-role=button] { background: #ff77f1 } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + #btnResetPassword, .btnForgotPassword, .btnCancel, diff --git a/src/components/themes/wmc/theme.css b/src/components/themes/wmc/theme.css index 081345c77c..9c48450794 100644 --- a/src/components/themes/wmc/theme.css +++ b/src/components/themes/wmc/theme.css @@ -95,6 +95,11 @@ html { color: #fff } +.button-delete { + background: rgb(247, 0, 0); + color: rgba(255, 255, 255, .87) +} + .checkboxLabel { color: inherit }