8000 Re-merge: limit tabs upates; lower aside margins by overmyheadandbody · Pull Request #4328 · adobecom/milo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Re-merge: limit tabs upates; lower aside margins #4328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions libs/mep/ace1052/aside/aside.css
Original file line number Diff line number Diff line change
Expand Up @@ -1286,6 +1286,12 @@
gap: unset;
}

.section:has(.aside:nth-child(3)) .aside [class^="detail-"],
.section:has(.aside:nth-child(3)) .aside [class^="heading-"]:only-of-type,
.section:has(.aside:nth-child(3)) .aside [class^="heading-"]:last-of-type {
margin-bottom: var(--spacing-xxs);
}

.section:has(.aside:nth-child(3)) .aside .foreground.container .text {
padding-inline: var(--spacing-xs);
}
Expand Down
1 change: 0 additions & 1 deletion libs/mep/ace1052/notification/notification.css
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,6 @@
}

/* mweb-test: notification sticky CTA */

.notification.button-full-width .action-area,
.notification.button-full-width .con-button {
width: 100%;
Expand Down
14 changes: 7 additions & 7 deletions libs/mep/ace1052/tabs/tabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -649,39 +649,39 @@
}

/* Block specific */
.tabs .tabList {
.tabs:has(merch-card) .tabList {
background: none;
box-shadow: none;
}

.tabs .tabList .tab-list-container {
.tabs:has(merch-card) .tabList .tab-list-container {
padding: 1px;
border-radius: var(--m-rounded-corners);
background: #f8f8f8;
overflow: hidden;
}

.tabs .tabList button {
.tabs:has(merch-card) .tabList button {
padding: 10px 18px;
border-radius: var(--m-rounded-corners);
border: none;
font-weight: 700;
color: var(--tabs-pill-bg-color);
}

.tabs .tabList button[aria-selected="true"],
.tabs .tabList button[aria-checked="true"] {
.tabs:has(merch-card) .tabList button[aria-selected="true"],
.tabs:has(merch-card) .tabList button[aria-checked="true"] {
background: var(--tabs-pill-bg-color);
color: var(--color-white);
box-shadow: 0 2px 8px 0 #00000029;
}

.tabs .paddle {
.tabs:has(merch-card) .paddle {
height: 38px;
border-bottom: none;
}

.tabs .paddle:disabled {
.tabs:has(merch-card) .paddle:disabled {
background: none;
}
}
0