-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-dependencies
- Loading branch information
Showing
23 changed files
with
566 additions
and
642 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
This file was deleted.
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
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
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,8 +1,8 @@ | ||
export default [ | ||
"acmecorp / alice", | ||
"acmecorp / bob", | ||
"acmecorp / cesar", | ||
"hooli / dylan", | ||
"hooli / eva", | ||
"hooli / frank", | ||
] | ||
"acmecorp / alice", | ||
"acmecorp / bob", | ||
"acmecorp / cesar", | ||
"hooli / dylan", | ||
"hooli / eva", | ||
"hooli / frank", | ||
]; |
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,119 +1,125 @@ | ||
:root { | ||
box-sizing: border-box; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | ||
font-size: 16px; | ||
margin: 30px; | ||
color: dimgray; | ||
box-sizing: border-box; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | ||
font-size: 16px; | ||
margin: 30px; | ||
color: dimgray; | ||
} | ||
|
||
select { | ||
height: 30px; | ||
border: none; | ||
border-radius: 2px; | ||
box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1); | ||
padding: 5px 0 5px 7px; | ||
cursor: pointer; | ||
} | ||
|
||
button, .button-large { | ||
cursor: pointer; | ||
height: 30px; | ||
border: none; | ||
background: whitesmoke; | ||
border-radius: 2px; | ||
box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1); | ||
padding: 5px 10px; | ||
text-decoration: none; | ||
color: initial; | ||
font-size: 16px; | ||
height: 30px; | ||
border: none; | ||
border-radius: 2px; | ||
box-shadow: | ||
inset 0 0 0 1px rgba(17, 20, 24, 0.2), | ||
0 1px 2px rgba(17, 20, 24, 0.1); | ||
padding: 5px 0 5px 7px; | ||
cursor: pointer; | ||
} | ||
|
||
button, | ||
.button-large { | ||
cursor: pointer; | ||
height: 30px; | ||
border: none; | ||
background: whitesmoke; | ||
border-radius: 2px; | ||
box-shadow: | ||
inset 0 0 0 1px rgba(17, 20, 24, 0.2), | ||
0 1px 2px rgba(17, 20, 24, 0.1); | ||
padding: 5px 10px; | ||
text-decoration: none; | ||
color: initial; | ||
font-size: 16px; | ||
} | ||
|
||
button[disabled] { | ||
color: gray; | ||
cursor: not-allowed; | ||
box-shadow: none; | ||
background-color: gainsboro; | ||
color: gray; | ||
cursor: not-allowed; | ||
box-shadow: none; | ||
background-color: gainsboro; | ||
} | ||
|
||
label { | ||
color: black; | ||
color: black; | ||
} | ||
|
||
/* nav */ | ||
|
||
nav { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: baseline; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: baseline; | ||
} | ||
|
||
nav h1 { | ||
margin: 0; | ||
margin-bottom: 5px; | ||
margin: 0; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.nav-menu { | ||
display: flex; | ||
gap: 10px; | ||
display: flex; | ||
gap: 10px; | ||
} | ||
|
||
#login label { | ||
color: dimgray; | ||
color: dimgray; | ||
} | ||
|
||
#login-menu { | ||
display: flex; | ||
gap: 10px; | ||
display: flex; | ||
gap: 10px; | ||
} | ||
|
||
#account-select { | ||
font-size: 16px; | ||
min-width: 120px; | ||
font-size: 16px; | ||
min-width: 120px; | ||
} | ||
|
||
/* main */ | ||
|
||
main { | ||
margin-top: 30px; | ||
margin-top: 30px; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
border-collapse: collapse; | ||
} | ||
|
||
thead > tr { | ||
border-bottom: solid 1px lightgray; | ||
color: black; | ||
border-bottom: solid 1px lightgray; | ||
color: black; | ||
} | ||
|
||
tr { | ||
vertical-align: baseline; | ||
text-align: left; | ||
vertical-align: baseline; | ||
text-align: left; | ||
} | ||
|
||
th, td { | ||
text-align: left; | ||
font-weight: normal; | ||
padding: 16px 24px; | ||
th, | ||
td { | ||
text-align: left; | ||
font-weight: normal; | ||
padding: 16px 24px; | ||
} | ||
|
||
.form-grid { | ||
display: grid; | ||
grid-template-columns: 150px auto; | ||
row-gap: 30px; | ||
max-width: 500px; | ||
display: grid; | ||
grid-template-columns: 150px auto; | ||
row-gap: 30px; | ||
max-width: 500px; | ||
} | ||
|
||
.update-status { | ||
color: black; | ||
font-weight: 600; | ||
color: black; | ||
font-weight: 600; | ||
} | ||
|
||
#ticket-list { | ||
margin-bottom: 30px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
#ticket-list tbody > tr:hover { | ||
background: gainsboro; | ||
cursor: pointer; | ||
} | ||
background: gainsboro; | ||
cursor: pointer; | ||
} |
Oops, something went wrong.