Skip to content
Snippets Groups Projects
Unverified Commit 685950ba authored by Bruno Windels's avatar Bruno Windels Committed by GitHub
Browse files

Merge pull request #168 from matrix-org/bwindels/ux-refresh

UX refresh
parents 92ba3546 0e5a08a8
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,6 @@ import CreateLinkTile from './components/CreateLinkTile'; ...@@ -21,7 +21,6 @@ import CreateLinkTile from './components/CreateLinkTile';
import MatrixTile from './components/MatrixTile'; import MatrixTile from './components/MatrixTile';
import Tile from './components/Tile'; import Tile from './components/Tile';
import LinkRouter from './pages/LinkRouter'; import LinkRouter from './pages/LinkRouter';
import Footer from './components/Footer';
import './App.scss'; import './App.scss';
...@@ -67,11 +66,7 @@ const App: React.FC = () => { ...@@ -67,11 +66,7 @@ const App: React.FC = () => {
<SingleColumn> <SingleColumn>
<div className="topSpacer" /> <div className="topSpacer" />
{page} {page}
<div> <MatrixTile isLink={!!location.hash} />
<MatrixTile isLink={!!location.hash} />
<br />
<Footer />
</div>
<div className="bottomSpacer" /> <div className="bottomSpacer" />
</SingleColumn> </SingleColumn>
</GlobalContext> </GlobalContext>
......
...@@ -21,15 +21,19 @@ limitations under the License. ...@@ -21,15 +21,19 @@ limitations under the License.
height: 48px; height: 48px;
border-radius: 2rem; border-radius: 24px;
border: 0; border: 0;
background-color: $foreground; background-color: $accent;
color: $background; color: $background;
font-size: 14px; font-size: 15px;
font-weight: 500; font-weight: 500;
display: inline-flex;
justify-content: center;
align-items: center;
&:hover { &:hover {
cursor: pointer; cursor: pointer;
} }
......
...@@ -17,8 +17,6 @@ limitations under the License. ...@@ -17,8 +17,6 @@ limitations under the License.
@import '../color-scheme'; @import '../color-scheme';
.createLinkTile { .createLinkTile {
background: none;
row-gap: 24px; row-gap: 24px;
* { * {
...@@ -33,6 +31,11 @@ limitations under the License. ...@@ -33,6 +31,11 @@ limitations under the License.
> a { > a {
color: $foreground; color: $foreground;
font-weight: bold;
font-size: 24px;
line-height: 32px;
text-align: left;
text-decoration: underline;
} }
.createLinkReset { .createLinkReset {
......
...@@ -128,7 +128,9 @@ const LinkCreatedTile: React.FC<ILinkCreatedTileProps> = (props) => { ...@@ -128,7 +128,9 @@ const LinkCreatedTile: React.FC<ILinkCreatedTileProps> = (props) => {
<div>New link</div> <div>New link</div>
<img src={refreshIcon} alt="Go back to matrix.to home page" /> <img src={refreshIcon} alt="Go back to matrix.to home page" />
</button> </button>
<h1 className="linkHeader matrixIdentifier">{props.link}</h1> <a className="matrixIdentifier" href={props.link}>
{props.link}
</a>
<Button <Button
flashChildren={'Copied'} flashChildren={'Copied'}
icon={copyIcon} icon={copyIcon}
......
...@@ -16,9 +16,13 @@ limitations under the License. ...@@ -16,9 +16,13 @@ limitations under the License.
@import '../mixins'; @import '../mixins';
.toggle { .details {
display: flex; display: flex;
> :first-child {
min-width: 100%;
}
> input[type='checkbox'] { > input[type='checkbox'] {
// Remove the OS's representation // Remove the OS's representation
display: none; display: none;
......
...@@ -18,18 +18,18 @@ import React from 'react'; ...@@ -18,18 +18,18 @@ import React from 'react';
import chevron from '../imgs/chevron-down.svg'; import chevron from '../imgs/chevron-down.svg';
import './Toggle.scss'; import './Details.scss';
interface IProps extends React.InputHTMLAttributes<Element> { interface IProps extends React.InputHTMLAttributes<Element> {
children?: React.ReactNode; children?: React.ReactNode;
} }
const Toggle: React.FC<IProps> = ({ children, ...props }: IProps) => ( const Details: React.FC<IProps> = ({ children, ...props }: IProps) => (
<label className="toggle"> <label className="details">
{children} {children}
<input type="checkbox" {...props} /> <input type="checkbox" {...props} />
<img src={chevron} alt="" /> <img src={chevron} alt="" />
</label> </label>
); );
export default Toggle; export default Details;
...@@ -21,6 +21,7 @@ limitations under the License. ...@@ -21,6 +21,7 @@ limitations under the License.
grid-auto-flow: column; grid-auto-flow: column;
justify-content: center; justify-content: center;
column-gap: 5px; column-gap: 5px;
font-size: 11px;
* { * {
color: $font; color: $font;
......
...@@ -52,10 +52,10 @@ const Footer: React.FC = () => { ...@@ -52,10 +52,10 @@ const Footer: React.FC = () => {
return ( return (
<div className="footer"> <div className="footer">
<a href="https://github.com/matrix-org/matrix.to">GitHub</a> <a href="https://github.com/matrix-org/matrix.to">GitHub project</a>
{' · '} {' · '}
<a href="https://github.com/matrix-org/matrix.to/tree/main/src/clients"> <a href="https://github.com/matrix-org/matrix.to/tree/main/src/clients">
Add your client Add your app
</a> </a>
{clear} {clear}
</div> </div>
......
...@@ -24,9 +24,9 @@ limitations under the License. ...@@ -24,9 +24,9 @@ limitations under the License.
background: $background; background: $background;
border: 1px solid $foreground; border: 1px solid $foreground;
font: lighten($grey, 60%); border-radius: 16px;
border-radius: 24px;
font: lighten($grey, 60%);
font-size: 14px; font-size: 14px;
line-height: 24px; line-height: 24px;
......
...@@ -63,7 +63,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => { ...@@ -63,7 +63,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => {
break; break;
} }
const advancedToggle = ( const advancedButton = (
<p> <p>
{inviteUseString} {inviteUseString}
<TextButton <TextButton
...@@ -77,7 +77,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => { ...@@ -77,7 +77,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => {
invite = ( invite = (
<> <>
{invite} {invite}
{advancedToggle} {advancedButton}
</> </>
); );
} }
......
...@@ -25,7 +25,7 @@ import EventPreview from './EventPreview'; ...@@ -25,7 +25,7 @@ import EventPreview from './EventPreview';
import GroupPreview from './GroupPreview'; import GroupPreview from './GroupPreview';
import HomeserverOptions from './HomeserverOptions'; import HomeserverOptions from './HomeserverOptions';
import DefaultPreview from './DefaultPreview'; import DefaultPreview from './DefaultPreview';
import Toggle from './Toggle'; import Details from './Details';
import { clientMap } from '../clients'; import { clientMap } from '../clients';
import { import {
getRoomFromId, getRoomFromId,
...@@ -133,7 +133,7 @@ const LinkPreview: React.FC<IProps> = ({ link }: IProps) => { ...@@ -133,7 +133,7 @@ const LinkPreview: React.FC<IProps> = ({ link }: IProps) => {
content = ( content = (
<> <>
<DefaultPreview link={link} /> <DefaultPreview link={link} />
<Toggle <Details
checked={showHSOptions} checked={showHSOptions}
onChange={(): void => setShowHSOPtions(!showHSOptions)} onChange={(): void => setShowHSOPtions(!showHSOptions)}
> >
...@@ -143,7 +143,7 @@ const LinkPreview: React.FC<IProps> = ({ link }: IProps) => { ...@@ -143,7 +143,7 @@ const LinkPreview: React.FC<IProps> = ({ link }: IProps) => {
{link.identifier} {link.identifier}
</span> </span>
</span> </span>
</Toggle> </Details>
</> </>
); );
if (showHSOptions) { if (showHSOptions) {
......
...@@ -16,7 +16,9 @@ limitations under the License. ...@@ -16,7 +16,9 @@ limitations under the License.
.matrixTile { .matrixTile {
background: none; background: none;
row-gap: 8px; box-shadow: none;
row-gap: 16px;
padding: 0 40px; padding: 0 40px;
justify-items: left;
text-align: left;
} }
...@@ -16,6 +16,7 @@ limitations under the License. ...@@ -16,6 +16,7 @@ limitations under the License.
import React from 'react'; import React from 'react';
import Tile from './Tile'; import Tile from './Tile';
import Footer from './Footer';
import logo from '../imgs/matrix-logo.svg'; import logo from '../imgs/matrix-logo.svg';
...@@ -43,6 +44,7 @@ const MatrixTile: React.FC<IProps> = ({ isLink }: IProps) => { ...@@ -43,6 +44,7 @@ const MatrixTile: React.FC<IProps> = ({ isLink }: IProps) => {
<Tile className="matrixTile"> <Tile className="matrixTile">
<img src={logo} alt="matrix-logo" /> <img src={logo} alt="matrix-logo" />
{copy} {copy}
<Footer />
</Tile> </Tile>
</div> </div>
); );
......
...@@ -20,6 +20,7 @@ limitations under the License. ...@@ -20,6 +20,7 @@ limitations under the License.
background-color: $background; background-color: $background;
border-radius: 16px; border-radius: 16px;
box-shadow: 0px 18px 24px rgba(0, 0, 0, 0.06);
padding: 2rem; padding: 2rem;
display: grid; display: grid;
......
...@@ -46,7 +46,7 @@ h1 { ...@@ -46,7 +46,7 @@ h1 {
font-weight: bold; font-weight: bold;
font-size: 24px; font-size: 24px;
line-height: 32px; line-height: 32px;
text-align: center; text-align: left;
color: $foreground; color: $foreground;
} }
......
/*
Copyright 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.singleColumnLayout { .singleColumnLayout {
height: 100%; height: 100%;
padding: 0 1em; padding: 0 1em;
margin: 0 auto; margin: 0 auto;
max-width: 550px; max-width: 480px;
display: grid; display: grid;
row-gap: 60px; row-gap: 60px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment