Changeset 33902
- Timestamp:
- 09/04/2015 03:39:33 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r33599 r33902 1209 1209 } 1210 1210 1211 body.cheatin h1 { 1212 border-bottom: 1px solid #dadada; 1213 clear: both; 1214 color: #666; 1215 font: 24px "Open Sans", sans-serif; 1216 margin: 30px 0 0 0; 1217 padding: 0; 1218 padding-bottom: 7px; 1219 } 1220 1211 1221 body.cheatin p { 1212 1222 font-size: 14px; -
trunk/src/wp-admin/js/customize-controls.js
r33837 r33902 3029 3029 3030 3030 cheatin: function() { 3031 $( document.body ).empty().addClass('cheatin').append( '<p>' + api.l10n.cheatin + '</p>' ); 3031 $( document.body ).empty().addClass( 'cheatin' ).append( 3032 '<h1>' + api.l10n.cheatin + '</h1>' + 3033 '<p>' + api.l10n.notAllowed + '</p>' 3034 ); 3032 3035 }, 3033 3036 -
trunk/src/wp-includes/script-loader.php
r33517 r33902 429 429 'close' => __( 'Close' ), 430 430 'cheatin' => __( 'Cheatin’ uh?' ), 431 'notAllowed' => __( 'You are not allowed to customize the appearance of this site.' ), 431 432 'previewIframeTitle' => __( 'Site Preview' ), 432 433 'loginIframeTitle' => __( 'Session expired' ),
Note: See TracChangeset
for help on using the changeset viewer.