OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 26 matching lines...) Expand all Loading... |
37 color: #333; | 37 color: #333; |
38 } | 38 } |
39 | 39 |
40 .ui-widget-content { | 40 .ui-widget-content { |
41 font-family: 'Open Sans'; | 41 font-family: 'Open Sans'; |
42 } | 42 } |
43 | 43 |
44 .ui-widget button, button { | 44 .ui-widget button, button { |
45 font-family: 'Open Sans'; | 45 font-family: 'Open Sans'; |
46 border-radius: 2px; | 46 border-radius: 2px; |
47 background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1); | 47 background-image: linear-gradient(#f5f5f5, #f1f1f1); |
48 border: 1px solid rgba(0, 0, 0, 0.1); | 48 border: 1px solid rgba(0, 0, 0, 0.1); |
49 border-radius: 2px; | 49 border-radius: 2px; |
50 color: #666; | 50 color: #666; |
51 cursor: pointer; | 51 cursor: pointer; |
52 font-size: 11px; | 52 font-size: 11px; |
53 font-weight: bold; | 53 font-weight: bold; |
54 height: 29px; | 54 height: 29px; |
55 line-height: 27px; | 55 line-height: 27px; |
56 min-width: 54px; | 56 min-width: 54px; |
57 padding: 0 8px; | 57 padding: 0 8px; |
58 text-align: center | 58 text-align: center |
59 } | 59 } |
60 | 60 |
61 button.next { | 61 button.next { |
62 margin-left: 0px; | 62 margin-left: 0px; |
63 } | 63 } |
64 | 64 |
65 button.previous { | 65 button.previous { |
66 margin-right: 0px; | 66 margin-right: 0px; |
67 } | 67 } |
68 | 68 |
69 button[disabled] { | 69 button[disabled] { |
70 visibility: hidden; | 70 visibility: hidden; |
71 } | 71 } |
72 | 72 |
73 button:hover { | 73 button:hover { |
74 background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1); | 74 background-image: linear-gradient(#f8f8f8, #f1f1f1); |
75 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 75 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
76 background-color: #f8f8f8; | 76 background-color: #f8f8f8; |
77 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); | 77 background-image: linear-gradient(top,#f8f8f8,#f1f1f1); |
78 border: 1px solid #c6c6c6; | 78 border: 1px solid #c6c6c6; |
79 box-shadow: 0 1px 1px rgba(0,0,0,0.1); | 79 box-shadow: 0 1px 1px rgba(0,0,0,0.1); |
80 color: #333 | 80 color: #333 |
81 } | 81 } |
82 | 82 |
83 button:focus { | 83 button:focus { |
84 border: 1px solid #4d90fe; | 84 border: 1px solid #4d90fe; |
85 outline: none | 85 outline: none |
86 } | 86 } |
87 | 87 |
88 button.default { | 88 button.default { |
89 border: 1px solid #3079ED; | 89 border: 1px solid #3079ED; |
90 color: white; | 90 color: white; |
91 background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed); | 91 background-image: linear-gradient(#4d90fe, #4787ed); |
92 } | 92 } |
93 | 93 |
94 button.default:hover { | 94 button.default:hover { |
95 border: 1px solid #2f5bb7; | 95 border: 1px solid #2f5bb7; |
96 color: white; | 96 color: white; |
97 background-color: #357ae8; | 97 background-color: #357ae8; |
98 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); | 98 background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe)
,to(#357ae8)); |
99 } | 99 } |
100 | 100 |
101 .clear { | 101 .clear { |
102 clear: both; | 102 clear: both; |
103 } | 103 } |
OLD | NEW |