Changeset 36587
- Timestamp:
- 02/19/2016 06:43:04 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/admin-menu.css
r34011 r36587 39 39 40 40 .icon16:before { 41 color: # 999;41 color: #82878c; /* same as new icons */ 42 42 font: normal 20px/1 dashicons; 43 43 speak: none; -
trunk/src/wp-admin/css/common.css
r36582 r36587 444 444 .subsubsub a .count, 445 445 .subsubsub a.current .count { 446 color: # 999;446 color: #555d66; /* #f1f1f1 background */ 447 447 font-weight: normal; 448 448 } … … 694 694 695 695 .wp-ui-text-icon { 696 color: # 999;696 color: #82878c; /* same as new icons */ 697 697 } 698 698 -
trunk/src/wp-admin/css/dashboard.css
r36396 r36587 609 609 610 610 #dashboard_activity .no-activity p { 611 color: # 999;611 color: #72777c; 612 612 font-size: 16px; 613 613 } … … 638 638 } 639 639 640 #dashboard_activity .subsubsub a .count, 641 #dashboard_activity .subsubsub a.current .count { 642 color: #72777c; /* white background on the dashboard but #f1f1f1 on list tables */ 643 } 644 640 645 #future-posts ul, 641 646 #published-posts ul { … … 874 879 875 880 .rss-widget span.rss-date { 876 color: # 999;881 color: #72777c; 877 882 font-size: 13px; 878 883 margin-left: 3px; -
trunk/src/wp-admin/css/install.css
r36423 r36587 98 98 background-position: center top; 99 99 background-repeat: no-repeat; 100 color: # 999;100 color: #444; /* same as login.css */ 101 101 height: 84px; 102 102 font-size: 20px; -
trunk/src/wp-admin/css/list-tables.css
r36582 r36587 1643 1643 1644 1644 .no-plugin-results { 1645 color: # 999;1645 color: #666; /* same as no themes and no media */ 1646 1646 font-size: 18px; 1647 1647 font-style: normal; -
trunk/src/wp-admin/css/media.css
r36537 r36587 610 610 611 611 .media-frame.mode-grid .attachments-browser .no-media { 612 color: # 999;612 color: #666; /* same as no plugins and no themes */ 613 613 font-size: 18px; 614 614 font-style: normal; -
trunk/src/wp-admin/css/nav-menus.css
r36422 r36587 70 70 71 71 .is-submenu { 72 color: # 999;72 color: #555d66; /* #fafafa background */ 73 73 font-style: italic; 74 74 font-weight: normal; … … 135 135 136 136 .theme-location-set { 137 color: # 999;137 color: #72777c; 138 138 font-size: 11px; 139 139 } … … 485 485 486 486 .menu-item-handle .menu-item-title.no-title { 487 color: # 999;487 color: #72777c; 488 488 } 489 489 -
trunk/src/wp-admin/css/press-this.css
r36537 r36587 1198 1198 1199 1199 .adminbar .dashicons { 1200 color: # 999;1200 color: #a0a5aa; /* same as WP admin bar icons */ 1201 1201 } 1202 1202 -
trunk/src/wp-admin/css/themes.css
r36579 r36587 304 304 305 305 .theme-browser .theme.add-new-theme a { 306 color: #999;307 306 text-decoration: none; 308 307 display: block; … … 726 725 727 726 .theme-overlay .theme-version { 728 color: # 999;727 color: #72777c; 729 728 font-size: 13px; 730 729 font-weight: 400; … … 1092 1091 .upload-theme .install-help, 1093 1092 .upload-plugin .install-help { 1094 color: # 999;1093 color: #555d66; /* #f1f1f1 background */ 1095 1094 font-size: 18px; 1096 1095 font-style: normal; … … 1150 1149 .theme-details .no-rating { 1151 1150 font-size: 11px; 1152 color: # 999;1151 color: #72777c; 1153 1152 } 1154 1153 -
trunk/src/wp-admin/css/widgets.css
r36422 r36587 462 462 } 463 463 464 /* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */ 464 465 .widgets-chooser li:hover, 465 466 .widgets-chooser li:focus { … … 472 473 -webkit-font-smoothing: antialiased; 473 474 font: normal 26px/1 dashicons; 474 color: # 999;475 color: #555d66; 475 476 position: absolute; 476 477 top: 7px; -
trunk/src/wp-admin/includes/misc.php
r36232 r36587 711 711 } else { 712 712 // Fall back to the default set of icon colors if the default scheme is missing. 713 $icon_colors = array( 'base' => '# 999', 'focus' => '#00a0d2', 'current' => '#fff' );713 $icon_colors = array( 'base' => '#82878c', 'focus' => '#00a0d2', 'current' => '#fff' ); 714 714 } 715 715 -
trunk/src/wp-includes/css/admin-bar.css
r35340 r36587 454 454 455 455 #wpadminbar #wp-admin-bar-user-info .username { 456 color: # 999;456 color: #a0a5aa; 457 457 font-size: 11px; 458 458 } … … 907 907 width: 52px; 908 908 padding: 0; 909 color: # 999;909 color: #a0a5aa; /* @todo not needed? this text is hidden */ 910 910 position: relative; 911 911 } -
trunk/src/wp-includes/css/media-views.css
r36396 r36587 2007 2007 2008 2008 .image-details .custom-size span small { 2009 color: # 999;2009 color: #555d66; /* #f3f3f3 background */ 2010 2010 font-size: inherit; 2011 2011 } -
trunk/src/wp-includes/general-template.php
r36540 r36587 3145 3145 false, 3146 3146 array( '#222', '#333', '#0073aa', '#00a0d2' ), 3147 array( 'base' => '# 999', 'focus' => '#00a0d2', 'current' => '#fff' )3147 array( 'base' => '#82878c', 'focus' => '#00a0d2', 'current' => '#fff' ) 3148 3148 ); 3149 3149
Note: See TracChangeset
for help on using the changeset viewer.