-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidy up unused templates and add very basic styling for the password …
…required page (#188) * Tidy up unused templates and add very basic styling for the password required page * border on input for high contrast mode, fix validation error * remove commented code
- Loading branch information
Showing
15 changed files
with
58 additions
and
164 deletions.
There are no files selected for viewing
5 changes: 0 additions & 5 deletions
5
tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.html
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.yaml
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
tbx/project_styleguide/templates/patterns/molecules/hero/hero.html
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
tbx/project_styleguide/templates/patterns/molecules/hero/hero.yaml
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
tbx/project_styleguide/templates/patterns/molecules/in-page-nav/in-page-nav.html
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
tbx/project_styleguide/templates/patterns/molecules/in-page-nav/in-page-nav.yaml
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
tbx/project_styleguide/templates/patterns/organisms/latest-posts/latest-posts.html
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
tbx/project_styleguide/templates/patterns/organisms/latest-posts/latest-posts.yaml
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
tbx/project_styleguide/templates/patterns/organisms/work-listing/work-listing.html
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
tbx/project_styleguide/templates/patterns/organisms/work-listing/work-listing.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@use 'config' as *; | ||
|
||
// Very basic form styling used for the 'password required' form but this could be adapted for other forms in the future | ||
|
||
.form { | ||
@include font-size('heading-four'); | ||
font-family: $font--primary; | ||
font-weight: $weight--light; | ||
|
||
label { | ||
@include font-size('body'); | ||
font-weight: $weight--semibold; | ||
margin: $spacer-small 0 10px; | ||
display: block; | ||
color: var(--color--heading); | ||
} | ||
|
||
input[type='text'], | ||
input[type='password'] { | ||
border: 1px solid var(--color--border); | ||
color: var(--color--background); | ||
font-weight: $weight--normal; | ||
padding: 10px $spacer-mini; | ||
text-indent: 0; | ||
display: block; | ||
} | ||
|
||
input[type='submit'] { | ||
display: block; | ||
margin-top: $spacer-small; | ||
} | ||
} | ||
|
||
.errorlist { | ||
color: var(--color--light-background); | ||
font-weight: $weight--semibold; | ||
} |
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