Changeset 26635
- Timestamp:
- 12/04/2013 09:15:59 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/colors.css
r26570 r26635 47 47 48 48 49 /* Helper classes for p ulling MP6 colors*/50 51 . mp6-primary {49 /* Helper classes for plugins to leverage the active WordPress color scheme */ 50 51 .wp-ui-primary { 52 52 color: #fff; 53 53 background-color: #333; 54 54 } 55 . mp6-text-primary {55 .wp-ui-text-primary { 56 56 color: #333; 57 57 } 58 58 59 . mp6-highlight {59 .wp-ui-highlight { 60 60 color: white; 61 61 background-color: #1e8cbe; 62 62 } 63 . mp6-text-highlight {63 .wp-ui-text-highlight { 64 64 color: #1e8cbe; 65 65 } 66 66 67 . mp6-notification {67 .wp-ui-notification { 68 68 color: #fff; 69 69 background-color: #D54E21; 70 70 } 71 . mp6-text-notification {71 .wp-ui-text-notification { 72 72 color: #D54E21; 73 73 } 74 74 75 . mp6-text-icon {75 .wp-ui-text-icon { 76 76 color: #999; 77 77 } -
trunk/src/wp-admin/css/colors/_admin.scss
r26592 r26635 54 54 } 55 55 56 . mp6-primary {56 .wp-ui-primary { 57 57 color: $text-color; 58 58 background-color: $base-color; 59 59 } 60 . mp6-text-primary {60 .wp-ui-text-primary { 61 61 color: $base-color; 62 62 } 63 63 64 . mp6-highlight {64 .wp-ui-highlight { 65 65 color: $menu-highlight-text; 66 66 background-color: $menu-highlight-background; 67 67 } 68 . mp6-text-highlight {68 .wp-ui-text-highlight { 69 69 color: $menu-highlight-background; 70 70 } 71 71 72 . mp6-notification {72 .wp-ui-notification { 73 73 color: $menu-bubble-text; 74 74 background-color: $menu-bubble-background; 75 75 } 76 . mp6-text-notification {76 .wp-ui-text-notification { 77 77 color: $menu-bubble-background; 78 78 } 79 79 80 . mp6-text-icon {80 .wp-ui-text-icon { 81 81 color: $menu-icon; 82 82 } -
trunk/src/wp-admin/css/wp-admin.css
r26633 r26635 12753 12753 } 12754 12754 12755 /* Set drop shadow again per original mp6 plugin settings at line 1265 of colors-mp6.css in r687296, remove when original styles have been corrected */12756 12755 .plugins tr.active + tr.inactive td.column-description { 12757 12756 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); -
trunk/src/wp-includes/css/editor.css
r26528 r26635 50 50 } 51 51 52 /* These are part of TinyMCE, used in TinyMCE Advanced, but not WordPress. These are not MP6-ified.*/52 /* These are part of TinyMCE, used in TinyMCE Advanced, but not WordPress. These are not updated for 3.8's design. */ 53 53 .wp_themeSkin span.mce_sup, 54 54 .wp_themeSkin span.mce_sub, -
trunk/src/wp-includes/js/svg-painter.js
r26603 r26635 168 168 } 169 169 170 xml = $element.data( ' mp6-svg-' + color );170 xml = $element.data( 'wp-ui-svg-' + color ); 171 171 172 172 if ( ! xml ) { … … 198 198 } 199 199 200 $element.data( ' mp6-svg-' + color, xml );200 $element.data( 'wp-ui-svg-' + color, xml ); 201 201 } 202 202
Note: See TracChangeset
for help on using the changeset viewer.