Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Qset standardization, preflight checks + various smaller patches #124

Open
wants to merge 16 commits into
base: dev/3.0.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
**/.DS_Store
qsets/*.json
node_modules
build
build


# IDEs
**/.idea
10 changes: 10 additions & 0 deletions assets/css/mdk-creator.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#container {
height: 100%;
width: 100%;
}

.center {
width: 100%;
height: 600px;
}

90 changes: 75 additions & 15 deletions assets/css/mwdk-download.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,99 @@ body#download .disclaimer {
}

body#download hr {
margin: 15px 50px 0;
margin: 15px 25px 0;
}

body#download #build-commands{
margin: 47px;
margin: 10px;
}

body#download #download_button{
margin-right:20px;
}

body#download #preflight-checklist-container {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 25px 25px 25px;
}

body#download #preflight-checklist{
display: grid;
grid-template-columns: 1fr 1fr;
row-gap: 0.5rem;
column-gap: 1rem;
}

.preflight-item {
display: flex;
gap: 0.5rem;
align-items: center;
}

.preflight-item-text {
display: flex;
flex-direction: column;
}

.preflight-item .pass {
background-image: url("/mwdk/assets/img/valid.svg");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
min-width: 20px;
width: 20px;
height: 100%;
}

.preflight-item .fail {
background-image: url("/mwdk/assets/img/invalid.svg");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
min-width: 20px;
width: 20px;
height: 100%;
}

.preflight-item .unknown {
content: "?";
color: orange;
}

.preflight-item .action{
font-size: 12px;
}

.preflight-check-warning-text {
width: 100%;
text-align: center;
font-style: italic;
}

.hide {
display: none;
display: none;
}

#progress-container {
padding: 30px;
padding: 30px;
}

#progressbar {
width: 100%;
height: 20px;
margin: 20px auto;
width: 100%;
height: 20px;
margin: 20px auto;

background: #b2aeb7;
border-radius: 11px;
background: #b2aeb7;
border-radius: 11px;
}

#progressbar #fill {
width: 0;
height: 100%;
width: 0;
height: 100%;

background: #1da4cd;
border-radius: 11px;
/* transition: width 0.3s ease; */
}
background: #1da4cd;
border-radius: 11px;
/* transition: width 0.3s ease; */
}
11 changes: 8 additions & 3 deletions assets/css/mwdk-main.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
margin-bottom: 0.5em;
}

.tools {
margin-top: -12px;
float: right;
}

#leftbar {
width: 250px;
background: #333;
Expand Down Expand Up @@ -140,7 +145,7 @@
background: #fff;

width: 500px;
height: 280px;
height: 500px;

margin: 0 auto;
}
Expand Down Expand Up @@ -374,7 +379,7 @@ header.logged-in {

/* Hide login timeout */
.alert-wrapper {
display: none;
/*display: none;*/
}

.dot {
Expand Down Expand Up @@ -454,4 +459,4 @@ header.logged-in {
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
}
1 change: 1 addition & 0 deletions assets/img/invalid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/valid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading