Skip to content

Commit 3afe46f

Browse files
Remove old styles
1 parent 1dacb0c commit 3afe46f

File tree

7 files changed

+47
-123
lines changed

7 files changed

+47
-123
lines changed

CHANGELOG.md

+1-60
Original file line numberDiff line numberDiff line change
@@ -1,60 +1 @@
1-
# Changelog
2-
All notable changes to this project will be documented in this file.
3-
4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
7-
## [Unreleased]
8-
9-
## [0.8.5]
10-
11-
### Added
12-
- Add breadcrumbs to target page
13-
- Add command crud pages
14-
- Add delete command output button
15-
- Add delete target button and new NoResultsTableRow component
16-
- Add edit links
17-
- Add file size span component
18-
- Add jsconfig file (to aid with language server support)
19-
- Add jsconfig.json to docker image
20-
- Add links to related entities on details page
21-
- Add markdown support
22-
- Add user edit form
23-
- Improve task statuses
24-
- Introduce task command tab
25-
26-
### Changed
27-
- Use customised tailwind CSS instead of CDN one
28-
- Copy craco config to container
29-
- Do not use absolute src path
30-
- Extract user form to own component
31-
- Move user name to header
32-
- Populate command dropdown dynamically on task form
33-
- Present some detailed information in two columns
34-
- Refactor tabs component
35-
- Rename title
36-
- Replace component style with classes
37-
- Restore unordered lists styles
38-
- Show raw user agent if can't be parsed
39-
- Use 'strict' makefile
40-
- Use absolute paths
41-
- Use new command entity
42-
- feat: :sparkles: copy code to clipboard
43-
- feat: :sparkles: sidebar and header now are fixed to scroll
44-
45-
### Fixed
46-
- Fix bug in command tab
47-
- Fix command page title
48-
- Fix issue in command tab
49-
- Fix issue with user names in project membership
50-
- Fix small aesthetic issues
51-
52-
### Removed
53-
- Remove borders from section
54-
- Remove form max width
55-
- Remove table cell padding
56-
- Remove two-columns class
57-
58-
[Unreleased]: https://github.com/reconmap/web-client/compare/0.8.5...master
59-
[0.8.5]: https://github.com/reconmap/web-client/compare/0.8.0...0.8.5
60-
1+
The up-to-date change log can be found at https://github.com/reconmap/reconmap/blob/master/CHANGELOG.md

src/components/auth/Login.js

+19-21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Button, FormControl, Heading, Input, Text } from "@chakra-ui/react";
1+
import { Button, FormControl, FormLabel, Heading, Input, Text } from "@chakra-ui/react";
22
import PageTitle from "components/logic/PageTitle";
33
import { useState } from "react";
44
import { useLocation, useNavigate } from "react-router-dom";
@@ -47,26 +47,24 @@ const Login = () => {
4747
({ login }) => <form onSubmit={ev => handleSubmit(ev, login)} style={{ width: '100%' }}>
4848
<PageTitle value="Login" />
4949
<FormControl as="fieldset">
50-
<Heading as="legend" size="lg" > Login</Heading>
51-
<label htmlFor="inputUsername" className="sr-only">Username</label>
52-
<Input
53-
autoFocus
54-
isInvalid={error}
55-
isRequired
56-
type="text"
57-
placeholder="Username"
58-
onChange={handleUsername}
59-
id="inputUsername"
60-
/>
61-
<label htmlFor="inputPassword" className="sr-only">Password</label>
62-
<Input
63-
isRequired
64-
isInvalid={error}
65-
type="password"
66-
placeholder="Enter password"
67-
onChange={handlePassword}
68-
id="inputPassword"
69-
/>
50+
<Heading as="legend" size="lg">Login</Heading>
51+
52+
<FormControl isRequired>
53+
<FormLabel htmlFor="inputUsername">Username</FormLabel>
54+
<Input id="inputUsername" type="text"
55+
onChange={handleUsername}
56+
isInvalid={error} isRequired autoFocus
57+
/>
58+
</FormControl>
59+
60+
<FormControl isRequired>
61+
<FormLabel htmlFor="inputPassword">Password</FormLabel>
62+
<Input id="inputPassword" type="password"
63+
onChange={handlePassword}
64+
isInvalid={error} isRequired
65+
/>
66+
</FormControl>
67+
7068
<Button
7169
isLoading={loading}
7270
loadingText="Processing..."

src/components/auth/MfaVerification.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Input } from "@chakra-ui/react";
12
import PrimaryButton from "components/ui/buttons/Primary";
23
import { actionCompletedToast } from "components/ui/toast";
34
import { AuthContext } from 'contexts/AuthContext';
@@ -34,8 +35,8 @@ const MfaVerification = () => {
3435
<fieldset>
3536
<legend>Two-factor authentication</legend>
3637
<p>Enter the 6-digit code generated by your authentication app.</p>
37-
<label htmlFor="code" className="sr-only">6-digit MFA code</label>
38-
<input type="text" name="code" id="code" placeholder="6 digits code" pattern="[0-9]{6}" maxLength="6" value={code} onChange={onChange} autoFocus required />
38+
<label htmlFor="code">6-digit MFA code</label>
39+
<Input type="text" name="code" id="code" placeholder="6 digits code" pattern="[0-9]{6}" maxLength="6" value={code} onChange={onChange} autoFocus required />
3940
<PrimaryButton type="submit">Verify</PrimaryButton>
4041
</fieldset>
4142
</form>

src/components/layout/Header.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Header = () => {
2222
<Link to='/' style={{ cursor: 'pointer' }} className='logo'>
2323
<h3>
2424
<img alt='logo' src={path.join(Configuration.getContextPath(), 'logo.svg')} />
25-
<strong style={{ color: 'var(--text-color)' }} className='from-tablet'>
25+
<strong style={{ color: 'var(--text-color)' }}>
2626
Recon<span style={{ color: 'var(--primary-color)' }}>map</span>
2727
</strong>
2828
</h3>

src/components/users/Form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const UserForm = ({ isEdit = false, user, userSetter: setUser, onFormSubmit }) =
6565
</label>
6666
<label>
6767
Send email to user
68-
<Input type="checkbox" name="sendEmailToUser" onChange={onFormChange} />
68+
<Checkbox name="sendEmailToUser" onChange={onFormChange} />
6969
</label>
7070
</>
7171
}

src/components/users/PasswordChange.js

+22-23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Input } from "@chakra-ui/react";
12
import { actionCompletedToast, errorToast } from "components/ui/toast";
23
import { useEffect, useState } from "react";
34
import { useNavigate } from "react-router-dom";
@@ -52,30 +53,28 @@ const UserPasswordChange = () => {
5253
setSubmitButtonDisabled(passwords.newPassword !== passwords.newPasswordConfirmation);
5354
}, [passwords]);
5455

55-
return (
56-
<div>
57-
<div className='heading'>
58-
<Breadcrumb />
59-
</div>
60-
<form onSubmit={handleCreate}>
61-
<Title title="Password Change" type="User" icon={<IconPreferences />} />
62-
<label>Current password
63-
<input type="password" name="currentPassword" value={passwords.currentPassword}
64-
onChange={handleFormChange} autoFocus required />
65-
</label>
66-
<label>New password
67-
<input type="password" name="newPassword" value={passwords.newPassword} onChange={handleFormChange}
68-
required />
69-
</label>
70-
<label>New password confirmation
71-
<input type="password" name="newPasswordConfirmation" value={passwords.newPasswordConfirmation}
72-
onChange={handleFormChange} required />
73-
</label>
74-
<PrimaryButton type="submit"
75-
disabled={submitButtonDisabled}>Update</PrimaryButton>
76-
</form>
56+
return <div>
57+
<div className='heading'>
58+
<Breadcrumb />
7759
</div>
78-
)
60+
<form onSubmit={handleCreate}>
61+
<Title title="Password change" type="User" icon={<IconPreferences />} />
62+
<label>Current password
63+
<Input type="password" name="currentPassword" value={passwords.currentPassword}
64+
onChange={handleFormChange} autoFocus required />
65+
</label>
66+
<label>New password
67+
<Input type="password" name="newPassword" value={passwords.newPassword} onChange={handleFormChange}
68+
required />
69+
</label>
70+
<label>New password confirmation
71+
<Input type="password" name="newPasswordConfirmation" value={passwords.newPasswordConfirmation}
72+
onChange={handleFormChange} required />
73+
</label>
74+
<PrimaryButton type="submit"
75+
disabled={submitButtonDisabled}>Update</PrimaryButton>
76+
</form>
77+
</div>
7978
}
8079

8180
export default UserPasswordChange

src/styles/_utilities.scss

-15
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,6 @@
1414
.only-desktop { display: none; }
1515
@media (min-width: 1200px) { .only-desktop { display: table-cell; } }
1616

17-
.from-tablet { display: none; }
18-
@media (min-width: 600px) { .from-tablet { display: table-cell; } }
19-
20-
.sr-only {
21-
position: absolute;
22-
width: 1px;
23-
height: 1px;
24-
padding: 0;
25-
margin: -1px;
26-
overflow: hidden;
27-
clip: rect(0, 0, 0, 0);
28-
white-space: nowrap;
29-
border-width: 0;
30-
}
31-
3217
.grid {
3318
display: grid;
3419
gap : var(--space);

0 commit comments

Comments
 (0)