Skip to content

Commit

Permalink
Improve progress bar style
Browse files Browse the repository at this point in the history
  • Loading branch information
Eg0ra committed Nov 26, 2024
1 parent d934618 commit 94cad55
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 88 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
=======
History
=======
UNRELEASED
------------------
* Fix progress bar on changeview for ImportJob and ExportJob
* Improve celery-import-result page
* Add displaying resources for import form
* Fix autofill `Format` by file extension
* Add `Totals` section
* Fixed display of progress bar when task is waiting to run (#68)
* Improve progress bar style (#72)

1.0.1 (2024-11-08)
------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ progress {
width: 100%;
-webkit-appearance: none;
border: none;
position:relative;
position: relative;
}
progress:before {
content: attr(data-label);
Expand All @@ -24,8 +24,13 @@ progress::-webkit-progress-bar {
background-color: var(--breadcrumbs-fg);
}
progress::-webkit-progress-value {
background-color: var(--breadcrumbs-bg);
background-color: var(--primary);
}
progress::-moz-progress-bar {
background-color: var(--breadcrumbs-bg);
}

html[data-theme="dark"]
progress::-webkit-progress-bar {
background-color: var(--darkened-bg);
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

{% comment %}
Template to show status of export job.
Similar to job's admin page.
{% endcomment %}

{% block extrastyle %}
Expand Down

This file was deleted.

0 comments on commit 94cad55

Please sign in to comment.