diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/scss/_components.scss | 2 | ||||
-rw-r--r-- | resources/scss/_modules.scss | 1 | ||||
-rw-r--r-- | resources/scss/common/_layout.scss | 24 | ||||
-rw-r--r-- | resources/scss/tier-support/_splitPane.scss | 5 | ||||
-rw-r--r-- | resources/scss/tier-support/_tierSupport.scss | 3 |
5 files changed, 23 insertions, 12 deletions
diff --git a/resources/scss/_components.scss b/resources/scss/_components.scss index 38f9189..2b1d251 100644 --- a/resources/scss/_components.scss +++ b/resources/scss/_components.scss @@ -21,7 +21,7 @@ * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ - + @import "components/validationForm"; @import "components/slidePanel"; @import "components/toggleInput"; diff --git a/resources/scss/_modules.scss b/resources/scss/_modules.scss index d2df043..085a59a 100644 --- a/resources/scss/_modules.scss +++ b/resources/scss/_modules.scss @@ -31,3 +31,4 @@ @import "setAttribute/editAttributeform.scss"; @import "inventory/inventory.scss"; @import "vnfSearch/vnfSearch.scss"; +@import "tier-support/tierSupport.scss"; diff --git a/resources/scss/common/_layout.scss b/resources/scss/common/_layout.scss index 07b5b4c..fedf2fa 100644 --- a/resources/scss/common/_layout.scss +++ b/resources/scss/common/_layout.scss @@ -20,7 +20,7 @@ * * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ - + .hidden { display: none; } @@ -41,14 +41,18 @@ .showContainer { } +.spinner-container { + overflow: hidden; + position: relative; +} + .spinner { - position: fixed; + position: absolute; z-index: 999; - height: 2em; - width: 2em; - margin: auto; - top: 0; - left: 0; - bottom: 0; - right: 0; -}
\ No newline at end of file + left: 50%; + top: 49%; +} + +.spinner-content { + opacity: 0.2; +} diff --git a/resources/scss/tier-support/_splitPane.scss b/resources/scss/tier-support/_splitPane.scss index dc07be0..c174920 100644 --- a/resources/scss/tier-support/_splitPane.scss +++ b/resources/scss/tier-support/_splitPane.scss @@ -21,9 +21,12 @@ * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ +div.SplitPane.vertical { + position: initial !important; +} + .SplitPane { min-width: $minimum-application-width; - height: calc(100% - #{$total-header-height}) !important; } .Resizer { diff --git a/resources/scss/tier-support/_tierSupport.scss b/resources/scss/tier-support/_tierSupport.scss new file mode 100644 index 0000000..e63bffd --- /dev/null +++ b/resources/scss/tier-support/_tierSupport.scss @@ -0,0 +1,3 @@ +.tier-support-ui { + height: calc(100% - #{$total-header-height}) !important; +} |