minor style fix

This commit is contained in:
fbsanchez 2019-11-15 16:51:53 +01:00
parent 17918cd5c6
commit 84c6640032
2 changed files with 10 additions and 1 deletions

View File

@ -2964,7 +2964,7 @@ function ui_progress_extend(
ui_require_css_file('progress');
// Main container.
$output .= '<div class="progress_main" ';
$output .= '<div class="progress_main_noborder" ';
$output .= '" style="width:'.$data['width'].'%;';
$output .= ' height:'.$data['height'].'em;">';

View File

@ -6,6 +6,15 @@
display: inline-block;
display: flex;
}
.progress_main_noborder {
height: 2.5em;
position: relative;
width: 100%;
display: inline-block;
display: flex;
}
.progress_main:before {
content: attr(data-label);
position: absolute;