-
Notifications
You must be signed in to change notification settings - Fork 1
feat/tup 637: Migrate c-card support list to core-styles #250
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 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
b516328
added c-card-list support
R-Tomas-Gonzalez 60e407b
Added in demos for card lists
R-Tomas-Gonzalez dd42839
resolved conflicts
R-Tomas-Gonzalez 8680de5
moved list style support to c-card.css. deleted c-card--list.css and …
R-Tomas-Gonzalez ca33890
Resolve conflicts
R-Tomas-Gonzalez 1255895
moved style to correct position in c-card.css
R-Tomas-Gonzalez 36b1b10
deleting unnecessary file
R-Tomas-Gonzalez a710c0a
docs: less comments in c-card.css
wesleyboar 52499a3
Merge branch 'main' into feat/tup-637-c-card-support-list
R-Tomas-Gonzalez 9ee6caa
build: after pull
wesleyboar 92057e0
fix: restore accidentally deleted `}`
wesleyboar 13ff9a0
enhance: move list to existing card that has space
wesleyboar 65950ab
build: delete outdated file (removed source)
wesleyboar f349dfe
removing lines 184-187
R-Tomas-Gonzalez d66a054
Merge branch 'main' into feat/tup-637-c-card-support-list
wesleyboar 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
Next
Next commit
added c-card-list support
- Loading branch information
commit b5163286c4761d17a6ea8ed6d3d9c5f7f8794027
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
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,19 @@ | ||
| @import url("./c-card.selectors.css"); | ||
|
|
||
| /* SUPPORT LIST IN CARD */ | ||
|
|
||
| /* FAQ: The Portal uses Bootstrap ".card" for ticket modal */ | ||
| :is(.card, :--c-card, [class*="card--"]) ul { | ||
| /* list-style: none; *//* H.P. restored bullets, M.S. does not know */ | ||
| padding-left: 1em; /* overwrite core-styles.cms */ | ||
| } | ||
| /* To add space between line items */ | ||
| /* FAQ: Using margin and li:not(:first-of-type) because of multi-line items */ | ||
| :is(.card, :--c-card, [class*="card--"]) li:not(:first-of-type) { | ||
| margin-top: 0.5em; | ||
| } | ||
| /* TODO: Consider changing this site wide; SEE: | ||
| :where([role=main],main) li:not(td li) { line-height: 1.6; } */ | ||
| :is(.card, :--c-card, [class*="card--"]) ul:last-child { | ||
| margin-bottom: 2rem; | ||
| } |
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
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.