Skip to content

Commit

Permalink
[4.0] Fix Spinner Styling (#33041)
Browse files Browse the repository at this point in the history
* Fix spinner going out of bounds in com_languages

Issue: #32948

Original
`#refresh-status.show {
	display: grid;
}`

Modified
`#refresh-status.show {
	display: block;
}`

* [4.0] Fix spinner going out of bounds in com_languages 

Issue: #32948

Original
`#refresh-status.show {
	display: grid;
}`

Modified
`#refresh-status.show {
	display: block;
}`

* Update build/media_source/com_languages/css/overrider.css

Co-authored-by: Quy <quy@fluxbb.org>

Co-authored-by: Quy <quy@fluxbb.org>
  • Loading branch information
YatharthVyas and Quy committed Apr 6, 2021
1 parent 6d32e94 commit ad97c80
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build/media_source/com_languages/css/overrider.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
display: none;
}
#overrider-spinner.show,
#refresh-status.show,
#more-results.show,
#results-container.show,
#language-results.show {
display: grid;
}

#refresh-status.show {
display: block;
}

#overrider-spinner-btn.show {
display: inline-block;
}
Expand Down

0 comments on commit ad97c80

Please sign in to comment.