-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New UI based in Helios for the Docs Site (#18)
* Commit gcx-full and gcx-landing * gcx-full and gcx-landing StencilJS components * CSS changes, header and sidebar * web component gcx-schema * Apply CSS and HTML for Footer * Replace nav-explorer by botton-sidebar component * Change feedback-form component * Carving out for sidebar Figma desgin * Many changes in CSS header elements * Load JSON like assert * - using helper schema in UI bundle - apply ccs fixes * new css vars * Web componentes updated * update gcx-schema components Aditionals gcx css changes Availabling dark mode * css updates * css changes * CSS changes and toggle list in sidebar * CSS changes, gcx-full UX fixs * lint fixes * Css fixes Sample app gallery and sidemenu bottom as a Figma * CSS FIXES Adding ingore file for lint * CSS fixes and updates for gcx-schema * fix applyed for gulp preview * Collapse side bar feature * feedback form includes on all pages * Gulp allows custom elements, and autofix css * Added support to gulp for new vendors * css sidebar * Changes from Feedback 2 August * updates header-contect * Schema loaded in build without json file * gulp lint fixes * New corrections and fetures - removed Edit this page - updates to gcx-full - new main logo - new layout gcx-layout-no-sidebar - new app_id to intercom * New css for gcx-full * Gulp lint updates * Edit this page now can be set or not * Gulp lint * fix glossary link in header-content.hbs * css fixes and full-code * Fixes css and sidebar for landing page * Added custom interceptioning observer * css changes main landing * Click on segment code * Fix scrollTop positions of code blocks * removed scroll detection in code blocks * updates helios gcx css * update 01-nav.js from antora-ui gitlab * gulps fixes * “rebase” JS files with antora-ui-defaults * New round of CSS fixes for the landing page launch * GCX CSS&JS updates 08-gcx-js integrated into site.js enlighterjs integrated into the build css enlighte integrated tinto site.css minor updates gcx-full layout * update logos and add icons (#21) * update intercom.hbs with production key (#22) * fixes dark-mode and toc-menu Banner logo feature Section headings aren't the correct color in dark mode Right-hand Nav Bug * Updates css new svg icons * updates css Added default logo.svg * Updates 01-nav “Link-less” category titles not working in html based on nav.adoc * UPDATE CSS * Modulo de feedback sin validaciones CSS fixes * Allow anonymous submit Css fixes * update copy icon copy icon white fix copy icon tooltip * CSS updates * css updates * Using sandbox hit CSS fixes Removed white-flash in darkmode * Fix "Copied!" message fix position * CSS fixes padding nav * Feat: fixed copy clicked! * Visual bugs in navbar fixed Now it should work with Firefox and the other browsers * Update helios-gcx.css Open bugs #5 fixed * Left Navbar Fix When you hover over the arrow in the menus, the entire link now is painted correctly Co-authored-by: Edwin Ilovares <[email protected]> Co-authored-by: Edwin Ilovares <[email protected]> Co-authored-by: Lorina Poland <[email protected]> Co-authored-by: Eric Schneider <[email protected]> Co-authored-by: Kenni Martínez <[email protected]>
- Loading branch information
1 parent
602c937
commit 3c65aeb
Showing
101 changed files
with
9,034 additions
and
1,108 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,9 @@ | ||
node_modules | ||
public | ||
.vscode | ||
build | ||
.DS_Store | ||
src/js/vendor | ||
src/js/lib | ||
*~ | ||
|
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 |
---|---|---|
|
@@ -5,3 +5,7 @@ build | |
.DS_Store | ||
*~ | ||
|
||
.stylelintrc | ||
gulpfile.js | ||
package-lock.json | ||
package.json |
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"comment-empty-line-before": null, | ||
"no-descending-specificity": null, | ||
} | ||
} | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"comment-empty-line-before": null, | ||
"no-descending-specificity": null, | ||
"selector-type-no-unknown": null | ||
}, | ||
"ignore": [ | ||
"custom-elements", | ||
"default-namespace" | ||
] | ||
} |
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
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
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 |
---|---|---|
@@ -1,46 +1,46 @@ | ||
.breadcrumbs { | ||
display: none; | ||
flex: 1 1; | ||
padding: 0 0.5rem 0 0.75rem; | ||
line-height: var(--nav-line-height); | ||
display: none; | ||
flex: 1 1; | ||
padding: 0 0.5rem 0 0.75rem; | ||
line-height: var(--nav-line-height); | ||
} | ||
|
||
@media screen and (min-width: 1024px) { | ||
.breadcrumbs { | ||
display: block; | ||
} | ||
.breadcrumbs { | ||
display: block; | ||
} | ||
} | ||
|
||
a + .breadcrumbs { | ||
padding-left: 0.05rem; | ||
a+.breadcrumbs { | ||
padding-left: 0.05rem; | ||
} | ||
|
||
.breadcrumbs ul { | ||
display: flex; | ||
flex-wrap: wrap; | ||
margin: 0; | ||
padding: 0; | ||
list-style: none; | ||
display: flex; | ||
flex-wrap: wrap; | ||
margin: 0; | ||
padding: 0; | ||
list-style: none; | ||
} | ||
|
||
.breadcrumbs li { | ||
display: inline; | ||
margin: 0; | ||
font-family: 'Nunito Sans', sans-serif; | ||
font-weight: bold; | ||
font-size: 14px; | ||
line-height: 1.5; | ||
letter-spacing: 0.04em; | ||
text-transform: uppercase; | ||
color: #999dad; | ||
display: inline; | ||
margin: 0; | ||
font-family: var(--body-font-family); | ||
font-weight: bold; | ||
font-size: 14px; | ||
line-height: 1.5; | ||
letter-spacing: 0.04em; | ||
text-transform: uppercase; | ||
color: #999dad; | ||
} | ||
|
||
.breadcrumbs li::after { | ||
content: "❯"; | ||
padding: 0 0.5rem; | ||
color: #c9cef6; | ||
content: "❯"; | ||
padding: 0 0.5rem; | ||
color: #c9cef6; | ||
} | ||
|
||
.breadcrumbs li:last-of-type::after { | ||
content: none; | ||
} | ||
content: none; | ||
} |
Oops, something went wrong.