Skip to content

Commit 76882eb

Browse files
committed
More blue colors
git-svn-id: https://develop.svn.wordpress.org/trunk@9979 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 3bc272a commit 76882eb

9 files changed

Lines changed: 32 additions & 77 deletions

File tree

wp-admin/admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'popuptitle', 'popupurl', 'text', 'trackback', 'pingback'));
4040

41-
wp_admin_css_color('classic', __('Blue'), admin_url("css/colors-classic.css"), array('#073447', '#6D6D6D', '#F1F1F1', '#DFDFDF'));
41+
wp_admin_css_color('classic', __('Blue'), admin_url("css/colors-classic.css"), array('#073447', '#21759B', '#EAF3FA', '#BBD8E7'));
4242
wp_admin_css_color('fresh', __('Gray'), admin_url("css/colors-fresh.css"), array('#464646', '#6D6D6D', '#F1F1F1', '#DFDFDF'));
4343

4444
wp_enqueue_script( 'common' );

wp-admin/css/colors-classic.css

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
html {
2-
background-color: #f9f9f9;
2+
background-color: #F5FCFD;
33
}
44

55
.find-box-search {
@@ -71,7 +71,7 @@ div.dashboard-widget,
7171
}
7272

7373
.widefat {
74-
border-color: #dfdfdf;
74+
border-color: #BBD8E7;
7575
background-color: #fff;
7676
}
7777

@@ -117,9 +117,10 @@ li.widget-list-control-item div.widget-control {
117117
border-color: #dfdfdf;
118118
}
119119

120-
#poststuff h3,
121-
.metabox-holder h3 {
122-
background-color: #dfdfdf;
120+
.metabox-holder .postbox h3,
121+
#poststuff .postbox h3,
122+
#poststuff .stuffbox h3 {
123+
background: #dfdfdf url("../images/blue-grad.png") repeat-x left top;
123124
text-shadow: #fff 0 1px 0;
124125
}
125126

@@ -173,7 +174,7 @@ ul#widget-list li.widget-list-item h4.widget-title {
173174
}
174175

175176
.alternate, .alt {
176-
background-color: #f9f9f9;
177+
background-color: #EDFBFC;
177178
}
178179

179180
.available-theme a.screenshot {
@@ -434,7 +435,11 @@ ul#widget-list li.widget-list-item,
434435

435436
.widefat td,
436437
.widefat th {
437-
border-color: #dfdfdf;
438+
border-bottom-color: #BBD8E7;
439+
}
440+
441+
.widefat th {
442+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
438443
}
439444

440445
.widefat thead tr,
@@ -446,7 +451,7 @@ h3.dashboard-widget-title span,
446451
h3.dashboard-widget-title small,
447452
.find-box-head {
448453
color: #333;
449-
background: #dfdfdf url(../images/gray-grad.png) repeat-x scroll left top;
454+
background: #dfdfdf url(../images/blue-grad.png) repeat-x scroll left top;
450455
}
451456

452457
h3.dashboard-widget-title small a {
@@ -464,7 +469,7 @@ h3.dashboard-widget-title small a:hover {
464469
#media-upload a.del-link,
465470
#media-upload a.delete,
466471
.ui-tabs-nav a, a {
467-
color: #21759b;
472+
color: #1C6280;
468473
}
469474

470475
/* Because we don't want visited on these links */
@@ -625,7 +630,7 @@ li.widget-list-control-item h4,
625630
.postbox textarea,
626631
.stuffbox input[type="text"],
627632
.stuffbox textarea {
628-
border-color: #dfdfdf;
633+
border-color: #BBD8E7;
629634
}
630635

631636
.metabox-holder .postbox,
@@ -1010,7 +1015,7 @@ abbr.required,
10101015
}
10111016

10121017
#adminmenu a.menu-top {
1013-
background: #f1f1f1 url(../images/menu-bits.gif) repeat-x scroll left -379px;
1018+
background: #EAF3FA url(../images/menu-bits.gif) repeat-x scroll left -379px;
10141019
}
10151020

10161021
#adminmenu .wp-submenu a {
@@ -1075,17 +1080,17 @@ abbr.required,
10751080

10761081
.folded #adminmenu li.menu-top,
10771082
#adminmenu .wp-submenu .wp-submenu-head {
1078-
background-color: #F1F1F1;
1083+
background-color: #EAF2FA;
10791084
}
10801085

10811086
.folded #adminmenu li.wp-has-current-submenu,
10821087
.folded #adminmenu li.menu-top.current {
1083-
background-color: #eaeaea;
1088+
background-color: #BBD8E7;
10841089
}
10851090

10861091
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1087-
background-color: #EAEAEA;
1088-
border-color: #aaa;
1092+
background-color: #BBD8E7;
1093+
border-color: #8CBDD5;
10891094
}
10901095

10911096
#adminmenu div.wp-submenu {
@@ -1485,10 +1490,6 @@ fieldset.inline-edit-col-right .inline-edit-col {
14851490
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
14861491
}
14871492

1488-
.widefat th {
1489-
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
1490-
}
1491-
14921493
#wphead h1 {
14931494
text-shadow: rgba(0,0,0,0.6) 0 -1px 0;
14941495
}

wp-admin/css/colors-fresh.css

Lines changed: 9 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -111,26 +111,16 @@ li.widget-list-control-item h4.widget-title a,
111111
#plugin-information .action-button a:visited {
112112
color: #fff;
113113
}
114-
/*
115-
li.widget-list-control-item,
116-
div.nav,
117-
#dashboard-widgets p.dashboard-widget-links,
118-
#replyhandle,
119-
h3.info-box-title,
120-
#screen-options-wrap,
121-
#wpbody-content .describe tr {
122-
background-color: #eaf3fa;
123-
}
124-
*/
125114

126115
li.widget-list-control-item div.widget-control {
127116
background-color: #fff;
128117
border-color: #dfdfdf;
129118
}
130119

131-
#poststuff h3,
132-
.metabox-holder h3 {
133-
background-color: #dfdfdf;
120+
.metabox-holder .postbox h3,
121+
#poststuff .postbox h3,
122+
#poststuff .stuffbox h3 {
123+
background: #dfdfdf url("../images/gray-grad.png") repeat-x left top;
134124
text-shadow: #fff 0 1px 0;
135125
}
136126

@@ -457,6 +447,10 @@ ul#widget-list li.widget-list-item,
457447
border-color: #dfdfdf;
458448
}
459449

450+
.widefat th {
451+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
452+
}
453+
460454
.widefat thead tr,
461455
.widefat tfoot tr,
462456
.thead,
@@ -693,40 +687,7 @@ li.widget-list-control-item h4,
693687
border-top-color: #ccc;
694688
color: #555;
695689
}
696-
/*
697-
#upload-files a.file-link {
698-
background-color: #d1e2ef;
699-
}
700-
701-
#upload-file-view a img {
702-
border-bottom-color: #69c;
703-
}
704-
705-
#upload-menu li #current-tab-nav,
706-
#upload-file {
707-
background-color: #f9fcfe;
708-
}
709690

710-
#upload-menu li span a.page-numbers {
711-
color: #00019b;
712-
}
713-
714-
#upload-menu li.current {
715-
border-right-color: #448abd;
716-
color: #000;
717-
}
718-
719-
#upload-menu li.current a.upload-tab-link,
720-
#upload-menu li a:hover {
721-
background-color: #f9fcfe;
722-
color: #000;
723-
}
724-
725-
#upload-menu,
726-
#upload-menu li {
727-
border-top-color: #247fab;
728-
}
729-
*/
730691
.login #backtoblog a {
731692
color: #ccc;
732693
}
@@ -1133,7 +1094,7 @@ abbr.required,
11331094

11341095
.folded #adminmenu li.wp-has-current-submenu,
11351096
.folded #adminmenu li.menu-top.current {
1136-
background-color: #eaeaea;
1097+
background-color: #e6e6e6;
11371098
}
11381099

11391100
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
@@ -1538,10 +1499,6 @@ fieldset.inline-edit-col-right .inline-edit-col {
15381499
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
15391500
}
15401501

1541-
.widefat th {
1542-
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
1543-
}
1544-
15451502
#wphead h1 {
15461503
text-shadow: rgba(0,0,0,0.6) 0 -1px 0;
15471504
}

wp-admin/gears-manifest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ function wp_guess_url() {}
137137
{ "url" : "images/align-none.png" },
138138
{ "url" : "images/align-right.png" },
139139
{ "url" : "images/archive-link.png" },
140+
{ "url" : "images/blue-grad.png" },
140141
{ "url" : "images/browse-happy.gif" },
141142
{ "url" : "images/bubble_bg.gif" },
142143
{ "url" : "images/bubble_bg-rtl.gif" },
@@ -174,7 +175,6 @@ function wp_guess_url() {}
174175
{ "url" : "images/menu-dark.gif" },
175176
{ "url" : "images/menu-dark-rtl.gif" },
176177
{ "url" : "images/no.png" },
177-
{ "url" : "images/postbox-bg.gif" },
178178
{ "url" : "images/required.gif" },
179179
{ "url" : "images/resize.gif" },
180180
{ "url" : "images/screen-options-left.gif" },

wp-admin/images/blue-grad.png

242 Bytes
Loading

wp-admin/images/menu-vs.png

2 Bytes
Loading

wp-admin/images/postbox-bg.gif

-250 Bytes
Binary file not shown.

wp-admin/wp-admin.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,9 +1624,6 @@ table.form-table td .updated {
16241624
.metabox-holder .postbox h3,
16251625
#poststuff .postbox h3,
16261626
#poststuff .stuffbox h3 {
1627-
background-image: url("images/postbox-bg.gif");
1628-
background-position: left top;
1629-
background-repeat: repeat-x;
16301627
-moz-border-radius: 6px 6px 0 0;
16311628
-webkit-border-top-right-radius: 6px;
16321629
-webkit-border-top-left-radius: 6px;

wp-includes/script-loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ function wp_default_styles( &$styles ) {
308308
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20081128' );
309309
$styles->add_data( 'ie', 'conditional', 'gte IE 6' );
310310

311-
$styles->add( 'colors', true, array(), '20081129' ); // Register "meta" stylesheet for admin colors
311+
$styles->add( 'colors', true, array(), '20081130' ); // Register "meta" stylesheet for admin colors
312312
$styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), '20081129'); // for login.php. Is there a better way?
313313
$styles->add_data( 'colors-fresh', 'rtl', true );
314314
$styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), '20081129');

0 commit comments

Comments
 (0)