From 50e392435799866d076d3a1c829bfd160a03f352 Mon Sep 17 00:00:00 2001 From: Yuriy Artamonov Date: Mon, 13 May 2013 13:15:03 +0000 Subject: [PATCH] Havana SCSS theme, Progress indicator styles #PL-1995 --- .../progressindicator/images/progress-bg.gif | Bin 0 -> 827 bytes .../images/progress-disabled.gif | Bin 0 -> 179 bytes .../images/progress-line.png | Bin 0 -> 164 bytes .../progressindicator/progressindicator.scss | 41 ++++++++++++++++++ modules/web/themes/havana/havana.scss | 2 + 5 files changed, 43 insertions(+) create mode 100644 modules/web/themes/havana/components/progressindicator/images/progress-bg.gif create mode 100644 modules/web/themes/havana/components/progressindicator/images/progress-disabled.gif create mode 100644 modules/web/themes/havana/components/progressindicator/images/progress-line.png create mode 100644 modules/web/themes/havana/components/progressindicator/progressindicator.scss diff --git a/modules/web/themes/havana/components/progressindicator/images/progress-bg.gif b/modules/web/themes/havana/components/progressindicator/images/progress-bg.gif new file mode 100644 index 0000000000000000000000000000000000000000..6c6f15ef9e94ad4bb7a0f154da95aa81a3d99999 GIT binary patch literal 827 zcmZ?wbhEHb!jztqDTZf)6WyyFCOuX-t90kk zQUyl?i3WuQ4hmoD4k>=*@X@RFeJIR%Ah66Nngg35h7W{QQ;Z^c9*5j`C^zAWg2!f# z9R->$0z7OD0s$Id>J9=82>}|iR8Z;+rv}$7T^4Mn=qr47@to-+_SizSY!ADNCdVZm zC%qU}K^A7_1dBI+n~p5v*YJ^=>3P7o<8oleHUVsA7$_XJ2~1L(tZM1kD*J&kmaEC6 zdjYqDBTHi=ql3z?hC_=!ipyyA`#u-yyv?a$>Vn-n3yvE2PnmO)#j_6>EHxa{n}EUc zh9N+p@xXx#+W(pkC%xA&5$JVD6p}jfvW%$bKVvO!fF0mhZnPJkUgf&o%5`f_f43{dI2~R9Uw{d*|nZn_~FVfSg{6VOc}?P0#NX>Jz!>aQZSGJ$IuIJ zzFvC;#~nRl8WwjKsc|r3GeXetZ`(Nprke#7{V>GZy13gY}%c`4GiIf2@DPnjRG3Knw*$6e&-fzJGQL2 PlI50$70X#MCI)K&9(oIX literal 0 HcmV?d00001 diff --git a/modules/web/themes/havana/components/progressindicator/images/progress-disabled.gif b/modules/web/themes/havana/components/progressindicator/images/progress-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..7a64d034b2e075903853ae437452598c3df18e5d GIT binary patch literal 179 zcmZ?wbhEHb{< zdGy4oWh+))zINmAvExgYt=O`C$Fv!<4jnxif zzkmP!^XJv2rWQb12~QWtkcwML38@VZVr*<|X>4w6Y7Gp`42($(@>`Bh0=b95)78&q Iol`;+0OVpebN~PV literal 0 HcmV?d00001 diff --git a/modules/web/themes/havana/components/progressindicator/progressindicator.scss b/modules/web/themes/havana/components/progressindicator/progressindicator.scss new file mode 100644 index 0000000000..598caced6b --- /dev/null +++ b/modules/web/themes/havana/components/progressindicator/progressindicator.scss @@ -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; + } + } +} \ No newline at end of file diff --git a/modules/web/themes/havana/havana.scss b/modules/web/themes/havana/havana.scss index 3d5e5ffe1a..cc541de5a3 100644 --- a/modules/web/themes/havana/havana.scss +++ b/modules/web/themes/havana/havana.scss @@ -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;