summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2020-07-21 02:35:33 +0300
committerDerick Montague <derick.montague@ibm.com>2020-07-28 00:44:15 +0300
commitd7e7a16b15dd9c4753a7ee223a89081fa23b3ba8 (patch)
treea112c86431dec8bb36bb11d6375fed50afe1b55a /src/views
parentfc16f3c268a9d35f889f5770331d11e87ab16af3 (diff)
downloadwebui-vue-d7e7a16b15dd9c4753a7ee223a89081fa23b3ba8.tar.xz
Update form fields to match style guide
Updates inputs, select, form field background color, validation text size, and field focus state. New styles have a darker form field background color. Form fields on dark backgrounds will remain white. Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: Ifa14a57f764335b196b129e6614d7a1f1c27d7ad
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Control/ServerPowerOperations/BootSettings.vue8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/views/Control/ServerPowerOperations/BootSettings.vue b/src/views/Control/ServerPowerOperations/BootSettings.vue
index 8f54cbb8..c56bcf50 100644
--- a/src/views/Control/ServerPowerOperations/BootSettings.vue
+++ b/src/views/Control/ServerPowerOperations/BootSettings.vue
@@ -1,5 +1,5 @@
<template>
- <div class="boot-settings p-3">
+ <div class="form-background p-3">
<b-form novalidate @submit.prevent="handleSubmit">
<b-form-group
:label="
@@ -145,9 +145,3 @@ export default {
}
};
</script>
-
-<style lang="scss" scoped>
-.boot-settings {
- background-color: gray('200');
-}
-</style>