b86a4f49a0461578855a802bd13833a43f3061ca
[platform/framework/web/web-ui-fw.git] / src / widgets / colorpicker / css / colorpicker.css
1 .ui-colorpicker .colorpicker-hs-container .sat-gradient {
2     background: none; /* Old browsers */
3     background: -webkit-gradient(linear, left top, left bottom,
4         color-stop(0%,rgba(128,128,128,0)), 
5         color-stop(100%,rgba(128,128,128,1))); /* Chrome,Safari4+ */
6     background: -moz-linear-gradient(top, 
7         rgba(128,128,128,0) 0%, 
8         rgba(128,128,128,1) 100%); /* FF3.6+ */
9     background: -webkit-linear-gradient(top, 
10         rgba(128,128,128,0) 0%,
11         rgba(128,128,128,1) 100%); /* Chrome10+,Safari5.1+ */
12     background: -o-linear-gradient(top, 
13         rgba(128,128,128,0) 0%,
14         rgba(128,128,128,1) 100%); /* Opera11.10+ */
15     background: -ms-linear-gradient(top, 
16         rgba(128,128,128,0) 0%,
17         rgba(128,128,128,1) 100%); /* IE10+ */
18     background: linear-gradient(top, 
19         rgba(128,128,128,0) 0%,
20         rgba(128,128,128,1) 100%); /* W3C */
21     filter: progid:DXImageTransform.Microsoft.gradient (startColorstr='#00808080', endColorstr="#808080", GradientType = 0);
22 }
23
24 .ui-colorpicker .colorpicker-l-container .l-gradient {
25     background: none; /* Old browsers */
26     background: -webkit-gradient(linear, left top, left bottom,
27         color-stop(0%,rgba(0,0,0,1)),
28         color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
29     background: -moz-linear-gradient(top,
30         rgba(0,0,0,1) 0%, 
31         rgba(255,255,255,1) 100%); /* FF3.6+ */
32     background: -webkit-linear-gradient(top, 
33         rgba(0,0,0,1) 0%,
34         rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
35     background: -o-linear-gradient(top, 
36         rgba(0,0,0,1) 0%,
37         rgba(255,255,255,1) 100%); /* Opera11.10+ */
38     background: -ms-linear-gradient(top, 
39         rgba(0,0,0,1) 0%,
40         rgba(255,255,255,1) 100%); /* IE10+ */
41     background: linear-gradient(top, 
42         rgba(0,0,0,1) 0%,
43         rgba(255,255,255,1) 100%); /* W3C */
44     filter: progid:DXImageTransform.Microsoft.gradient (startColorstr='#000000', endColorstr="#ffffff", GradientType = 0);
45 }