horizon/openstack_dashboard/static/dashboard/scss/components/_pending_bar.scss
Diana Whitten 45f3d34e32 Container Loader Image now Themable
The Container was still using the old loading.gif, which is a static
file that cannot be made themable. Now, just like the pending table
actions, it uses the bootstrap progress bar, thus making it theme
compliant, and now we can completely remove that gif from the code
base.

Change-Id: I382078e9f07084ef723c8d3dbdc8114e1467d46c
Partially-Implements: blueprint horizon-theme-css-reorg
Partially-Implements: blueprint bootstrap-html-standards
2016-02-07 07:57:48 -07:00

19 lines
308 B
SCSS

.horizon-pending-bar {
position: relative;
.progress {
margin-bottom: $padding-small-vertical;
}
.horizon-pending-bar-icon {
position: absolute;
z-index: 1;
left: calc(50% - .5em);
bottom: calc(50% - .5em);
}
&.container-pending-bar .progress {
margin-bottom: 0;
}
}