forked from ory/oathkeeper
-
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.
fix: Improve color themeing (ory#49)
Close ory#10
- Loading branch information
Showing
44 changed files
with
278 additions
and
537 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
& h3, | ||
& p { | ||
color: var(--colors-ory-dark); | ||
color: var(--colors-base-dark); | ||
} | ||
|
||
& a img { | ||
|
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,8 +1,7 @@ | ||
declare const styles: { | ||
readonly "adopters": string; | ||
readonly "list": string; | ||
readonly "logos": string; | ||
readonly "logosInner": string; | ||
}; | ||
export = styles; | ||
|
||
readonly adopters: string | ||
readonly list: string | ||
readonly logos: string | ||
readonly logosInner: string | ||
} | ||
export = styles |
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,5 +1,4 @@ | ||
declare const styles: { | ||
readonly "announcement": string; | ||
}; | ||
export = styles; | ||
|
||
readonly announcement: string | ||
} | ||
export = styles |
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,9 +1,8 @@ | ||
declare const styles: { | ||
readonly "title": string; | ||
readonly "meta": string; | ||
readonly "author": string; | ||
readonly "subtitle": string; | ||
readonly "teaser": string; | ||
}; | ||
export = styles; | ||
|
||
readonly title: string | ||
readonly meta: string | ||
readonly author: string | ||
readonly subtitle: string | ||
readonly teaser: string | ||
} | ||
export = styles |
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,5 +1,4 @@ | ||
declare const styles: { | ||
readonly "section": string; | ||
}; | ||
export = styles; | ||
|
||
readonly section: string | ||
} | ||
export = styles |
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,14 +1,13 @@ | ||
declare const styles: { | ||
readonly "box": string; | ||
readonly "editorHeader": string; | ||
readonly "tabs": string; | ||
readonly "tab": string; | ||
readonly "selected": string; | ||
readonly "windowActions": string; | ||
readonly "windowAction": string; | ||
readonly "primary": string; | ||
readonly "content": string; | ||
readonly "active": string; | ||
}; | ||
export = styles; | ||
|
||
readonly box: string | ||
readonly editorHeader: string | ||
readonly tabs: string | ||
readonly tab: string | ||
readonly selected: string | ||
readonly windowActions: string | ||
readonly windowAction: string | ||
readonly primary: string | ||
readonly content: string | ||
readonly active: string | ||
} | ||
export = styles |
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,7 +5,7 @@ | |
|
||
& h3, | ||
& p { | ||
color: var(--colors-ory-dark); | ||
color: var(--colors-base-dark); | ||
} | ||
} | ||
|
||
|
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,6 +1,5 @@ | ||
declare const styles: { | ||
readonly "collaborator": string; | ||
readonly "image": string; | ||
}; | ||
export = styles; | ||
|
||
readonly collaborator: string | ||
readonly image: string | ||
} | ||
export = styles |
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,12 +1,11 @@ | ||
declare const styles: { | ||
readonly "footer": string; | ||
readonly "contact": string; | ||
readonly "copyright": string; | ||
readonly "listTitle": string; | ||
readonly "list": string; | ||
readonly "item": string; | ||
readonly "menuRow": string; | ||
readonly "menuItem": string; | ||
}; | ||
export = styles; | ||
|
||
readonly footer: string | ||
readonly contact: string | ||
readonly copyright: string | ||
readonly listTitle: string | ||
readonly list: string | ||
readonly item: string | ||
readonly menuRow: string | ||
readonly menuItem: string | ||
} | ||
export = styles |
Oops, something went wrong.