Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/images/bg-button.png |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.css |
— | — | @@ -183,44 +183,44 @@ |
184 | 184 | background-position: center center; |
185 | 185 | cursor: pointer; |
186 | 186 | } |
187 | | -.articleFeedbackv5-rating-label { |
| 187 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-label { |
188 | 188 | /* @embed */ |
189 | 189 | background-image: url(images/star-empty.png); |
190 | 190 | } |
191 | 191 | |
192 | | -.articleFeedbackv5-rating-clear { |
| 192 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-clear { |
193 | 193 | /* @embed */ |
194 | 194 | background-image: url(images/trash.png); |
195 | 195 | display: none; |
196 | 196 | } |
197 | 197 | |
198 | | -.articleFeedbackv5-rating-labels:hover .articleFeedbackv5-rating-clear { |
| 198 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-labels:hover .articleFeedbackv5-rating-clear { |
199 | 199 | /* @embed */ |
200 | 200 | background-image: url(images/trash-hover.png); |
201 | 201 | } |
202 | 202 | |
203 | | -.articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full { |
| 203 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full { |
204 | 204 | /* @embed */ |
205 | | - background-image: url(images/star-full.png); |
| 205 | + background-image: url(images/star-full.png) !important; |
206 | 206 | } |
207 | 207 | |
208 | | -.articleFeedbackv5-expired .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full { |
| 208 | +#mw-articlefeedbackv5 .articleFeedbackv5-expired .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full { |
209 | 209 | /* @embed */ |
210 | 210 | background-image: url(images/star-full-expired.png); |
211 | 211 | } |
212 | 212 | |
213 | | -.articleFeedbackv5-rating-new .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full, |
214 | | -.articleFeedbackv5-rating .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-hover-tail { |
| 213 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-new .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-full, |
| 214 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-hover-tail { |
215 | 215 | /* @embed */ |
216 | 216 | background-image: url(images/star-new.png); |
217 | 217 | } |
218 | 218 | |
219 | | -.articleFeedbackv5-rating .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-hover-head { |
| 219 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-hover-head { |
220 | 220 | /* @embed */ |
221 | 221 | background-image: url(images/star-new-hover.png); |
222 | 222 | } |
223 | 223 | |
224 | | -.articleFeedbackv5-rating-new .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-down { |
| 224 | +#mw-articlefeedbackv5 .articleFeedbackv5-rating-new .articleFeedbackv5-rating-label.articleFeedbackv5-rating-label-down { |
225 | 225 | /* @embed */ |
226 | 226 | background-image: url(images/star-new-down.png); |
227 | 227 | } |
— | — | @@ -237,7 +237,7 @@ |
238 | 238 | .articleFeedbackv5-rating { |
239 | 239 | float: left; |
240 | 240 | width: 11em; |
241 | | - height: 5em; |
| 241 | + height: 35px; |
242 | 242 | margin-bottom: 0.5em; |
243 | 243 | } |
244 | 244 | |
— | — | @@ -705,6 +705,9 @@ |
706 | 706 | |
707 | 707 | |
708 | 708 | /*** Dialog ***/ |
| 709 | +body .ui-widget-overlay { |
| 710 | + opacity: .45; |
| 711 | +} |
709 | 712 | .articleFeedbackv5-dialog { |
710 | 713 | border: 1px solid #cccccc; |
711 | 714 | } |
— | — | @@ -713,7 +716,6 @@ |
714 | 717 | background: #f5faff !important; |
715 | 718 | border: none; |
716 | 719 | } |
717 | | - |
718 | 720 | .articleFeedbackv5-dialog.ui-dialog .ui-dialog-content { |
719 | 721 | background: #f5faff; |
720 | 722 | } |
— | — | @@ -732,4 +734,25 @@ |
733 | 735 | .articleFeedbackv5-dialog.ui-dialog .articleFeedbackv5-tooltip { |
734 | 736 | right: -67px; |
735 | 737 | } |
736 | | - |
| 738 | +body .ui-dialog .ui-icon-closethick { |
| 739 | + text-indent: -90000px; |
| 740 | + width: 23px; |
| 741 | + height: 22px; |
| 742 | + background: url(images/bg-close-off.png) no-repeat !important; |
| 743 | +} |
| 744 | +body .ui-dialog .ui-icon-closethick:hover { |
| 745 | + background: url(images/bg-close-hov.png) no-repeat !important; |
| 746 | + border: none !important; |
| 747 | +} |
| 748 | +.ui-dialog .ui-dialog-titlebar-close { |
| 749 | +position: absolute; |
| 750 | +right: .75em; |
| 751 | +top: 50%; |
| 752 | +width: 19px; |
| 753 | +margin: -10px 0 0 0; |
| 754 | +padding: 0 !important; |
| 755 | +height: auto !important; |
| 756 | +} |
| 757 | +.ui-dialog .ui-dialog-titlebar-close.ui-state-hover { |
| 758 | + border: none !important; |
| 759 | +} |
\ No newline at end of file |