-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix styles for hub pages and article page #9765
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
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
3f54559
fix conflicts
marcochavezf 0291592
fix grids with one element
marcochavezf 6360cc0
fix logo styles
marcochavezf 44c5f49
fix lhn styles
marcochavezf 46f5e1e
fix lhn styles for ul
marcochavezf 1d7402c
fix h1 and content-area styles
marcochavezf 9a83c55
fix heading styles
marcochavezf 781add5
add scrollbar funcitonality to LHN
marcochavezf df82acf
update lhn width for different sizes
marcochavezf eff24eb
add reponsiveness to the LHN
marcochavezf 1667915
fix style for lhn header
marcochavezf 69f9adb
fix styles for article content page
marcochavezf 8c88e1c
remove help site
marcochavezf c497a86
fix color variables
marcochavezf 956e06f
fix back button for article lhn
marcochavezf 4d3adfe
fix spaces for main.scss
marcochavezf d2bdf78
fix toc in lhn styles
marcochavezf b062b1e
update html files with latest changes
marcochavezf f239e14
update titles
marcochavezf fecd619
fix scroll in lhn
marcochavezf b084c07
fix scrolling in mobile
marcochavezf 4434aac
clean scroll logic for lhn
marcochavezf 98b4c02
fix position of back button
marcochavezf 61a9adf
fix logo in hub content
marcochavezf b791176
fix icons in lhn
marcochavezf 92189a2
fix scroll for toc library
marcochavezf 1703ab2
fix navigate back in mobile
marcochavezf 70eca69
reorganize lhn files
marcochavezf 663448f
clean css code and fix caret icons glitch
marcochavezf 620551e
clean css code for links
marcochavezf 5c80dcb
fix navigation back function
marcochavezf 5773b44
clean html content and update links in readme file
marcochavezf 47b5ba6
fix lhn height for mobile web
marcochavezf 4f58a1f
last minor fix to lhn
marcochavezf c0c7703
change cursor to a pointer so that it indicates the card is clickable
marcochavezf 5ec2ca4
make caret icon also clickable
marcochavezf b369ec2
fix styles for card button in hub pages
marcochavezf 1f08252
fix mobile header buttons
marcochavezf 17259bc
remove bold to link tags
marcochavezf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -254,6 +254,7 @@ GEM | |
|
|
||
| PLATFORMS | ||
| x86_64-darwin-20 | ||
| x86_64-darwin-21 | ||
|
|
||
| DEPENDENCIES | ||
| github-pages | ||
|
|
||
This file contains hidden or 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 hidden or 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,17 @@ | ||
| <ul class="lhn-items"> | ||
| <li class="home-link"> | ||
| <a href="/index.html">Home</a> | ||
| </li> | ||
| <li> | ||
| <div onclick="navigateTo('/hubs/send-money')" class="icon-with-link"> | ||
| <i class="fa-solid fa-angle-right icon"></i> | ||
| <div class="link">Send money</div> | ||
| </div> | ||
| </li> | ||
| <li> | ||
| <div onclick="navigateTo('/hubs/request-money')" class="icon-with-link"> | ||
| <i class="fa-solid fa-angle-right icon"></i> | ||
| <div class="link">Request money</div> | ||
| </div> | ||
| </li> | ||
| </ul> |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,34 @@ | ||
| <ul class="lhn-items"> | ||
| <li class="home-link"> | ||
| <a href="/index.html">Home</a> | ||
| </li> | ||
| <li> | ||
| <div onclick="navigateTo('/hubs/send-money')" class="icon-with-link"> | ||
| <i class="fa-solid fa-angle-right icon"></i> | ||
| <span class="link">Send money</span> | ||
| </div> | ||
| </li> | ||
| <li> | ||
| <div class="icon-with-link selected"> | ||
| <i class="fa-solid fa-angle-down icon"></i> | ||
| <span>Request money</span> | ||
| </div> | ||
| <ul class="nested-treeview"> | ||
|
|
||
| <!-- Add content below, more instructions in the README.md file | ||
| https://github.com/Expensify/App/blob/main/docs/README.md#add-a-new-entry-in-the-lhn-page | ||
| --> | ||
|
|
||
| <!-- Stage title anchor --> | ||
| <li><a href="#request-money">Request money</a> | ||
| <ul> | ||
| <!-- Article links --> | ||
| <li onclick="navigateTo('/articles/request-money/SmartScan')"><a>SmartScan</a></li> | ||
| <!-- More Article links here (if required)... --> | ||
| </ul> | ||
| </li> | ||
|
|
||
| <!-- More Stage title anchors here... --> | ||
| </ul> | ||
| </li> | ||
| </ul> |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,23 @@ | ||
| <ul class="lhn-items"> | ||
| <li class="home-link"> | ||
| <a href="/index.html">Home</a> | ||
| </li> | ||
| <li> | ||
| <div class="icon-with-link selected"> | ||
| <i class="fa-solid fa-angle-down icon"></i> | ||
| <span>Send money</span> | ||
| </div> | ||
| <ul class="nested-treeview"> | ||
|
|
||
| <!-- Add content below, more instructions in the README.md file | ||
| https://github.com/Expensify/App/blob/main/docs/README.md#add-a-new-entry-in-the-lhn-page | ||
| --> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <div onclick="navigateTo('/hubs/request-money')" class="icon-with-link"> | ||
| <i class="fa-solid fa-angle-right icon"></i> | ||
| <a href="/hubs/request-money">Request money</a> | ||
| </div> | ||
| </li> | ||
| </ul> |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.