-
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.
Merge branch 'feat/tup-463' into feat/TUP-463-c-button-migration
- Loading branch information
Showing
20 changed files
with
29 additions
and
323 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
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
9 changes: 0 additions & 9 deletions
9
...p-cms/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-cms/components/c-footer.css
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
...te_custom/tup_cms/static/tup_cms/css/for-core-cms/components/django.cms.blog.app.item.css
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...taccsite_custom/tup_cms/static/tup_cms/css/for-core-cms/components/django.cms.picture.css
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...s/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-cms/components/lightgallery.css
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
.../src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-cms/generics/pseudo-elements.css
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
...tom/tup_cms/static/tup_cms/css/for-core-styles/components/c-card--frontera-about-page.css
This file was deleted.
Oops, something went wrong.
158 changes: 0 additions & 158 deletions
158
...-cms/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-styles/components/c-card.css
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,158 +0,0 @@ | ||
/* FIX CARD */ | ||
|
||
/* !!!: When migrated: | ||
1. Remove `:where(:not(…` (e.g. "not in portal"). | ||
2. Prevent these styles in apps/tup-ui TicketHistory CSS */ | ||
:is(.card, .c-card, [class*="card--"]) p:last-child:where(:not(#page-portal *)) { | ||
margin-bottom: 2rem; /* restore <p> `margin-bottom `*/ | ||
} | ||
|
||
/* To more specifically control c-card link font weight */ | ||
/* !!!: When migrated: | ||
1. Remove `:where(:not(…` (e.g. "not in portal"). | ||
2. Prevent these styles in apps/tup-ui TicketHistory CSS */ | ||
:is(.card, .c-card, [class*="card--"]) a.c-button:where(:not(#page-portal *)) { | ||
font-weight: var(--bold); | ||
} | ||
|
||
/* FAQ: Used on image cards for staff like on /education/k-12-students/ */ | ||
:is(.card, .c-card, [class*="card--"]) h4 { | ||
margin-bottom: 0.375em; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
/* 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:where(:not(#page-portal *)) { | ||
margin-bottom: 2rem; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
/* ADD CARD--IMAGE */ | ||
|
||
/* Image */ | ||
|
||
[class*="card--image-"] { | ||
display: grid; | ||
} | ||
|
||
.card--image-top { | ||
padding-top: 0; | ||
} | ||
.card--image-left { | ||
padding-left: 0; | ||
padding-bottom: var(--global-space--pattern-pad); | ||
} | ||
.card--image-right { | ||
padding-right: 0; | ||
padding-bottom: var(--global-space--pattern-pad); | ||
} | ||
.card--image-bottom { | ||
padding-bottom: 0; | ||
} | ||
|
||
|
||
|
||
/* Image: Left & Right */ | ||
|
||
.card--image-left, | ||
.card--image-right { | ||
--image-width: 50%; | ||
|
||
grid-column-gap: var(--global-space--pattern-pad); | ||
|
||
/* Repeat many times, because element count is unknown */ | ||
grid-template-rows: repeat(10, min-content); | ||
} | ||
.card--image-left > img, | ||
.card--image-right > img { | ||
grid-row-start: 1; | ||
grid-row-end: -1; | ||
|
||
/* To remove card padding */ | ||
margin-block: calc( -1 * var(--global-space--pattern-pad) ); | ||
} | ||
|
||
.card--image-left { | ||
grid-template-columns: var(--image-width) 1fr; /* to overwrite `.c-card` */ | ||
} | ||
.card--image-left > img { | ||
grid-column-start: 1; | ||
grid-column-end: span 1; | ||
} | ||
|
||
.card--image-right { | ||
grid-template-columns: 1fr var(--image-width); /* to overwrite `.c-card` */ | ||
} | ||
.card--image-right > img { | ||
grid-column-start: 2; | ||
grid-column-end: span 1; | ||
} | ||
|
||
|
||
|
||
/* Image: Top & Bottom */ | ||
|
||
.card--image-top, | ||
.card--image-bottom { | ||
--image-height: auto; | ||
--global-space--pattern-pad: 15px; | ||
|
||
/* Use extra columns to add horizontal padding */ | ||
grid-template-columns: var(--global-space--pattern-pad) 1fr var(--global-space--pattern-pad); | ||
padding-inline: unset; | ||
} | ||
.card--image-top > :not(img), | ||
.card--image-bottom > :not(img) { | ||
/* Span only columns for content */ | ||
grid-column-start: 2; | ||
grid-column-end: -2; | ||
} | ||
.card--image-top > img, | ||
.card--image-bottom > img { | ||
/* Span all columns, padding and content */ | ||
grid-column-start: 1; | ||
grid-column-end: -1; | ||
} | ||
|
||
.card--image-top { | ||
/* Repeat many times, because element count is unknown */ | ||
grid-template-rows: repeat(10, min-content) var(--image-height); | ||
} | ||
.card--image-top > img { | ||
grid-row-start: 1; | ||
margin-bottom: var(--global-space--pattern-pad); | ||
} | ||
.card--image-bottom > :is(h1, h2, h3, h4, h5):first-of-type { | ||
margin-top: unset; /* to avoid combining margin with image */ | ||
} | ||
|
||
.card--image-bottom { | ||
/* Repeat many times, because element count is unknown */ | ||
grid-template-rows: var(--image-height) repeat(10, min-content); | ||
} | ||
.card--image-bottom > img { | ||
grid-row-end: -1; | ||
margin-top: var(--global-space--pattern-pad); | ||
} | ||
.card--image-bottom > p:last-of-type { | ||
margin-bottom: unset; /* to avoid combining margin with image */ | ||
} | ||
15 changes: 0 additions & 15 deletions
15
...rc/taccsite_custom/tup_cms/static/tup_cms/css/for-core-styles/objects/o-heading-steps.css
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
...-cms/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-styles/objects/o-section.css
This file was deleted.
Oops, something went wrong.
49 changes: 0 additions & 49 deletions
49
...up-cms/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-styles/trumps/s-header.css
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...cms/src/taccsite_custom/tup_cms/static/tup_cms/css/for-core-styles/trumps/u-highlight.css
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.