Scrollview : change gradiation indicatorbar to png image
authorJinhyuk Jun <jinhyuk.jun@samsung.com>
Thu, 23 May 2013 10:50:31 +0000 (19:50 +0900)
committerhc7.choi <hc7choi@hc7.choi>
Fri, 31 May 2013 09:02:56 +0000 (18:02 +0900)
Change-Id: I024001b17e9a0d2d206197963ceca825aace7ce3

src/themes/tizen/common/jquery.mobile.tizen.scrollview.less [changed mode: 0644->0755]
src/themes/tizen/tizen-black/images/00_overscrolling_bottom.png [new file with mode: 0755]
src/themes/tizen/tizen-black/images/00_overscrolling_top.png [new file with mode: 0755]
src/themes/tizen/tizen-white/images/00_overscrolling_bottom.png [new file with mode: 0755]
src/themes/tizen/tizen-white/images/00_overscrolling_top.png [new file with mode: 0755]

old mode 100644 (file)
new mode 100755 (executable)
index d834164..da1b901
        display: block;
        top: 0;
        width: 100%;
-       height: 10 * @unit_base;
+       height: 18 * @unit_base;
        opacity: 0;
-       background: -webkit-gradient(linear,
-                               left bottom,
-                               left top,
-                               color-stop(0, @color_scrollview_indicator_start),
-                               color-stop(1, @color_scrollview_indicator_end));
+
+       background-repeat: no-repeat;
+       background-size: 100% 100%;
+       background-image: url(images/00_overscrolling_top.png);
 }
 
 .ui-overflow-indicator-bottom {
        display: block;
        bottom: 0;
        width:100%;
-       height: 10 * @unit_base;
+       height: 18 * @unit_base;
        opacity: 0;
-       background: -webkit-gradient(linear,
-                               left bottom,
-                               left top,
-                               color-stop(0, @color_scrollview_indicator_end),
-                               color-stop(1, @color_scrollview_indicator_start));
+
+       background-repeat: no-repeat;
+       background-size: 100% 100%;
+       background-image: url(images/00_overscrolling_bottom.png);
 }
 
 /*
diff --git a/src/themes/tizen/tizen-black/images/00_overscrolling_bottom.png b/src/themes/tizen/tizen-black/images/00_overscrolling_bottom.png
new file mode 100755 (executable)
index 0000000..f50977e
Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_overscrolling_bottom.png differ
diff --git a/src/themes/tizen/tizen-black/images/00_overscrolling_top.png b/src/themes/tizen/tizen-black/images/00_overscrolling_top.png
new file mode 100755 (executable)
index 0000000..17a64f2
Binary files /dev/null and b/src/themes/tizen/tizen-black/images/00_overscrolling_top.png differ
diff --git a/src/themes/tizen/tizen-white/images/00_overscrolling_bottom.png b/src/themes/tizen/tizen-white/images/00_overscrolling_bottom.png
new file mode 100755 (executable)
index 0000000..f50977e
Binary files /dev/null and b/src/themes/tizen/tizen-white/images/00_overscrolling_bottom.png differ
diff --git a/src/themes/tizen/tizen-white/images/00_overscrolling_top.png b/src/themes/tizen/tizen-white/images/00_overscrolling_top.png
new file mode 100755 (executable)
index 0000000..17a64f2
Binary files /dev/null and b/src/themes/tizen/tizen-white/images/00_overscrolling_top.png differ