Changeset 1089
- Timestamp:
- 04/28/10 17:38:45 (22 months ago)
- Location:
- plugins/apostrophePlugin/trunk/web
- Files:
-
- 4 modified
-
css/a.css (modified) (2 diffs)
-
images/asc.png (modified) (previous)
-
images/desc.png (modified) (previous)
-
js/aUI.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostrophePlugin/trunk/web/css/a.css
r1081 r1089 646 646 font-size: 11px; 647 647 color: #fff; 648 background: #000 !important; 649 border-radius: 4px; 650 -moz-border-radius: 4px; 651 -webkit-border-radius: 4px; 648 background: rgba(0,0,0,0.75) !important; 649 background: #000; 650 -moz-border-radius: 5px; 651 -webkit-border-radius: 5px; 652 border-radius: 5px; 652 653 background-image: -moz-linear-gradient(center bottom, #000 0%, #525252 100% ); 653 654 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(1, #525252)); … … 1120 1121 background-position: 0 -601px; 1121 1122 } 1123 1124 .icon.a-sort-arrow 1125 { 1126 background-position: 0 0; 1127 } 1128 1129 .icon.a-sort-arrow.sorting, 1130 .icon.a-sort-arrow:hover 1131 { 1132 background-position: 0 -20px; 1133 } 1134 1135 .icon.a-sort-arrow.asc 1136 { 1137 background-image: url(/apostrophePlugin/images/a-icon-sort-arrow-asc.png); 1138 } 1139 1140 .icon.a-sort-arrow.desc 1141 { 1142 background-image: url(/apostrophePlugin/images/a-icon-sort-arrow-desc.png); 1143 } 1144 1145 .icon.a-sort-arrow.sorting:hover 1146 { 1147 background-position: 0 -20px; 1148 } 1149 1150 .icon.a-sort-arrow.asc.sorting:hover 1151 { 1152 background-image: url(/apostrophePlugin/images/a-icon-sort-arrow-desc.png); 1153 } 1154 .icon.a-sort-arrow.desc.sorting:hover 1155 { 1156 background-image: url(/apostrophePlugin/images/a-icon-sort-arrow-asc.png); 1157 } 1158 1122 1159 1123 1160 input.a-submit, -
plugins/apostrophePlugin/trunk/web/js/aUI.js
r1045 r1089 39 39 if (!$(this).children('span').size()) 40 40 { 41 $(this). wrapInner('<span class="flag-label"></span>');42 } 41 $(this).attr('title','').wrapInner('<span class="flag-label"></span>'); 42 } 43 43 44 44 $(this).hover(function () {

