Skip to content
Snippets Groups Projects
Commit 261d26ab authored by Samuli Aalto-Setälä's avatar Samuli Aalto-Setälä
Browse files

Merge branch 'NXSTAGE-684-loginpage' into 'development'

user login form component+styles

See merge request julkiset-sivut/design-system-lib!61
parents ac917471 ecb39203
No related branches found
No related tags found
No related merge requests found
...@@ -392,6 +392,10 @@ export namespace Components { ...@@ -392,6 +392,10 @@ export namespace Components {
interface HyTwoColumns { interface HyTwoColumns {
reversed: boolean; reversed: boolean;
} }
interface HyUserLoginForm {
logoLabel?: string;
logoUrl?: string;
}
} }
declare global { declare global {
interface HTMLColorBoxElement extends Components.ColorBox, HTMLStencilElement {} interface HTMLColorBoxElement extends Components.ColorBox, HTMLStencilElement {}
...@@ -639,6 +643,11 @@ declare global { ...@@ -639,6 +643,11 @@ declare global {
prototype: HTMLHyTwoColumnsElement; prototype: HTMLHyTwoColumnsElement;
new (): HTMLHyTwoColumnsElement; new (): HTMLHyTwoColumnsElement;
}; };
interface HTMLHyUserLoginFormElement extends Components.HyUserLoginForm, HTMLStencilElement {}
var HTMLHyUserLoginFormElement: {
prototype: HTMLHyUserLoginFormElement;
new (): HTMLHyUserLoginFormElement;
};
interface HTMLElementTagNameMap { interface HTMLElementTagNameMap {
'color-box': HTMLColorBoxElement; 'color-box': HTMLColorBoxElement;
'hy-accordion-container': HTMLHyAccordionContainerElement; 'hy-accordion-container': HTMLHyAccordionContainerElement;
...@@ -689,6 +698,7 @@ declare global { ...@@ -689,6 +698,7 @@ declare global {
'hy-site-search': HTMLHySiteSearchElement; 'hy-site-search': HTMLHySiteSearchElement;
'hy-tiny-text': HTMLHyTinyTextElement; 'hy-tiny-text': HTMLHyTinyTextElement;
'hy-two-columns': HTMLHyTwoColumnsElement; 'hy-two-columns': HTMLHyTwoColumnsElement;
'hy-user-login-form': HTMLHyUserLoginFormElement;
} }
} }
declare namespace LocalJSX { declare namespace LocalJSX {
...@@ -1055,6 +1065,10 @@ declare namespace LocalJSX { ...@@ -1055,6 +1065,10 @@ declare namespace LocalJSX {
interface HyTwoColumns { interface HyTwoColumns {
reversed?: boolean; reversed?: boolean;
} }
interface HyUserLoginForm {
logoLabel?: string;
logoUrl?: string;
}
interface IntrinsicElements { interface IntrinsicElements {
'color-box': ColorBox; 'color-box': ColorBox;
'hy-accordion-container': HyAccordionContainer; 'hy-accordion-container': HyAccordionContainer;
...@@ -1105,6 +1119,7 @@ declare namespace LocalJSX { ...@@ -1105,6 +1119,7 @@ declare namespace LocalJSX {
'hy-site-search': HySiteSearch; 'hy-site-search': HySiteSearch;
'hy-tiny-text': HyTinyText; 'hy-tiny-text': HyTinyText;
'hy-two-columns': HyTwoColumns; 'hy-two-columns': HyTwoColumns;
'hy-user-login-form': HyUserLoginForm;
} }
} }
export {LocalJSX as JSX}; export {LocalJSX as JSX};
...@@ -1163,6 +1178,7 @@ declare module '@stencil/core' { ...@@ -1163,6 +1178,7 @@ declare module '@stencil/core' {
'hy-site-search': LocalJSX.HySiteSearch & JSXBase.HTMLAttributes<HTMLHySiteSearchElement>; 'hy-site-search': LocalJSX.HySiteSearch & JSXBase.HTMLAttributes<HTMLHySiteSearchElement>;
'hy-tiny-text': LocalJSX.HyTinyText & JSXBase.HTMLAttributes<HTMLHyTinyTextElement>; 'hy-tiny-text': LocalJSX.HyTinyText & JSXBase.HTMLAttributes<HTMLHyTinyTextElement>;
'hy-two-columns': LocalJSX.HyTwoColumns & JSXBase.HTMLAttributes<HTMLHyTwoColumnsElement>; 'hy-two-columns': LocalJSX.HyTwoColumns & JSXBase.HTMLAttributes<HTMLHyTwoColumnsElement>;
'hy-user-login-form': LocalJSX.HyUserLoginForm & JSXBase.HTMLAttributes<HTMLHyUserLoginFormElement>;
} }
} }
} }
...@@ -14,6 +14,15 @@ ...@@ -14,6 +14,15 @@
width: 100%; width: 100%;
} }
.layout-user-login-page {
padding: 0 var(--gutter-medium);
width: 100%;
div[id^='block-breadcrumbs'] {
display: none;
}
}
&.with-sidebar { &.with-sidebar {
.layout-content { .layout-content {
@include breakpoint($medium) { @include breakpoint($medium) {
......
:host {
display: block;
}
.hy-user-login-form {
font-family: var(--main-font-family);
.user-login-form {
position: relative;
.hy-login-label {
margin-top: 16px;
}
input {
display: block;
margin: 8px 0 0 0;
min-height: 32px;
}
label {
@include font-size(16px, 16px);
@include font-weight($bold);
display: block;
}
label:before {
content: '*';
padding-right: 3px;
}
div#edit-name--description {
@include font-size(14px, 14px);
margin-top: 8px;
margin-bottom: 20px;
}
div#edit-pass--description {
display: none;
}
div#edit-actions {
margin-top: 32px;
}
}
}
import {Component, h, Prop} from '@stencil/core';
import {ColorVariant, SiteLogoSize} from '../../utils/utils';
@Component({
tag: 'hy-user-login-form',
styleUrl: 'hy-user-login-form.scss',
shadow: false,
})
export class HyUserLoginForm {
@Prop() logoUrl?: string;
@Prop() logoLabel?: string;
render() {
const classAttributes = 'hy-user-login-form';
const logoSize = SiteLogoSize.large;
const logoColor = ColorVariant.black;
return (
<div class={classAttributes}>
<div class={'hy-site-header__logo-container'}>
<hy-site-logo size={logoSize} color={logoColor} url={this.logoUrl} label={this.logoLabel} />
</div>
<slot />
</div>
);
}
}
# hy-user-login-form
<!-- Auto Generated Below -->
## Properties
| Property | Attribute | Description | Type | Default |
| ----------- | ------------ | ----------- | -------- | ----------- |
| `logoLabel` | `logo-label` | | `string` | `undefined` |
| `logoUrl` | `logo-url` | | `string` | `undefined` |
## Dependencies
### Depends on
- [hy-site-logo](../site-header/site-logo)
### Graph
```mermaid
graph TD;
hy-user-login-form --> hy-site-logo
hy-site-logo --> hy-icon
style hy-user-login-form fill:#f9f,stroke:#333,stroke-width:4px
```
---
Helsinki University Design System
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
## Properties ## Properties
| Property | Attribute | Description | Type | Default | | Property | Attribute | Description | Type | Default |
| -------- | --------- | ----------- | ------------------------------------------ | -------------------- | | -------- | --------- | ----------- | -------------------------------------------------------------- | -------------------- |
| `color` | `color` | | `ColorVariant.black \| ColorVariant.white` | `ColorVariant.black` | | `color` | `color` | | `ColorVariant.black \| ColorVariant.white` | `ColorVariant.black` |
| `label` | `label` | | `string` | `undefined` | | `label` | `label` | | `string` | `undefined` |
| `size` | `size` | | `SiteLogoSize.big \| SiteLogoSize.small` | `SiteLogoSize.big` | | `size` | `size` | | `SiteLogoSize.big \| SiteLogoSize.large \| SiteLogoSize.small` | `SiteLogoSize.big` |
| `url` | `url` | | `string` | `undefined` | | `url` | `url` | | `string` | `undefined` |
## Dependencies ## Dependencies
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
- [hy-menu](../../navigation/menu) - [hy-menu](../../navigation/menu)
- [hy-site-header](..) - [hy-site-header](..)
- [hy-user-login-form](../../hy-user-login-form)
### Depends on ### Depends on
...@@ -29,6 +30,7 @@ graph TD; ...@@ -29,6 +30,7 @@ graph TD;
hy-site-logo --> hy-icon hy-site-logo --> hy-icon
hy-menu --> hy-site-logo hy-menu --> hy-site-logo
hy-site-header --> hy-site-logo hy-site-header --> hy-site-logo
hy-user-login-form --> hy-site-logo
style hy-site-logo fill:#f9f,stroke:#333,stroke-width:4px style hy-site-logo fill:#f9f,stroke:#333,stroke-width:4px
``` ```
......
...@@ -124,6 +124,7 @@ export enum MenuType { ...@@ -124,6 +124,7 @@ export enum MenuType {
export enum SiteLogoSize { export enum SiteLogoSize {
small = 32, small = 32,
big = 64, big = 64,
large = 80,
} }
export enum ColorVariant { export enum ColorVariant {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment