Appease the scss linter

This commit is contained in:
Travis Ralston 2019-08-23 09:20:28 -06:00
parent 160396ca9e
commit 266e3af475

View file

@ -15,53 +15,48 @@ limitations under the License.
*/ */
.mx_TabbedIntegrationManagerDialog .mx_Dialog { .mx_TabbedIntegrationManagerDialog .mx_Dialog {
width: 60%; width: 60%;
height: 70%; height: 70%;
overflow: hidden; overflow: hidden;
padding: 0; padding: 0;
max-width: initial; max-width: initial;
max-height: initial; max-height: initial;
position: relative; position: relative;
} }
.mx_TabbedIntegrationManagerDialog_container { .mx_TabbedIntegrationManagerDialog_container {
// Full size of the dialog, whatever it is // Full size of the dialog, whatever it is
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
.mx_TabbedIntegrationManagerDialog_currentManager { .mx_TabbedIntegrationManagerDialog_currentManager {
width: 100%; width: 100%;
height: 100%; height: 100%;
border-top: 1px solid $accent-color; border-top: 1px solid $accent-color;
iframe { iframe {
background-color: #fff; background-color: #fff;
border: 0; border: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
}
} }
}
} }
.mx_TabbedIntegrationManagerDialog_tab { .mx_TabbedIntegrationManagerDialog_tab {
display: inline-block; display: inline-block;
border: 1px solid $accent-color; border: 1px solid $accent-color;
border-bottom: 0; border-bottom: 0;
border-top-left-radius: 3px; border-top-left-radius: 3px;
border-top-right-radius: 3px; border-top-right-radius: 3px;
//background-color: $accent-color-50pct; padding: 10px 8px;
padding: 10px 8px; margin-right: 5px;
margin-right: 5px;
}
.mx_TabbedIntegrationManagerDialog_tab:first-child {
//margin-left: 8px;
} }
.mx_TabbedIntegrationManagerDialog_currentTab { .mx_TabbedIntegrationManagerDialog_currentTab {
background-color: $accent-color; background-color: $accent-color;
color: $accent-fg-color; color: $accent-fg-color;
} }