Ticket #16461: big-css-patch.diff
File big-css-patch.diff, 26.9 KB (added by , 14 years ago) |
---|
-
colors-classic.dev.css
138 138 .widget .widget-top, 139 139 .postbox h3, 140 140 .stuffbox h3 { 141 background: #cfdfe9 url("../images/blue-grad.png?ver=20101102") repeat-x left top; 141 background-repeat: repeat-x; 142 background-position: left top; 143 background-color: #cfdfe9; 144 background-image: url("../images/blue-grad.png"); 145 background-image: -webkit-gradient(linear, left top, from(#ecf2f9), to(#d5e6f2)); 146 background-image: -webkit-linear-gradient(#ecf2f9, #d5e6f2); 147 background-image: -moz-linear-gradient(#ecf2f9, #d5e6f2); 148 background-image: linear-gradient(#ecf2f9, #d5e6f2); 142 149 text-shadow: #fff 0 1px 0; 143 150 } 144 151 … … 258 265 } 259 266 260 267 .post-com-count { 261 background-image: url( ../images/bubble_bg.gif);268 background-image: url("../images/bubble_bg.gif"); 262 269 color: #fff; 263 270 } 264 271 … … 302 309 border-color: #666; 303 310 } 304 311 312 305 313 .button, 306 314 .submit input, 307 315 .button-secondary { 308 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 309 text-shadow: rgba(255,255,255,1) 0 1px 0; 316 background-color: #f2f2f2; 317 background-repeat: repeat-x; 318 background-attachment: scroll; 319 background-position: left top; 320 background-image: url("../images/white-grad.png"); 321 background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed)); 322 background-image: -webkit-linear-gradient(#fff, #ededed); 323 background-image: -moz-linear-gradient(#fff, #ededed); 324 background-image: linear-gradient(#fff, #ededed); 325 text-shadow: rgba(255, 255, 255, 1) 0 1px 0; 310 326 } 311 327 312 328 .button:active, 313 329 .submit input:active, 314 330 .button-secondary:active { 315 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 331 background-color: #eee; 332 background-repeat: repeat-x; 333 background-attachment: scroll; 334 background-position: left top; 335 background-image: url("../images/white-grad-active.png"); 336 background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff)); 337 background-image: -webkit-linear-gradient(#ededed, #fff); 338 background-image: -moz-linear-gradient(#ededed, #fff); 339 background-image: linear-gradient(#ededed, #fff); 316 340 } 317 341 318 342 input.button-primary, … … 321 345 border-color: #298cba; 322 346 font-weight: bold; 323 347 color: #fff; 324 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 348 background-color: #21759B; 349 background-repeat: repeat-x; 350 background-attachment: scroll; 351 background-position: left top; 352 background-image: url("../images/button-grad.png"); 353 background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92)); 354 background-image: -webkit-linear-gradient(#5e89af, #436d92); 355 background-image: -moz-linear-gradient(#5e89af, #436d92); 356 background-image: -o-gradient(#5e89af, #436d92); 357 background-image: linear-gradient(#5e89af, #436d92); 325 358 text-shadow: rgba(0,0,0,0.3) 0 -1px 0; 326 359 } 327 360 328 361 input.button-primary:active, 329 362 button.button-primary:active, 330 363 a.button-primary:active { 331 background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top; 364 background-color: #21759b; 365 background-repeat: repeat-x; 366 background-attachment: scroll; 367 background-position: left top; 368 background-image: url("../images/button-grad-active.png"); 369 background-image: -webkit-gradient(linear, left top, from(#436d92), to(#5e89af)); 370 background-image: -webkit-linear-gradient(#436d92, #5e89af); 371 background-image: -moz-linear-gradient(#436d92, #5e89af); 372 background-image: linear-gradient(#436d92, #5e89af); 332 373 color: #eaf2fa; 333 374 } 334 375 … … 472 513 h3.dashboard-widget-title small, 473 514 .find-box-head { 474 515 color: #333; 475 background: #cfdfe9 url(../images/blue-grad.png?ver=20101102) repeat-x scroll left top; 516 background-color: #cfdfe9; 517 background-repeat: repeat-x; 518 background-attachment: scroll; 519 background-position: left top; 520 background-image: url("../images/blue-grad.png?ver=20101102"); 521 background-image: -webkit-gradient(linear, left top, from(#ecf2f9), to(#d5e6f2)); 522 background-image: -webkit-linear-gradient(#ecf2f9, #d5e6f2); 523 background-image: -moz-linear-gradient(#ecf2f9, #d5e6f2); 524 background-image: linear-gradient(#ecf2f9, #d5e6f2); 476 525 } 477 526 478 527 th.sortable a:hover, th.sortable a:active, th.sortable a:focus { … … 545 594 546 595 #ed_toolbar input, 547 596 #ed_reply_toolbar input { 548 background: #fff url("../images/fade-butt.png") repeat-x 0 -2px; 597 background-color: #fff; 598 background-repeat: repeat-x; 599 background-position: 0 -2px; 600 background-image: url("../images/fade-butt.png"); 601 background-image: -webkit-gradient(linear, 0 -2px, from(#fcfcfc), to(#e5e3e3)); 602 background-image: -webkit-linear-gradient(#fcfcfc, #e5e3e3); 603 background-image: -moz-linear-gradient(#fcfcfc, #e5e3e3); 604 background-image: linear-gradient(#fcfcfc, #e5e3e3); 549 605 } 550 606 551 607 #editable-post-name { … … 570 626 #footer { 571 627 color: #777; 572 628 border-color: #b0c8d7; 573 background: #cfdfe9; /* fallback color */ 574 background:-moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 575 background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 629 background-color: #cfdfe9; /* fallback color */ 630 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 631 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); 632 background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 633 background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); 576 634 } 577 635 578 636 #media-items, … … 659 717 } 660 718 661 719 .curtime #timestamp { 662 background-image: url( ../images/date-button.gif);720 background-image: url("../images/date-button.gif"); 663 721 } 664 722 665 723 #quicktags #ed_link { … … 676 734 677 735 .tagchecklist span a, 678 736 #bulk-titles div a { 679 background: url( ../images/xit.gif) no-repeat;737 background: url("../images/xit.gif") no-repeat; 680 738 } 681 739 682 740 .tagchecklist span a:hover, 683 741 #bulk-titles div a:hover { 684 background: url( ../images/xit.gif) no-repeat -10px 0;742 background: url("../images/xit.gif") no-repeat -10px 0; 685 743 } 686 744 687 745 #update-nag, .update-nag { … … 695 753 } 696 754 697 755 #wphead { 698 border-bottom:#b0c8d7 1px solid; 699 background: #cfdfe9; /* fallback color */ 700 background:-moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 701 background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 756 border-bottom: #b0c8d7 1px solid; 757 background-color: #cfdfe9; /* fallback color */ 758 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 759 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); 760 background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 761 background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); 702 762 } 703 763 704 764 #wphead h1 a { … … 765 825 #quicktags { 766 826 border-color: #cfdfe9; 767 827 background-color: #cfdfe9; 768 background-image: url("../images/ed-bg-vs.gif?ver=20101102"); 828 background-image: url("../images/ed-bg-vs.gif"); 829 background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2)); 830 background-image: -webkit-linear-gradient(#436d92, #d5e6f2); 831 background-image: -moz-linear-gradient(#436d92, #d5e6f2); 832 background-image: linear-gradient(#436d92, #d5e6f2); 769 833 } 770 834 771 835 #ed_toolbar input { … … 933 997 } 934 998 935 999 .wp_themeSkin tr.mceFirst td.mceToolbar { 936 background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top;937 1000 border-color: #cfdfe9; 1001 background-repeat: repeat-x; 1002 background-attachment: scroll; 1003 background-position: left top; 1004 background-image: url("../images/ed-bg-vs.gif"); 1005 background-image: -webkit-gradient(linear, left top, from(#eff8ff), to(#cfdfe9)); 1006 background-image: -webkit-linear-gradient(#eff8ff, #cfdfe9); 1007 background-image: -moz-linear-gradient(#eff8ff, #cfdfe9); 1008 background-image: linear-gradient(#eff8ff, #cfdfe9); 1009 938 1010 } 939 1011 940 1012 .wp-admin #mceModalBlocker { … … 942 1014 } 943 1015 944 1016 .wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft { 945 background : #444444;1017 background-color: #444444; 946 1018 border-left: 1px solid #999; 947 1019 border-top: 1px solid #999; 948 1020 -moz-border-radius: 4px 0 0 0; … … 952 1024 } 953 1025 954 1026 .wp-admin .clearlooks2 .mceFocus .mceTop .mceRight { 955 background : #444444;1027 background-color: #444444; 956 1028 border-right: 1px solid #999; 957 1029 border-top: 1px solid #999; 958 1030 border-top-right-radius: 4px; … … 962 1034 } 963 1035 964 1036 .wp-admin .clearlooks2 .mceMiddle .mceLeft { 965 background : #f1f1f1;1037 background-color: #f1f1f1; 966 1038 border-left: 1px solid #999; 967 1039 } 968 1040 969 1041 .wp-admin .clearlooks2 .mceMiddle .mceRight { 970 background : #f1f1f1;1042 background-color: #f1f1f1; 971 1043 border-right: 1px solid #999; 972 1044 } 973 1045 974 1046 .wp-admin .clearlooks2 .mceBottom { 975 background : #f1f1f1;1047 background-color: #f1f1f1; 976 1048 border-bottom: 1px solid #999; 977 1049 } 978 1050 979 1051 .wp-admin .clearlooks2 .mceBottom .mceLeft { 980 background : #f1f1f1;1052 background-color: #f1f1f1; 981 1053 border-bottom: 1px solid #999; 982 1054 border-left: 1px solid #999; 983 1055 } 984 1056 985 1057 .wp-admin .clearlooks2 .mceBottom .mceCenter { 986 background : #f1f1f1;1058 background-color: #f1f1f1; 987 1059 border-bottom: 1px solid #999; 988 1060 } 989 1061 990 1062 .wp-admin .clearlooks2 .mceBottom .mceRight { 991 background : #f1f1f1;1063 background-color: #f1f1f1; 992 1064 border-bottom: 1px solid #999; 993 1065 border-right: 1px solid #999; 994 1066 } … … 1026 1098 } 1027 1099 1028 1100 #adminmenu li.wp-menu-separator { 1029 background: transparent url( ../images/menu-arrows.gif) no-repeat scroll left 5px;1101 background: transparent url("../images/menu-arrows.gif") no-repeat scroll left 5px; 1030 1102 } 1031 1103 1032 1104 .folded #adminmenu li.wp-menu-separator { 1033 background: transparent url( ../images/menu-arrows.gif) no-repeat scroll right -34px;1105 background: transparent url("../images/menu-arrows.gif") no-repeat scroll right -34px; 1034 1106 } 1035 1107 1036 1108 #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle, 1037 1109 #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle { 1038 background: transparent url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -207px;1110 background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -207px; 1039 1111 } 1040 1112 1041 1113 #adminmenu .wp-has-submenu:hover .wp-menu-toggle, 1042 1114 #adminmenu .wp-menu-open .wp-menu-toggle { 1043 background: transparent url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;1115 background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px; 1044 1116 } 1045 1117 1046 1118 #adminmenu a.menu-top { 1047 background: #eff8ff url( ../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;1119 background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px; 1048 1120 } 1049 1121 1050 1122 #adminmenu .wp-submenu a { 1051 background: #fff url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll 0 -99px;1123 background: #fff url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll 0 -99px; 1052 1124 } 1053 1125 1054 1126 #adminmenu .wp-has-current-submenu ul li a { … … 1056 1128 } 1057 1129 1058 1130 #adminmenu .wp-has-current-submenu ul li a.current { 1059 background: url( ../images/menu-dark-vs.gif) top left no-repeat !important;1131 background: url("../images/menu-dark-vs.gif") top left no-repeat !important; 1060 1132 } 1061 1133 1062 1134 .wp-has-current-submenu .wp-submenu { … … 1069 1141 1070 1142 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, 1071 1143 #adminmenu li.current a.menu-top { 1072 background: #d0dfe9 url( ../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;1144 background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x; 1073 1145 border: #5589aa 1px solid; 1074 1146 color: #464646; 1075 1147 } … … 1081 1153 } 1082 1154 1083 1155 #adminmenu li.wp-has-current-submenu ul li a { 1084 background: url( ../images/menu-dark-vs.gif) bottom left no-repeat !important;1156 background: url("../images/menu-dark-vs.gif") bottom left no-repeat !important; 1085 1157 } 1086 1158 1087 1159 #adminmenu li.wp-has-current-submenu ul { … … 1089 1161 } 1090 1162 1091 1163 #adminmenu .wp-submenu .current a.current { 1092 background: transparent url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll 0 -289px;1164 background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll 0 -289px; 1093 1165 } 1094 1166 1095 1167 #adminmenu .wp-submenu a:hover { … … 1112 1184 1113 1185 .folded #adminmenu li.menu-top, 1114 1186 #adminmenu .wp-submenu .wp-submenu-head { 1115 background: #eff8ff url( ../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;1187 background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px; 1116 1188 } 1117 1189 1118 1190 .folded #adminmenu li.wp-has-current-submenu, 1119 1191 .folded #adminmenu li.menu-top.current { 1120 background: #e0e0e0 url( ../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;1192 background: #e0e0e0 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x; 1121 1193 border: #5589aa 1px solid; 1122 1194 color: #464646; 1123 1195 } 1124 1196 1125 1197 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { 1126 background: #d0dfe9 url( ../images/menu-bits-vs.gif?ver=20101102) repeat-x 0% 0%;1198 background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") repeat-x 0% 0%; 1127 1199 border: 1px solid; 1128 1200 color: #464646; 1129 1201 } … … 1388 1460 body.press-this .postbox:hover .handlediv, 1389 1461 body.press-this .stuffbox:hover .handlediv, 1390 1462 .meta-box-sortables .postbox:hover .handlediv { 1391 background: transparent url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -111px;1463 background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -111px; 1392 1464 } 1393 1465 1394 1466 #major-publishing-actions { … … 1488 1560 1489 1561 #favorite-first { 1490 1562 border-color: #c0c0c0; 1491 background: #f1f1f1; /* fallback color */ 1492 background:-moz-linear-gradient(bottom, #e7e7e7, #fff); 1493 background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); 1563 background-color: #f1f1f1; /* fallback color */ 1564 background-image: -webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); 1565 background-image: -webkit-linear-gradient(bottom, #e7e7e7, #fff); 1566 background-image: -moz-linear-gradient(bottom, #e7e7e7, #fff); 1567 background-image: linear-gradient(bottom, #e7e7e7, #fff); 1494 1568 } 1495 1569 1496 1570 #favorite-inside { … … 1499 1573 } 1500 1574 1501 1575 #favorite-toggle { 1502 background: transparent url( ../images/fav-arrow.gif?ver=20100531) no-repeat 0 -4px;1576 background: transparent url("../images/fav-arrow.gif?ver=20100531") no-repeat 0 -4px; 1503 1577 } 1504 1578 1505 1579 #favorite-actions a { … … 1525 1599 1526 1600 #icon-edit, 1527 1601 #icon-post { 1528 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -552px -5px;1602 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -552px -5px; 1529 1603 } 1530 1604 1531 1605 #icon-index { 1532 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -137px -5px;1606 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -137px -5px; 1533 1607 } 1534 1608 1535 1609 #icon-upload { 1536 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -251px -5px;1610 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -251px -5px; 1537 1611 } 1538 1612 1539 1613 #icon-link-manager, 1540 1614 #icon-link, 1541 1615 #icon-link-category { 1542 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -190px -5px;1616 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -190px -5px; 1543 1617 } 1544 1618 1545 1619 #icon-edit-pages, 1546 1620 #icon-page { 1547 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -312px -5px;1621 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -312px -5px; 1548 1622 } 1549 1623 1550 1624 #icon-edit-comments { 1551 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -72px -5px;1625 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -72px -5px; 1552 1626 } 1553 1627 1554 1628 #icon-themes { 1555 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -11px -5px;1629 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -11px -5px; 1556 1630 } 1557 1631 1558 1632 #icon-plugins { 1559 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -370px -5px;1633 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -370px -5px; 1560 1634 } 1561 1635 1562 1636 #icon-users, 1563 1637 #icon-profile, 1564 1638 #icon-user-edit { 1565 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -600px -5px;1639 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -600px -5px; 1566 1640 } 1567 1641 1568 1642 #icon-tools, 1569 1643 #icon-admin { 1570 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -432px -5px;1644 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -432px -5px; 1571 1645 } 1572 1646 1573 1647 #icon-options-general { 1574 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -492px -5px;1648 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -492px -5px; 1575 1649 } 1576 1650 1577 1651 #icon-ms-admin { 1578 background: transparent url( ../images/icons32-vs.png?ver=20100531) no-repeat -659px -5px;1652 background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -659px -5px; 1579 1653 } 1580 1654 1581 1655 .view-switch #view-switch-list { 1582 background: transparent url( ../images/list.png) no-repeat 0 0;1656 background: transparent url("../images/list.png") no-repeat 0 0; 1583 1657 } 1584 1658 1585 1659 .view-switch .current #view-switch-list { 1586 background: transparent url( ../images/list.png) no-repeat -40px 0;1660 background: transparent url("../images/list.png") no-repeat -40px 0; 1587 1661 } 1588 1662 1589 1663 .view-switch #view-switch-excerpt { 1590 background: transparent url( ../images/list.png) no-repeat -20px 0;1664 background: transparent url("../images/list.png") no-repeat -20px 0; 1591 1665 } 1592 1666 1593 1667 .view-switch .current #view-switch-excerpt { 1594 background: transparent url( ../images/list.png) no-repeat -60px 0;1668 background: transparent url("../images/list.png") no-repeat -60px 0; 1595 1669 } 1596 1670 1597 1671 #header-logo { 1598 background: transparent url( ../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center;1672 background: transparent url("../images/wp-logo-vs.png?ver=20101102") no-repeat scroll center center; 1599 1673 } 1600 1674 1601 1675 .popular-tags, … … 1627 1701 1628 1702 #widgets-left .sidebar-name { 1629 1703 background-color: #aaa; 1630 background-image: url(../images/ed-bg-vs.gif?ver=20101102); 1704 background-image: url("../images/ed-bg-vs.gif?ver=20101102"); 1705 background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2)); 1706 background-image: -webkit-linear-gradient(#436d92, #d5e6f2); 1707 background-image: -moz-linear-gradient(#436d92, #d5e6f2); 1708 background-image: linear-gradient(#436d92, #d5e6f2); 1631 1709 text-shadow: #fff 0 1px 0; 1632 1710 border-color: #dfdfdf; 1633 1711 } 1634 1712 1635 1713 #widgets-right .sidebar-name { 1636 background-image: url(../images/button-grad.png); 1714 background-image: url("../images/button-grad.png"); 1715 background-image: -webkit-linear-gradient(#5e89af, #436d92); 1716 background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92)); 1717 background-image: -moz-linear-gradient(#5e89af, #436d92); 1718 background-image: -o-gradient(#5e89af, #436d92); 1719 background-image: linear-gradient(#5e89af, #436d92); 1637 1720 text-shadow: #174f69 0 -1px 0; 1638 1721 background-color: #cfdfe9; 1639 1722 border-color: #174f69; … … 1650 1733 } 1651 1734 1652 1735 #widgets-left .sidebar-name-arrow { 1653 background: transparent url( ../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;1736 background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px; 1654 1737 } 1655 1738 1656 1739 #widgets-right .sidebar-name-arrow { … … 1696 1779 } 1697 1780 1698 1781 #nav-menu-header, #nav-menu-footer, .menu-item-handle { 1699 background: url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top #cfdfe9; 1782 background-color: #cfdfe9; 1783 background-repeat: repeat-x; 1784 background-attachment: scroll; 1785 background-position: left top; 1786 background-image: url("../images/ed-bg-vs.gif?ver=20101102"); 1787 background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2)); 1788 background-image: -webkit-linear-gradient(#436d92, #d5e6f2); 1789 background-image: -moz-linear-gradient(#436d92, #d5e6f2); 1790 background-image: linear-gradient(#436d92, #d5e6f2); 1700 1791 border-top: solid #D1E5EE 1px; 1701 1792 } 1702 1793 1703 1794 #menu-management .nav-tab-active { 1704 1795 background: #eff8ff; 1705 1796 border-bottom-color: #eff8ff; 1706 } 1797 } 1798 No newline at end of file -
press-this.dev.css
490 490 } 491 491 492 492 .button-primary { 493 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 493 background-color: #21759B; 494 background-repeat: repeat-x; 495 background-attachment: scroll; 496 background-position: left top; 497 background-image: url("../images/button-grad.png"); 498 background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92)); 499 background-image: -webkit-linear-gradient(#5e89af, #436d92); 500 background-image: -moz-linear-gradient(#5e89af, #436d92); 501 background-image: -o-gradient(#5e89af, #436d92); 502 background-image: linear-gradient(#5e89af, #436d92); 494 503 border-color: #21759B; 495 504 color: #fff; 496 505 } -
colors-fresh.dev.css
305 305 .button, 306 306 .submit input, 307 307 .button-secondary { 308 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 308 background-color: #f2f2f2; 309 background-repeat: repeat-x; 310 background-attachment: scroll; 311 background-position: left top; 312 background-image: url("../images/white-grad.png"); 313 background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed)); 314 background-image: -webkit-linear-gradient(#fff, #ededed); 315 background-image: -moz-linear-gradient(#fff, #ededed); 316 background-image: linear-gradient(#fff, #ededed); 309 317 text-shadow: rgba(255,255,255,1) 0 1px 0; 310 318 } 311 319 312 320 .button:active, 313 321 .submit input:active, 314 322 .button-secondary:active { 315 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 323 background-color: #eee; 324 background-repeat: repeat-x; 325 background-attachment: scroll; 326 background-position: left top; 327 background-image: url("../images/white-grad-active.png"); 328 background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff)); 329 background-image: -webkit-linear-gradient(#ededed, #fff); 330 background-image: -moz-linear-gradient(#ededed, #fff); 331 background-image: linear-gradient(#ededed, #fff); 316 332 } 317 333 318 334 input.button-primary, … … 321 337 border-color: #298cba; 322 338 font-weight: bold; 323 339 color: #fff; 324 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 340 background-color: #21759B; 341 background-repeat: repeat-x; 342 background-attachment: scroll; 343 background-position: left top; 344 background-image: url("../images/button-grad.png"); 345 background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92)); 346 background-image: -webkit-linear-gradient(#5e89af, #436d92); 347 background-image: -moz-linear-gradient(#5e89af, #436d92); 348 background-image: -o-gradient(#5e89af, #436d92); 349 background-image: linear-gradient(#5e89af, #436d92); 325 350 text-shadow: rgba(0,0,0,0.3) 0 -1px 0; 326 351 } 327 352 328 353 input.button-primary:active, 329 354 button.button-primary:active, 330 355 a.button-primary:active { 331 background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top; 356 background-color: #21759b; 357 background-repeat: repeat-x; 358 background-attachment: scroll; 359 background-position: left top; 360 background-image: url("../images/button-grad-active.png"); 361 background-image: -webkit-gradient(linear, left top, from(#436d92), to(#5e89af)); 362 background-image: -webkit-linear-gradient(#436d92, #5e89af); 363 background-image: -moz-linear-gradient(#436d92, #5e89af); 364 background-image: linear-gradient(#436d92, #5e89af); 332 365 color: #eaf2fa; 333 366 } 334 367 … … 766 799 border-color: #dfdfdf; 767 800 background-color: #dfdfdf; 768 801 background-image: url("../images/ed-bg.gif"); 802 background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf)); 803 background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf); 804 background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf); 805 background-image: linear-gradient(#e9e9e9, #dfdfdf); 769 806 } 770 807 771 808 #ed_toolbar input { … … 933 970 } 934 971 935 972 .wp_themeSkin tr.mceFirst td.mceToolbar { 936 background: #dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top; 973 background-color: #dfdfdf; 974 background-repeat: repeat-x; 975 background-attachment: scroll; 976 background-position: left top; 977 background-image: url("../images/ed-bg.gif"); 978 background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf)); 979 background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf); 980 background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf); 981 background-image: linear-gradient(#e9e9e9, #dfdfdf); 937 982 border-color: #dfdfdf; 938 983 } 939 984 … … 1616 1661 1617 1662 #widgets-left .sidebar-name { 1618 1663 background-color: #aaa; 1619 background-image: url(../images/ed-bg.gif); 1664 background-image: url("../images/ed-bg.gif"); 1665 background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf)); 1666 background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf); 1667 background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf); 1668 background-image: linear-gradient(#e9e9e9, #dfdfdf); 1620 1669 text-shadow: #fff 0 1px 0; 1621 1670 border-color: #dfdfdf; 1622 1671 } 1623 1672 1624 1673 #widgets-right .sidebar-name { 1625 background-image: url(../images/fav.png); 1674 background-image: url("../images/fav.png"); 1675 background-image: -webkit-gradient(linear, left top, from(#919191), to(#636363)); 1676 background-image: -webkit-linear-gradient(#919191, #636363); 1677 background-image: -moz-linear-gradient(#919191, #636363); 1678 background-image: linear-gradient(#919191, #636363); 1626 1679 text-shadow: #3f3f3f 0 -1px 0; 1627 1680 background-color: #636363; 1628 1681 border-color: #636363; -
install.dev.css
98 98 } 99 99 100 100 .button, .submit input, .button-secondary { 101 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 101 background-color: #f2f2f2; 102 background-repeat: repeat-x; 103 background-attachment: scroll; 104 background-position: left top; 105 background-image: url("../images/white-grad.png"); 106 background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed)); 107 background-image: -webkit-linear-gradient(#fff, #ededed); 108 background-image: -moz-linear-gradient(#fff, #ededed); 109 background-image: linear-gradient(#fff, #ededed); 102 110 } 103 111 104 112 .button:active, .submit input:active, .button-secondary:active { 105 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 113 background-color: #eee; 114 background-repeat: repeat-x; 115 background-attachment: scroll; 116 background-position: left top; 117 background-image: url("../images/white-grad-active.png"); 118 background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff)); 119 background-image: -webkit-linear-gradient(#ededed, #fff); 120 background-image: -moz-linear-gradient(#ededed, #fff); 121 background-image: linear-gradient(#ededed, #fff); 106 122 } 107 123 108 124 textarea { -
wp-admin.dev.css
515 515 margin-bottom: -3px; 516 516 border-bottom-width: 3px; 517 517 background-image: url("../images/ed-bg.gif"); 518 background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf)); 519 background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf); 520 background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf); 521 background-image: linear-gradient(#e9e9e9, #dfdfdf); 518 522 background-position: left top; 519 523 background-repeat: repeat-x; 520 524 }