Skip to content

Commit

Permalink
fix: Move registration files to right static folder (#885)
Browse files Browse the repository at this point in the history
## Describe your changes

Fixes: #886 

## Checklist before requesting review

- [x] Feature/fix PRs should add one atomic (as small as possible)
feature or fix.
- [x] The code compiles and all the tests pass.
  • Loading branch information
didrikmunther authored Jul 18, 2023
1 parent 59cab0d commit 4d51143
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 101 deletions.
File renamed without changes
File renamed without changes.
101 changes: 101 additions & 0 deletions static/registration_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ a:hover,
a:active,
a:visited {
color: #00d790;
cursor: pointer;
}

.btn-success,
Expand Down Expand Up @@ -170,4 +171,104 @@ input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
border-color: #00d790;
}

.form-step {
display: none;
}

#activeStep {
display: block;
}

#company-list {
font-size: 1.2em;
width: 100%;
position: absolute;
background-color: #ffffff;
cursor: pointer;
}

#company-list div {
padding: 15px;
}

#company-search input {
padding: 7px 8px 7px 30px;
background-image: url("images/search_icon.svg");
background-size: 13px;
background-repeat: no-repeat;
background-position: 10px center;
}

#form-step-tracker {
margin: 20px auto;
padding: 0px;
display: flex;
justify-content: center;
}

#form-step-tracker>li {
max-width: 50px;
font-size: 1rem;
margin-left: 10vw;
display: flex;
flex-direction: column;
text-align: center;
}

#form-step-tracker>li span {
position: relative;
font-weight: bold;
background: linear-gradient(to left, rgba(45, 45, 44, 20%) 50%, #00d790 50%) right;
background-size: 200%;
border-radius: 50%;
line-height: 50px;
transition: background-position .3s;
}

#form-step-tracker>li span:before {
content: "";
position: absolute;
background: linear-gradient(to left, rgba(45, 45, 44, 20%) 50%, #00d790 50%) right;
background-size: 200%;
transition: background-position .3s;
transition-delay: .3s;
top: 24px;
right: 50px;
width: 10vw;
height: 2px;
}

#form-step-tracker>li.no-transition span,
#form-step-tracker>li.no-transition span:before {
transition: none;
}

#company-confirmation {
display: none;
}

#form-step-tracker>li.active span {
background-position: left;
transition: background-position .3s;
transition-delay: .3s;
}

#form-step-tracker>li.active span:before {
background-position: left;
transition: background-position .3s;
}

#form-step-tracker>li:first-of-type {
margin-left: 0px;
}

#form-step-tracker>li:first-of-type span:before {
display: none;
}

#company-list-no-results {
color: #e73953;
visibility: hidden;
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ a:hover,
a:active,
a:visited {
color: #00d790;
cursor: pointer;
}

.btn-success,
Expand Down Expand Up @@ -171,104 +170,4 @@ input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
border-color: #00d790;
}

.form-step {
display: none;
}

#activeStep {
display: block;
}

#company-list {
font-size: 1.2em;
width: 100%;
position: absolute;
background-color: #ffffff;
cursor: pointer;
}

#company-list div {
padding: 15px;
}

#company-search input {
padding: 7px 8px 7px 30px;
background-image: url("images/search_icon.svg");
background-size: 13px;
background-repeat: no-repeat;
background-position: 10px center;
}

#form-step-tracker {
margin: 20px auto;
padding: 0px;
display: flex;
justify-content: center;
}

#form-step-tracker>li {
max-width: 50px;
font-size: 1rem;
margin-left: 10vw;
display: flex;
flex-direction: column;
text-align: center;
}

#form-step-tracker>li span {
position: relative;
font-weight: bold;
background: linear-gradient(to left, rgba(45, 45, 44, 20%) 50%, #00d790 50%) right;
background-size: 200%;
border-radius: 50%;
line-height: 50px;
transition: background-position .3s;
}

#form-step-tracker>li span:before {
content: "";
position: absolute;
background: linear-gradient(to left, rgba(45, 45, 44, 20%) 50%, #00d790 50%) right;
background-size: 200%;
transition: background-position .3s;
transition-delay: .3s;
top: 24px;
right: 50px;
width: 10vw;
height: 2px;
}

#form-step-tracker>li.no-transition span,
#form-step-tracker>li.no-transition span:before {
transition: none;
}

#company-confirmation {
display: none;
}

#form-step-tracker>li.active span {
background-position: left;
transition: background-position .3s;
transition-delay: .3s;
}

#form-step-tracker>li.active span:before {
background-position: left;
transition: background-position .3s;
}

#form-step-tracker>li:first-of-type {
margin-left: 0px;
}

#form-step-tracker>li:first-of-type span:before {
display: none;
}

#company-list-no-results {
color: #e73953;
visibility: hidden;
}

0 comments on commit 4d51143

Please sign in to comment.