Make WordPress Core

Changeset 8884


Ignore:
Timestamp:
09/14/2008 05:37:54 AM (18 years ago)
Author:
ryan
Message:

Plugin install cleanups from Simek. fixes #7717

Location:
trunk/wp-admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/colors-classic.css

    r8871 r8884  
    820820    background-color: #CFEBF7 !important;
    821821}
     822
     823/* Install Plugins */
     824.star-average, .star.star-rating {
     825    background-color: #fc0;
     826}
     827
     828div.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  
    596596/* Layout */
    597597.wp_themeSkin .mceStatusbar {
    598      color:#000;
    599      background-color: #eaf3fa;
     598    color:#000;
     599    background-color: #eaf3fa;
    600600}
    601601
     
    803803    background-color: #E4F2FD !important;
    804804}
     805
     806/* Install Plugins */
     807.star-average, .star.star-rating {
     808    background-color: #fc0;
     809}
     810
     811div.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  
    66    font-size: 19px;
    77}
     8
    89div.star {
    910    height: 100%;
    1011    position: absolute;
    11     top: 0px;
    12     left: 0px;
     12    top: 0;
     13    left: 0;
    1314    background-color: transparent;
    1415    letter-spacing: 1ex;
    1516    border: none;
    1617}
    17 div.star.select:hover { background-color: #d00; }
     18
    1819.star1 { width: 20%; }
    1920.star2 { width: 40%; }
     
    2122.star4 { width: 80%; }
    2223.star5 { width: 100%; }
    23 .star-average, .star.star-rating { background-color: #fc0; }  /* TODO: Colour CSS file */
     24
    2425.star img, div.star a, div.star a:hover, div.star a:visited {
    2526    display: block;
    2627    position: absolute;
    27     right: 0px;
     28    right: 0;
    2829    border: none;
    2930    text-decoration: none;
    3031}
     32
    3133div.star img {
    3234    width: 19px;
     
    3739
    3840/* Start custom CSS */
    39 /* TODO: Move remaining colours to Colours CSS */
    4041/* Header on thickbox */
    4142#plugin-information-header {
     
    5253    margin: 0 5px;
    5354    position: absolute;
    54     left: 0px;
     55    left: 0;
    5556    bottom: -1px;
    5657}
    5758
    5859/* Install sidemenu */
    59 
    6060#plugin-information p.action-button {
    6161    width: 100%;
    62     padding-bottom:0;
    63     margin-bottom:0;
     62    padding-bottom: 0;
     63    margin-bottom: 0;
    6464    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;
    6572}
    6673
     
    8693#plugin-information .fyi h2 {
    8794    font-size: 0.9em;
    88     margin-bottom: 0px;
    89     margin-right: 0px;
     95    margin-bottom: 0;
     96    margin-right: 0;
    9097}
    9198
    9299#plugin-information .fyi h2.mainheader {
    93     background-color: #cee1ef; /* TODO: Colour CSS file */
    94100    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;
    95105}
    96106
    97107#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;
    104110    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;
    105115}
    106116
    107117#plugin-information .fyi li {
    108         margin-right: 0px;
     118    margin-right: 0;
    109119}
    110120
  • trunk/wp-admin/includes/plugin-install.php

    r8727 r8884  
    208208
    209209                $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&amp;plugin=' . $plugin['slug'] .
     211                                    '&amp;TB_iframe=true&amp;width=600&amp;height=800') . '" class="thickbox onclick" title="' .
    212212                                    attribute_escape($name) . '">' . __('Install') . '</a>';
    213213
Note: See TracChangeset for help on using the changeset viewer.