Changeset 9677
- Timestamp:
- 11/14/2008 08:14:21 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-fresh.css
r9674 r9677 913 913 } 914 914 915 /* pop-up */ 916 .clearlooks2 .mceTop .mceLeft, 917 .clearlooks2 .mceTop .mceRight { 918 background-color: #f5f5f5; 919 border-color: #c6d9e9; 920 } 921 922 .clearlooks2 .mceFocus .mceTop .mceLeft, 923 .clearlooks2 .mceFocus .mceTop .mceRight { 924 background-color: #2683ae; 925 border-color: #464646; 915 .wp-admin #mceModalBlocker { 916 background: #000; 917 } 918 919 .wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft { 920 background: #444444; 921 border-left: 1px solid #999; 922 border-top: 1px solid #999; 923 -moz-border-radius: 4px 0 0 0; 924 -webkit-border-top-left-radius: 4px; 925 -khtml-border-top-left-radius: 4px; 926 border-top-left-radius: 4px; 927 } 928 929 .wp-admin .clearlooks2 .mceFocus .mceTop .mceCenter { 930 background: #444444; 931 border-bottom: 1px solid #999; 932 border-top: 1px solid #999; 933 } 934 935 .wp-admin .clearlooks2 .mceFocus .mceTop .mceRight { 936 background: #444444; 937 border-right: 1px solid #999; 938 border-top: 1px solid #999; 939 border-top-right-radius: 4px; 940 -khtml-border-top-right-radius: 4px; 941 -webkit-border-top-right-radius: 4px; 942 -moz-border-radius: 0 4px 0 0; 943 } 944 945 .wp-admin .clearlooks2 .mceMiddle .mceLeft { 946 background: #f1f1f1; 947 border-left: 1px solid #999; 948 } 949 950 .wp-admin .clearlooks2 .mceMiddle .mceRight { 951 background: #f1f1f1; 952 border-right: 1px solid #999; 953 } 954 955 .wp-admin .clearlooks2 .mceBottom { 956 background: #f1f1f1; 957 border-bottom: 1px solid #999; 958 } 959 960 .wp-admin .clearlooks2 .mceBottom .mceLeft { 961 background: #f1f1f1; 962 border-bottom: 1px solid #999; 963 border-left: 1px solid #999; 964 } 965 966 .wp-admin .clearlooks2 .mceBottom .mceCenter { 967 background: #f1f1f1; 968 border-bottom: 1px solid #999; 969 } 970 971 .wp-admin .clearlooks2 .mceBottom .mceRight { 972 background: #f1f1f1; 973 border-bottom: 1px solid #999; 974 border-right: 1px solid #999; 975 } 976 977 .wp-admin .clearlooks2 .mceFocus .mceTop span { 978 color: #fff; 926 979 } 927 980 /* end TinyMCE */ -
trunk/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css
r8512 r9677 2 2 body { 3 3 font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; 4 /*scrollbar-3dlight-color:#F0F0EE; 5 scrollbar-arrow-color:#676662; 6 scrollbar-base-color:#F0F0EE; 7 scrollbar-darkshadow-color:#DDDDDD; 8 scrollbar-face-color:#E0E0DD; 9 scrollbar-highlight-color:#F0F0EE; 10 scrollbar-shadow-color:#F0F0EE; 11 scrollbar-track-color:#F5F5F5;*/ 12 background:#E4F2FD; 4 background:#f1f1f1; 13 5 padding:0; 14 6 margin:8px 8px 0 8px; 15 7 } 16 8 17 html {background:# E4F2FD;}9 html {background:#f1f1f1;} 18 10 td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 19 11 textarea {resize:none;outline:none;} … … 22 14 23 15 /* Forms */ 24 fieldset {margin:0; padding:4px; border:1px solid # 919B9C; font-family:Verdana, Arial; font-size:10px;}16 fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;} 25 17 legend {color:#2B6FB6; font-weight:bold;} 26 18 label.msg {display:none;} 27 19 label.invalid {color:#EE0000; display:inline;} 28 20 input.invalid {border:1px solid #EE0000;} 29 input {background:#FFF; border:1px solid # CCC;}21 input {background:#FFF; border:1px solid #dfdfdf;} 30 22 input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 31 input, select, textarea {border:1px solid # 808080;}23 input, select, textarea {border:1px solid #dfdfdf;} 32 24 input.radio {border:1px none #000000; background:transparent; vertical-align:middle;} 33 25 input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;} … … 36 28 /* Buttons */ 37 29 #insert, #cancel, #apply, .mceActionPanel .button, input.mceButton, .updateButton { 38 border: 1px solid #bbb; 39 margin:0; 40 padding:0 0 1px; 41 font-weight:bold; 42 font-size: 11px; 43 width:94px; 44 height:24px; 45 background:url(img/fade-butt.png) 0 0; 46 cursor:pointer; 30 border: 1px solid #bbb; 31 margin:0; 32 padding:0 0 1px; 33 font-weight:bold; 34 font-size: 11px; 35 width:94px; 36 height:24px; 37 background:url(img/fade-butt.png) 0 0; 38 cursor:pointer; 39 -moz-border-radius: 3px; 40 -khtml-border-radius: 3px; 41 -webkit-border-radius: 3px; 42 border-radius: 3px; 47 43 } 48 44 #insert:hover, #cancel:hover, input.mceButton:hover, .updateButton:hover, 49 45 #insert:focus, #cancel:focus, input.mceButton:focus, .updateButton:focus { 50 border: 1px solid #555;51 } 46 border: 1px solid #555; 47 } 52 48 53 49 /* Browse */
Note: See TracChangeset
for help on using the changeset viewer.