Changeset 8884
- Timestamp:
- 09/14/2008 05:37:54 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
-
css/colors-classic.css (modified) (1 diff)
-
css/colors-fresh.css (modified) (2 diffs)
-
css/plugin-install.css (modified) (5 diffs)
-
includes/plugin-install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r8871 r8884 820 820 background-color: #CFEBF7 !important; 821 821 } 822 823 /* Install Plugins */ 824 .star-average, .star.star-rating { 825 background-color: #fc0; 826 } 827 828 div.star.select:hover { 829 background-color: #d00; 830 } 831 832 #plugin-information .fyi ul { 833 background-color: #eaf3fa; 834 } 835 836 #plugin-information .fyi h2.mainheader { 837 background-color: #cee1ef; 838 } -
trunk/wp-admin/css/colors-fresh.css
r8871 r8884 596 596 /* Layout */ 597 597 .wp_themeSkin .mceStatusbar { 598 color:#000;599 background-color: #eaf3fa;598 color:#000; 599 background-color: #eaf3fa; 600 600 } 601 601 … … 803 803 background-color: #E4F2FD !important; 804 804 } 805 806 /* Install Plugins */ 807 .star-average, .star.star-rating { 808 background-color: #fc0; 809 } 810 811 div.star.select:hover { 812 background-color: #d00; 813 } 814 815 #plugin-information .fyi ul { 816 background-color: #eaf3fa; 817 } 818 819 #plugin-information .fyi h2.mainheader { 820 background-color: #cee1ef; 821 } -
trunk/wp-admin/css/plugin-install.css
r8541 r8884 6 6 font-size: 19px; 7 7 } 8 8 9 div.star { 9 10 height: 100%; 10 11 position: absolute; 11 top: 0 px;12 left: 0 px;12 top: 0; 13 left: 0; 13 14 background-color: transparent; 14 15 letter-spacing: 1ex; 15 16 border: none; 16 17 } 17 div.star.select:hover { background-color: #d00; } 18 18 19 .star1 { width: 20%; } 19 20 .star2 { width: 40%; } … … 21 22 .star4 { width: 80%; } 22 23 .star5 { width: 100%; } 23 .star-average, .star.star-rating { background-color: #fc0; } /* TODO: Colour CSS file */ 24 24 25 .star img, div.star a, div.star a:hover, div.star a:visited { 25 26 display: block; 26 27 position: absolute; 27 right: 0 px;28 right: 0; 28 29 border: none; 29 30 text-decoration: none; 30 31 } 32 31 33 div.star img { 32 34 width: 19px; … … 37 39 38 40 /* Start custom CSS */ 39 /* TODO: Move remaining colours to Colours CSS */40 41 /* Header on thickbox */ 41 42 #plugin-information-header { … … 52 53 margin: 0 5px; 53 54 position: absolute; 54 left: 0 px;55 left: 0; 55 56 bottom: -1px; 56 57 } 57 58 58 59 /* Install sidemenu */ 59 60 60 #plugin-information p.action-button { 61 61 width: 100%; 62 padding-bottom: 0;63 margin-bottom: 0;62 padding-bottom: 0; 63 margin-bottom: 0; 64 64 margin-top: 10px; 65 -moz-border-radius: 3px 0 0 3px; 66 -webkit-border-top-left-radius: 3px; 67 -khtml-border-top-left-radius: 3px; 68 border-top-left-radius: 3px; 69 -webkit-border-bottom-left-radius: 3px; 70 -khtml-border-bottom-left-radius: 3px; 71 border-top-bottom-radius: 3px; 65 72 } 66 73 … … 86 93 #plugin-information .fyi h2 { 87 94 font-size: 0.9em; 88 margin-bottom: 0 px;89 margin-right: 0 px;95 margin-bottom: 0; 96 margin-right: 0; 90 97 } 91 98 92 99 #plugin-information .fyi h2.mainheader { 93 background-color: #cee1ef; /* TODO: Colour CSS file */94 100 padding: 5px; 101 -moz-border-radius-topleft: 3px; 102 -webkit-border-top-left-radius: 3px; 103 -khtml-border-top-left-radius: 3px; 104 border-top-left-radius: 3px; 95 105 } 96 106 97 107 #plugin-information .fyi ul { 98 background-color: #eaf3fa; /* TODO: Colour CSS file */ 99 padding-top: 10px; 100 padding-bottom: 10px; 101 padding-left: 7px; 102 padding-right: 5px; 103 margin: 0px; 108 padding: 10px 5px 10px 7px; 109 margin: 0; 104 110 list-style: none; 111 -moz-border-radius-bottomleft: 3px; 112 -webkit-border-bottom-left-radius: 3px; 113 -khtml-border-bottom-left-radius: 3px; 114 border-top-bottom-radius: 3px; 105 115 } 106 116 107 117 #plugin-information .fyi li { 108 margin-right: 0px;118 margin-right: 0; 109 119 } 110 120 -
trunk/wp-admin/includes/plugin-install.php
r8727 r8884 208 208 209 209 $action_links = array(); 210 $action_links[] = '<a href="' . admin_url('plugin-install.php?tab=plugin-information& plugin=' . $plugin['slug'] .211 '& TB_iframe=true&width=600&height=800') . '" class="thickbox onclick" title="' .210 $action_links[] = '<a href="' . admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin['slug'] . 211 '&TB_iframe=true&width=600&height=800') . '" class="thickbox onclick" title="' . 212 212 attribute_escape($name) . '">' . __('Install') . '</a>'; 213 213
Note: See TracChangeset
for help on using the changeset viewer.