summaryrefslogtreecommitdiff
path: root/src/assets/styles/_table.scss
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-01-06 18:36:16 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-01-29 01:20:27 +0300
commit5fa09a25c207d13ec1c9a8df92fc058f15a872e1 (patch)
tree3449a5f1c691dddd6f1e6ecc22abc0f5050b1b8f /src/assets/styles/_table.scss
parent5e7ac49058e5dc37fd43ecf3c0d06f5dda14af5b (diff)
downloadwebui-vue-5fa09a25c207d13ec1c9a8df92fc058f15a872e1.tar.xz
Update local user layout and styles
- Add BVConfig plugin to modify boostrap component defaults - Add vuelidate - Add package and basic validations to user form - Add all user form validations - Add checks for edit user Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I301a65071c5cdbe16f10ce6a2a6bfa1b2516dc3d
Diffstat (limited to 'src/assets/styles/_table.scss')
-rw-r--r--src/assets/styles/_table.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/assets/styles/_table.scss b/src/assets/styles/_table.scss
new file mode 100644
index 00000000..ff1ed302
--- /dev/null
+++ b/src/assets/styles/_table.scss
@@ -0,0 +1,21 @@
+.table-light {
+ td {
+ border-top: none;
+ border-bottom: 1px solid $gray-300;
+ }
+}
+
+.thead-light.thead-light {
+ th {
+ border: none;
+ color: $gray-900;
+ }
+}
+
+.table-cell__actions {
+ text-align: right;
+ .btn {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+}