e9f00eec23
Allows button-style progress bars to set width without having to account for padding
25 lines
No EOL
381 B
SCSS
25 lines
No EOL
381 B
SCSS
@import "../global";
|
|
|
|
$color-download: #444;
|
|
|
|
.file-actions--stub
|
|
{
|
|
height: $height-button;
|
|
}
|
|
|
|
.file-actions__download-status-bar
|
|
{
|
|
position: relative;
|
|
color: $color-download;
|
|
}
|
|
.file-actions__download-status-bar-overlay
|
|
{
|
|
background: $color-download;
|
|
color: white;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
top: 0px;
|
|
left: 0px;
|
|
} |