summaryrefslogtreecommitdiff
path: root/src/assets
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets')
-rw-r--r--src/assets/styles/_form-components.scss29
-rw-r--r--src/assets/styles/_modal.scss7
-rw-r--r--src/assets/styles/_obmc-custom.scss6
-rw-r--r--src/assets/styles/_table.scss21
4 files changed, 1 insertions, 62 deletions
diff --git a/src/assets/styles/_form-components.scss b/src/assets/styles/_form-components.scss
deleted file mode 100644
index 41b291b2..00000000
--- a/src/assets/styles/_form-components.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-.form-text {
- margin-top: -$spacer / 4;
- margin-bottom: $spacer / 2;
- color: $gray-800;
-}
-
-.col-form-label {
- color: $gray-800;
- font-size: 14px;
-}
-
-.form-group {
- margin-bottom: $spacer * 2;
-}
-
-.custom-select,
-.custom-control-label,
-.form-control {
- //important needed to override validation colors on radio labels
- color: $gray-900!important;
- border-color: $gray-400!important;
- &::before {
- border-color: $primary;
- }
- &.is-invalid,
- &:invalid {
- border-bottom: 2px solid $danger!important;
- }
-} \ No newline at end of file
diff --git a/src/assets/styles/_modal.scss b/src/assets/styles/_modal.scss
deleted file mode 100644
index b20327e7..00000000
--- a/src/assets/styles/_modal.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-.modal-header {
- .close {
- font-weight: normal;
- color: $gray-900;
- opacity: 1;
- }
-} \ No newline at end of file
diff --git a/src/assets/styles/_obmc-custom.scss b/src/assets/styles/_obmc-custom.scss
index d20e64e4..e87e01bb 100644
--- a/src/assets/styles/_obmc-custom.scss
+++ b/src/assets/styles/_obmc-custom.scss
@@ -1,5 +1,4 @@
$enable-rounded: false;
-$enable-validation-icons: false;
// Required
@import "~bootstrap/scss/functions";
@@ -53,7 +52,4 @@ $colors: map-remove($theme-colors, "light", "dark");
@import "~bootstrap-vue/src/index.scss";
-@import "./buttons";
-@import "./form-components";
-@import "./modal";
-@import "./table"; \ No newline at end of file
+@import "./buttons"; \ No newline at end of file
diff --git a/src/assets/styles/_table.scss b/src/assets/styles/_table.scss
deleted file mode 100644
index ff1ed302..00000000
--- a/src/assets/styles/_table.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-.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;
- }
-}