Ticket #18141: 18141.diff
File 18141.diff, 12.5 KB (added by , 13 years ago) |
---|
-
wp-includes/css/editor-buttons.dev.css
176 176 margin: 1px; 177 177 -webkit-border-radius: 2px; 178 178 border-radius: 2px; 179 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;180 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;181 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;182 179 } 183 180 184 181 .wp_themeSkin a.mceButtonEnabled:hover { … … 189 186 margin: 0 0 0 1px; 190 187 } 191 188 192 193 .wp_themeSkin a.mceButton:active,194 .wp_themeSkin a.mceButtonActive,195 .wp_themeSkin a.mceButtonActive:hover,196 .wp_themeSkin a.mceButtonSelected {197 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;198 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;199 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;200 }201 202 189 .wp_themeSkin .mceButtonDisabled .mceIcon { 203 opacity: 0. 5;204 filter: alpha(opacity= 50);190 opacity: 0.4; 191 filter: alpha(opacity=40); 205 192 } 206 193 207 194 /* Separator */ … … 229 216 -webkit-border-top-left-radius: 2px; 230 217 border-bottom-left-radius: 2px; 231 218 border-top-left-radius: 2px; 232 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;233 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;234 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;235 219 font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif; 236 220 font-size: 12px; 237 221 height: 20px; … … 253 237 -webkit-border-top-left-radius: 0; 254 238 border-bottom-left-radius: 0; 255 239 border-top-left-radius: 0; 256 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;257 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;258 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;259 240 } 260 241 261 242 .wp_themeSkin .mceListBox .mceOpen span { … … 315 296 border-radius: 2px; 316 297 } 317 298 318 .wp_themeSkin table.mceSplitButton td a {319 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;320 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;321 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 2px 1px #fff;322 }323 324 299 .wp_themeSkin table.mceSplitButton:hover td { 325 300 background-image: inherit 0 -10px; 326 301 } … … 414 389 /* ColorSplitButton */ 415 390 .wp_themeSkin div.mceColorSplitMenu table { 416 391 background-color: #ebebeb; 417 border-color: # B2B2B2;392 border-color: #bbb; 418 393 } 419 394 420 395 .wp_themeSkin .mceColorSplitMenu td { … … 426 401 width: 9px; 427 402 height: 9px; 428 403 overflow: hidden; 429 border-color: # B2B2B2;404 border-color: #bbb; 430 405 } 431 406 432 407 .wp_themeSkin .mceColorSplitMenu td.mceMoreColors { … … 857 832 .wp_themeSkin .mceButton, 858 833 .wp_themeSkin .mceListBox .mceText, 859 834 .wp_themeSkin .mceListBox .mceOpen { 860 border-color: #ccc; 861 background-color: #eee; /* Fallback */ 862 background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */ 863 background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */ 864 background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */ 865 background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */ 866 background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */ 867 background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */ 835 border-color: transparent; 868 836 } 869 837 870 838 .wp_themeSkin a.mceButtonEnabled:hover { 871 border-color: # a0a0a0;839 border-color: #bbb; 872 840 background: #ddd; /* Fallback */ 873 841 background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ 874 842 background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ … … 885 853 .wp_themeSkin a.mceButtonActive:active, 886 854 .wp_themeSkin a.mceButtonActive:hover { 887 855 background-color: #ddd; /* Fallback */ 888 background-image: -ms-linear-gradient(bottom, # eee, #bbb); /* IE10 */889 background-image: -moz-linear-gradient(bottom, # eee, #bbb); /* Firefox */890 background-image: -o-linear-gradient(bottom, # eee, #bbb); /* Opera */891 background-image: -webkit-gradient(linear, left bottom, left top, from(# eee), to(#bbb)); /* old Webkit */892 background-image: -webkit-linear-gradient(bottom, # eee, #bbb); /* new Webkit */893 background-image: linear-gradient(bottom, # eee, #bbb); /* proposed W3C Markup */894 border-color: # 909090;856 background-image: -ms-linear-gradient(bottom, #fff, #ccc); /* IE10 */ 857 background-image: -moz-linear-gradient(bottom, #fff, #ccc); /* Firefox */ 858 background-image: -o-linear-gradient(bottom, #fff, #ccc); /* Opera */ 859 background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#ccc)); /* old Webkit */ 860 background-image: -webkit-linear-gradient(bottom, #fff, #ccc); /* new Webkit */ 861 background-image: linear-gradient(bottom, #fff, #ccc); /* proposed W3C Markup */ 862 border-color: #bbb; 895 863 } 896 864 897 865 .wp_themeSkin .mceButtonDisabled { 898 border-color: #ccc!important;866 border-color: transparent !important; 899 867 } 900 868 901 869 .wp_themeSkin .mceListBox .mceOpen { … … 909 877 .wp_themeSkin .mceListBoxSelected .mceText, 910 878 .wp_themeSkin table.mceListBoxEnabled:active .mceText { 911 879 background: #ccc; 912 border-color: # 999;880 border-color: #bbb; 913 881 } 914 882 915 883 .wp_themeSkin table.mceListBoxEnabled:hover .mceText, 916 884 .wp_themeSkin .mceListBoxHover .mceText, 917 885 .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen, 918 886 .wp_themeSkin .mceListBoxHover .mceOpen { 919 border-color: # 909090;887 border-color: #bbb; 920 888 background-color: #eee; /* Fallback */ 921 889 background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ 922 890 background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ … … 929 897 /* SplitButton */ 930 898 .wp_themeSkin .mceSplitButton a.mceAction, 931 899 .wp_themeSkin .mceSplitButton a.mceOpen { 932 border-color: #ccc;900 border-color: transparent; 933 901 } 934 902 935 903 .wp_themeSkin .mceSplitButton a.mceOpen:hover, 936 904 .wp_themeSkin .mceSplitButtonSelected a.mceOpen, 937 905 .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction, 938 906 .wp_themeSkin .mceSplitButton a.mceAction:hover { 939 border-color: # 909090;907 border-color: #bbb; 940 908 } 941 909 942 943 .wp_themeSkin table.mceSplitButton td {944 background-color: #eee; /* Fallback */945 background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */946 background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */947 background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */948 background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */949 background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */950 background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */951 }952 953 910 .wp_themeSkin table.mceSplitButton:hover td { 954 911 background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ 955 912 background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ -
wp-admin/css/colors-classic.dev.css
879 879 } 880 880 881 881 /* Containers */ 882 .wp-editor-wrap .wp-editor-container, 882 883 .wp-editor-wrap .wp_themeSkin table.mceLayout { 883 884 border-color: #bed1dd #bed1dd #d0dfe9; 884 885 } … … 900 901 } 901 902 902 903 /* Button */ 903 .wp-editor-wrap .wp_themeSkin .mceButton{904 border-color: #B0C8D7 ;905 background-color: #c fdfe9; /* Fallback */904 .wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover { 905 border-color: #B0C8D7 !important; 906 background-color: #c7d8e2; /* Fallback */ 906 907 background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ 907 908 background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ 908 909 background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ … … 911 912 background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */ 912 913 } 913 914 914 .wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover {915 border-color: #5589AA !important;916 background-color: #c9c9c9; /* Fallback */917 background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */918 background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */919 background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */920 background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit */921 background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */922 background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */923 }924 925 915 .wp-editor-wrap .wp_themeSkin a.mceButton:active, 926 916 .wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:active, 927 917 .wp-editor-wrap .wp_themeSkin a.mceButtonSelected:active, 928 918 .wp-editor-wrap .wp_themeSkin a.mceButtonActive, 929 919 .wp-editor-wrap .wp_themeSkin a.mceButtonActive:active, 930 920 .wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover { 931 background: # B0C8D7 !important;921 background: #c7d8e2; /* Fallback */ 932 922 background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */ 933 923 background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */ 934 924 background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */ 935 925 background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit */ 936 926 background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */ 937 927 background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */ 938 border-color: #5589AA !important;939 }940 941 .wp-editor-wrap .wp_themeSkin .mceButtonDisabled {942 928 border-color: #B0C8D7 !important; 943 929 } 944 930 945 931 /* ListBox */ 946 .wp-editor-wrap .wp_themeSkin .mceListBox .mceText,947 .wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {948 border-color: #B0C8D7;949 background-color: #cfdfe9; /* Fallback */950 background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */951 background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */952 background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */953 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */954 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */955 background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */956 }957 958 932 .wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen { 959 933 border-left: 0px !important; 960 934 } … … 965 939 .wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceOpen, 966 940 .wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceText, 967 941 .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:active .mceText { 968 background: # B0C8D7;969 border-color: # 5589AA!important;942 background: #c7d8e2; 943 border-color: #B0C8D7 !important; 970 944 } 971 945 972 946 /* List Box Hover */ … … 974 948 .wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceText, 975 949 .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen, 976 950 .wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceOpen { 977 border-color: # 5589AA!important;978 background-color: #c 9c9c9; /* Fallback */951 border-color: #B0C8D7 !important; 952 background-color: #c7d8e2; /* Fallback */ 979 953 background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ 980 954 background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ 981 955 background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ … … 990 964 } 991 965 992 966 /* SplitButton */ 993 .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction,994 .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen {995 border-color: #B0C8D7;996 }997 998 967 .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen:hover, 999 968 .wp-editor-wrap .wp_themeSkin .mceSplitButtonSelected a.mceOpen, 1000 969 .wp-editor-wrap .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction, 1001 970 .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction:hover { 1002 border-color: # 5589AA!important;971 border-color: #B0C8D7 !important; 1003 972 } 1004 973 1005 1006 .wp-editor-wrap .wp_themeSkin table.mceSplitButton td {1007 background-color: #cfdfe9; /* Fallback */1008 background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */1009 background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */1010 background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */1011 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */1012 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */1013 background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */1014 }1015 1016 974 .wp-editor-wrap .wp_themeSkin table.mceSplitButton:hover td { 1017 975 background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ 1018 976 background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */