Making WordPress.org

Changeset 3223


Ignore:
Timestamp:
05/23/2016 10:31:27 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Update contributor list styling.

See #1719.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css

    r3205 r3223  
    15241524}
    15251525
     1526.single .type-plugin .entry-content .plugin-developers {
     1527  list-style-type: none;
     1528  margin: 0;
     1529}
     1530
     1531.single .type-plugin .entry-content .plugin-developers li {
     1532  display: inline-block;
     1533  margin: 0 4% 1rem 0;
     1534  vertical-align: top;
     1535  width: 48%;
     1536}
     1537
     1538.single .type-plugin .entry-content .plugin-developers li:nth-of-type(even) {
     1539  margin-right: 0;
     1540}
     1541
     1542.single .type-plugin .entry-content .plugin-developers .avatar {
     1543  margin-right: 10px;
     1544  vertical-align: middle;
     1545}
     1546
    15261547.single .type-plugin .entry-meta {
    15271548  float: right;
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/primary/_plugin-single.scss

    r3205 r3223  
    7777            }
    7878        }
     79
     80        .plugin-developers {
     81            list-style-type: none;
     82            margin: 0;
     83
     84            li {
     85                display: inline-block;
     86                margin: 0 4% 1rem 0;
     87                vertical-align: top;
     88                width: 48%;
     89
     90                &:nth-of-type( even ) {
     91                    margin-right: 0;
     92                }
     93            }
     94
     95            .avatar {
     96                margin-right: 10px;
     97                vertical-align: middle;
     98            }
     99        }
    79100    }
    80101
Note: See TracChangeset for help on using the changeset viewer.