mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
parent
898c037df0
commit
32eb1819aa
@ -1,17 +0,0 @@
|
||||
header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 14px;
|
||||
font-weight: bold !important;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.filterissue-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
justify-content: left;
|
||||
}
|
@ -16,8 +16,6 @@ import FilterToolbar from './FilterToolbar';
|
||||
import List from './List';
|
||||
import { useListBugsQuery } from './ListQuery.generated';
|
||||
|
||||
import './ListQuery.css';
|
||||
|
||||
type StylesProps = { searching?: boolean };
|
||||
const useStyles = makeStyles<Theme, StylesProps>((theme) => ({
|
||||
main: {
|
||||
@ -43,6 +41,17 @@ const useStyles = makeStyles<Theme, StylesProps>((theme) => ({
|
||||
alignItems: 'center',
|
||||
justifyContent: 'space-between',
|
||||
},
|
||||
filterissueLabel: {
|
||||
fontSize: '14px',
|
||||
fontWeight: 'bold',
|
||||
paddingRight: '12px',
|
||||
},
|
||||
filterissueContainer: {
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
alignItems: 'flex-start',
|
||||
justifyContents: 'left',
|
||||
},
|
||||
search: {
|
||||
borderRadius: theme.shape.borderRadius,
|
||||
borderColor: fade(theme.palette.primary.main, 0.2),
|
||||
@ -98,7 +107,7 @@ const useStyles = makeStyles<Theme, StylesProps>((theme) => ({
|
||||
padding: theme.spacing(2, 3),
|
||||
},
|
||||
},
|
||||
gitbugButton: {
|
||||
greenButton: {
|
||||
backgroundColor: '#2ea44fd9',
|
||||
color: '#fff',
|
||||
'&:hover': {
|
||||
@ -281,9 +290,11 @@ function ListQuery() {
|
||||
return (
|
||||
<Paper className={classes.main}>
|
||||
<header className={classes.header}>
|
||||
<div className="filterissue-container">
|
||||
<div className="filterissueContainer">
|
||||
<form onSubmit={formSubmit}>
|
||||
<label htmlFor="issuefilter">Filter</label>
|
||||
<label className={classes.filterissueLabel} htmlFor="issuefilter">
|
||||
Filter
|
||||
</label>
|
||||
<InputBase
|
||||
id="issuefilter"
|
||||
placeholder="Filter"
|
||||
@ -299,11 +310,7 @@ function ListQuery() {
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<Button
|
||||
className={classes.gitbugButton}
|
||||
variant="contained"
|
||||
href="/new"
|
||||
>
|
||||
<Button className={classes.greenButton} variant="contained" href="/new">
|
||||
New issue
|
||||
</Button>
|
||||
</header>
|
||||
|
Loading…
Reference in New Issue
Block a user