Compare commits

...

5 Commits

Author SHA1 Message Date
Rukmini Bose
713b9699bf Merge branch 'master' into mobile-hidden-pane 2024-04-01 14:15:57 -07:00
Rukmini Bose
6596550efb Add mobile e2e test stub 2024-04-01 14:10:32 -07:00
Rukmini Bose
1d1d5a001b Fix main view container width and better fix for long folder name 2024-03-28 15:31:57 -07:00
Rukmini Bose
fb70796380 Fix long folder name issue 2024-03-28 10:28:06 -07:00
Rukmini Bose
6c6f0b1be3 add display:none to our problematic mobile class 2024-03-27 13:46:23 -07:00
5 changed files with 19 additions and 7 deletions

View File

@@ -92,4 +92,13 @@ test.describe('Smoke tests for @mobile', () => {
await expect(await page.getByLabel('Child Layout 1 Layout')).toBeVisible();
expect(await page.getByLabel('Child Layout 2 Layout').count()).toBe(0);
});
test.fixme(
'Ensure that the names of folders are very long are truncated and that the folder action buttons are visible',
async ({ page }) => {
test.info().annotations.push({
type: 'issue',
description: 'https://github.com/nasa/openmct/issues/7320'
});
}
);
});

View File

@@ -106,6 +106,10 @@
display: flex;
flex-flow: column nowrap;
flex: 1 1 auto;
body.mobile & {
width: 0;
}
}
&__name {

View File

@@ -30,7 +30,7 @@ $mobileOverlayMargin: 20px;
$mobileMenuIconD: 25px;
$phoneItemH: floor(math.div($gridItemMobile, 4));
$tabletItemH: floor(math.div($gridItemMobile, 3));
$shellTimeConductorMobileH: 90px;
$shellTimeConductorMobileH: 30px;
/************************** MOBILE TREE MENU DIMENSIONS */
$mobileTreeItemH: 35px;

View File

@@ -112,12 +112,6 @@
bottom: $shellTimeConductorH + $interiorMargin;
}
@include phonePortrait() {
.l-shell__main-container {
bottom: $shellTimeConductorMobileH + $interiorMargin;
}
}
.l-shell__time-conductor {
bottom: 0;
}

View File

@@ -360,4 +360,9 @@
}
}
} // Ends .body.desktop
body.mobile & {
.l-pane__expand-button {
display: none;
}
}
} // Ends .l-pane