generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MWPW-131015: Fix spectrum and layout issues (#721)
* MWPW-131015: Fix spectrum style issues and improve the layout. * MWPW-131015: Restore OST urls * MWPW-131015: Restore merch.js * MWPW-131015: fix price style in OST * Update OST version * Add token parameter support to bypass IMS wait for IMS ready in order to prevent sign-in attempt too early. * comment token section. * remove gnav hiding logic via css and use metadata for the purpose. --------- Co-authored-by: Honwai Wong <honstar.wong@gmail.com>
- Loading branch information
Showing
2 changed files
with
99 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
body.tool-ost .ost { | ||
position: fixed; | ||
display: flex; | ||
top: 0; | ||
left: 0; | ||
bottom: 0; | ||
right: 0; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: var(--color-gray-75); | ||
} | ||
|
||
body.tool-ost .ost>div { | ||
padding: 0 20px 0 20px; | ||
min-height: 900px; | ||
max-height: 1400px; | ||
min-width: 1200px; | ||
max-width: 1800px; | ||
height: 80%; | ||
width: 80%; | ||
border-radius: 4px; | ||
border-width: 2px; | ||
background-color: var(--color-gray-100); | ||
border-color: var(--color-gray-200); | ||
border-style: solid; | ||
} | ||
|
||
.price-unit-type::before { | ||
content: " "; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters