-
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.
- Loading branch information
1 parent
2eced88
commit 2d84c9b
Showing
10 changed files
with
295 additions
and
2 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"themes": [{ | ||
"name" : "nl-design-system", | ||
"types": [ "login", "account" ] | ||
"types": [ "login", "account", "welcome", "common" ] | ||
}] | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
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,31 @@ | ||
|
||
|
||
.language-dropdown { | ||
position: relative; | ||
display: inline; | ||
} | ||
|
||
.language-dropdown-content { | ||
display: none; | ||
position: absolute; | ||
background-color: #f9f9f9; | ||
min-width: 160px; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
|
||
.language-dropdown-content a { | ||
color: black; | ||
padding: 12px 16px; | ||
text-decoration: none; | ||
display: block; | ||
} | ||
|
||
.language-dropdown-content a:hover { | ||
background-color: #f1f1f1; | ||
} | ||
|
||
.language-dropdown:hover .language-dropdown-content { | ||
display: block; | ||
} |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,25 @@ | ||
parent=base | ||
import=common/keycloak | ||
|
||
common=common/nl-design-system | ||
locales=en,nl | ||
stylesCommon=assets/fonts/index.css assets/icons/index.css assets/images/index.css component-library-css/index.css design-tokens/index.css | ||
styles=css/login.css | ||
|
||
meta=viewport==width=device-width,initial-scale=1 | ||
|
||
organizationName=${env.ORGANIZATION:Identiteits service} | ||
|
||
kcBodyClass=rvo-theme rvo-responsive | ||
kcHeaderClass=rvo-header | ||
|
||
|
||
kcFormGroupClass=rvo-form | ||
kcLabelClass=rvo-label | ||
kcInputClass=utrecht-textbox utrecht-textbox--html-input utrecht-textbox--lg | ||
kcInputErrorMessageClass=rvo-alert rvo-alert--error rvo-alert--padding-md | ||
kcButtonClass=utrecht-button utrecht-button--rvo-md | ||
kcButtonPrimaryClass=utrecht-button--primary-action | ||
|
||
kcFormPasswordVisibilityButtonClass=utrecht-button utrecht-button--rvo-tertiary-action utrecht-button--rvo-md | ||
kcFormPasswordVisibilityIconShow=utrecht-icon rvo-icon rvo-icon-info rvo-icon--xl rvo-icon--hemelblauw | ||
kcFormPasswordVisibilityIconHide=utrecht-icon rvo-icon rvo-icon-kruis rvo-icon--xl rvo-icon--hemelblauw |