Skip to content

Commit

Permalink
Fix #3528
Browse files Browse the repository at this point in the history
Make the progress bar not overlap the textarea. While at it, also remove useless `content: ""` rules which do nothing, and an useless `width` declaration which also does nothing because it's the same width as the block would have minus margins.
  • Loading branch information
emilio authored Feb 10, 2021
1 parent a7511a1 commit f0be658
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions webcompat/static/css/src/issue-wizard-textarea.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,16 @@
.progress-textarea .progress {
background: #b3f4d7;
border-radius: 2px;
bottom: 0;
content: "";
height: 20px;
left: 0;
margin: 4px;
overflow: hidden;
position: absolute;
width: calc(100% - 8px);
position: relative;
z-index: 2;
}

.progress-textarea .progress .bar {
background: #22b573;
bottom: 0;
content: "";
height: 20px;
left: 0;
min-width: 1%;
Expand Down

0 comments on commit f0be658

Please sign in to comment.