Component view app bar layout adjustments, adds noopener rel to links

This commit is contained in:
Mo Bitar
2019-04-14 09:15:13 -05:00
parent 23baf95b88
commit 47e4eb22ba
12 changed files with 1020 additions and 1006 deletions

View File

@@ -88,7 +88,7 @@ $heading-height: 75px;
iframe {
height: 50px;
width: 100%;
position: absolute;
position: absolute; // Required for autocomplete window to show
}
}

View File

@@ -6,6 +6,8 @@ $z-index-dropdown-menu: 100;
$z-index-resizer-overlay: 1000;
$z-index-panel-resizer: 1001;
$z-index-component-view: 1000;
$z-index-footer-bar: 2000;
$z-index-footer-bar-item: 2000;
$z-index-footer-bar-item-panel: 2000;
@@ -188,7 +190,6 @@ $footer-height: 32px;
}
.section-title-bar {
font-weight: bold;
.padded {
padding: 0 14px;

View File

@@ -180,6 +180,7 @@
.sn-component {
min-width: 100%;
z-index: $z-index-component-view;
}
.loading-overlay {

View File

@@ -19,6 +19,14 @@
.sk-app-bar {
&.dynamic-height {
min-height: 2rem !important;
height: inherit !important;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
&.no-top-edge {
border-top: 0;
}