111
111
}
112
112
113
113
.introjs-tooltipbuttons {
114
- font-size : 10px ;
115
114
text-align : right;
116
115
}
117
116
118
- .introjs-tooltipbuttons .introjs-skipbutton {
117
+ .introjs-button {
118
+ position : relative;
119
+ overflow : visible;
120
+ display : inline-block;
121
+ padding : 0.3em 0.8em ;
122
+ border : 1px solid # d4d4d4 ;
123
+ margin : 0 ;
124
+ text-decoration : none;
125
+ text-shadow : 1px 1px 0 # fff ;
126
+ font : 11 px/normal sans-serif;
127
+ color : # 333 ;
128
+ white-space : nowrap;
129
+ cursor : pointer;
130
+ outline : none;
131
+ background-color : # ececec ;
132
+ background-image : -webkit-gradient (linear, 0 0 , 0 100% , from (# f4f4f4 ), to (# ececec ));
133
+ background-image : -moz-linear-gradient (# f4f4f4, # ececec );
134
+ background-image : -o-linear-gradient (# f4f4f4, # ececec );
135
+ background-image : linear-gradient (# f4f4f4, # ececec );
136
+ -webkit-background-clip : padding;
137
+ -moz-background-clip : padding;
138
+ -o-background-clip : padding-box;
139
+ /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
140
+ -webkit-border-radius : 0.2em ;
141
+ -moz-border-radius : 0.2em ;
142
+ border-radius : 0.2em ;
143
+ /* IE hacks */
144
+ zoom : 1 ;
145
+ * display : inline;
146
+ margin-top : 10px ;
147
+ }
148
+
149
+ .introjs-button : hover {
150
+ border-color : # bcbcbc ;
151
+ text-decoration : none;
152
+ box-shadow : 0px 1px 1px # e3e3e3 ;
153
+ }
154
+
155
+ .introjs-button : focus ,
156
+ .introjs-button : active {
157
+ background-image : -webkit-gradient (linear, 0 0 , 0 100% , from (# ececec ), to (# f4f4f4 ));
158
+ background-image : -moz-linear-gradient (# ececec, # f4f4f4 );
159
+ background-image : -o-linear-gradient (# ececec, # f4f4f4 );
160
+ background-image : linear-gradient (# ececec, # f4f4f4 );
161
+ }
162
+
163
+ /* overrides extra padding on button elements in Firefox */
164
+ .introjs-button ::-moz-focus-inner {
165
+ padding : 0 ;
166
+ border : 0 ;
167
+ }
168
+
169
+ .introjs-skipbutton {
119
170
margin-right : 5px ;
120
- color : gray ;
171
+ color : # 7a7a7a ;
121
172
}
122
173
123
- .introjs-tooltipbuttons .introjs-nextbutton {
124
- font-size : 11px ;
125
- font-weight : bold;
126
- color : # 2071d3 ;
174
+ .introjs-prevbutton {
175
+ -webkit-border-radius : 0.2em 0 0 0.2em ;
176
+ -moz-border-radius : 0.2em 0 0 0.2em ;
177
+ border-radius : 0.2em 0 0 0.2em ;
178
+ border-right : none;
179
+ }
180
+
181
+ .introjs-nextbutton {
182
+ -webkit-border-radius : 0 0.2em 0.2em 0 ;
183
+ -moz-border-radius : 0 0.2em 0.2em 0 ;
184
+ border-radius : 0 0.2em 0.2em 0 ;
127
185
}
0 commit comments