Changeset 31579
- Timestamp:
- 02/27/2015 08:18:05 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r31573 r31579 193 193 ] 194 194 }, 195 properties : [ 196 { 197 name: 'swap-dashicons-left-right-arrows', 198 expr: /content/im, 199 action: function( prop, value ) { 200 if ( value === '"\\f141"' ) { // dashicons-arrow-left 201 value = '"\\f139"'; 202 } else if ( value === '"\\f340"' ) { // dashicons-arrow-left-alt 203 value = '"\\f344"'; 204 } else if ( value === '"\\f341"' ) { // dashicons-arrow-left-alt2 205 value = '"\\f345"'; 206 } else if ( value === '"\\f139"' ) { // dashicons-arrow-right 207 value = '"\\f141"'; 208 } else if ( value === '"\\f344"' ) { // dashicons-arrow-right-alt 209 value = '"\\f340"'; 210 } else if ( value === '"\\f345"' ) { // dashicons-arrow-right-alt2 211 value = '"\\f341"'; 212 } 213 return { prop: prop, value: value }; 214 } 215 } 216 ], 195 217 saveUnmodified: false 196 218 }, … … 202 224 src: [ 203 225 'wp-admin/css/*.css', 204 'wp-includes/css/*.css' 226 'wp-includes/css/*.css', 227 228 // Exceptions 229 '!wp-includes/css/dashicons.css' 205 230 ] 206 231 }, -
trunk/src/wp-admin/css/customize-controls.css
r31538 r31579 161 161 border-left: 1px solid #eee; 162 162 z-index: 0; 163 }164 165 .rtl .control-section.control-panel > .accordion-section-title:after {166 content: "\f341";167 163 } 168 164 … … 261 257 top: 7px; 262 258 left: 13px; 263 }264 265 .rtl .control-panel-back:before {266 content: "\f345";267 259 } 268 260 … … 941 933 } 942 934 943 .rtl .control-panel-back.themes-panel-back:before {944 content: "\f341";945 }946 947 935 /* Details View */ 948 936 .wp-customizer .theme-overlay { … … 989 977 top: 0; 990 978 bottom: 0; 991 } 979 } 992 980 } 993 981 -
trunk/src/wp-admin/css/themes.css
r31573 r31579 500 500 } 501 501 502 .theme-overlay .theme-header .left:before, 503 .rtl .theme-overlay .theme-header .right:before { 504 content: '\f341'; 505 } 506 507 .theme-overlay .theme-header .right:before, 508 .rtl .theme-overlay .theme-header .left:before { 509 content: '\f345'; 502 .theme-overlay .theme-header .left:before { 503 content: "\f341"; 504 } 505 506 .theme-overlay .theme-header .right:before { 507 content: "\f345"; 510 508 } 511 509 … … 1463 1461 } 1464 1462 1465 .rtl .theme-install-overlay .previous-theme:before {1466 content: "\f345";1467 }1468 1469 .rtl .theme-install-overlay .next-theme:before {1470 content: "\f341";1471 }1472 1473 1463 /* Collapse Button */ 1474 1464 .wp-full-overlay a.collapse-sidebar {
Note: See TracChangeset
for help on using the changeset viewer.