Havana SCSS theme, Progress indicator styles #PL-1995

This commit is contained in:
Yuriy Artamonov 2013-05-13 13:15:03 +00:00
parent 92e95e1fcf
commit 50e3924357
5 changed files with 43 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 827 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

View File

@ -0,0 +1,41 @@
/*
* Copyright (c) 2013 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
// Version: $Id$
@mixin havana-progressindicator($primaryStyleName: v-progressindicator) {
.#{$primaryStyleName} {
background: #dfe2e4 url(images/progress-bg.gif);
width: 150px;
}
.#{$primaryStyleName}-wrapper {
border: 1px solid #b6bbbc;
height: 9px;
}
.#{$primaryStyleName}-disabled {
background: #dfe2e4 url(images/progress-disabled.gif);
height: 9px;
border: 1px solid #b6bbbc;
}
.#{$primaryStyleName}-indicator {
background: #f7f9f9 url(images/progress-line.png);
height: 9px;
}
div.#{$primaryStyleName}-indeterminate,
div.#{$primaryStyleName}-indeterminate-disabled {
background: #dfe2e4 url(images/progress-bg.gif);
height: 9px;
.#{$primaryStyleName}-indicator {
background: #f7f9f9 url(images/progress-line.png);
height: 9px;
}
}
}

View File

@ -44,6 +44,7 @@
@import "components/errorindicator/errorindicator";
@import "components/fieldgrouplayout/fieldgrouplayout";
@import "components/loadingindicator/loadingindicator";
@import "components/progressindicator/progressindicator";
@import "components/tokenlist/tokenlist";
@import "components/twincolumn/twincolumn";
@ -84,6 +85,7 @@
@include havana-errorindicator;
@include havana-fieldgrouplayout;
@include havana-loadingindicator;
@include havana-progressindicator;
@include havana-cuba-groupbox;
@include havana-cuba-grouptable;