Havana SCSS theme, Loading indicator styles #PL-1995

This commit is contained in:
Yuriy Artamonov 2013-04-12 14:44:11 +00:00
parent 7ae4bc3076
commit ff524e7142
4 changed files with 24 additions and 1 deletions

View File

@ -8,7 +8,7 @@
@mixin havana-common {
.v-ui {
background: #F6F6F6;
background: #f6f6f6;
font-family: $theme_fonts;
color: #000;
font-size: 12px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,21 @@
/*
* Copyright (c) 2013 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
// Version: $Id$
@mixin havana-laodingindicator($primaryStyleName: v-loading-indicator) {
.#{$primaryStyleName},
.#{$primaryStyleName}-delay,
.#{$primaryStyleName}-wait {
position: absolute;
top: 6px;
right: 5px;
z-index: 30000;
width: 45px;
height: 45px;
background: transparent url(images/ajax-loader.gif);
}
}

View File

@ -37,6 +37,7 @@
@import "components/notification/notification";
@import "components/orderedlayout/orderedlayout";
@import "components/errorindicator/errorindicator";
@import "components/loadingindicator/laodingindicator";
// Application specific
@import "app/app-window";
@ -68,6 +69,7 @@
@include havana-filterselect;
@include havana-orderedlayout;
@include havana-errorindicator;
@include havana-laodingindicator;
@include havana-cuba-groupbox;
@include havana-cuba-grouptable;