Making WordPress.org


Ignore:
Timestamp:
03/12/2024 05:27:53 AM (6 months ago)
Author:
dd32
Message:

wporg-plugins-2024: Adopt the new tile layout for the plugin cards, with description below the card header.

See #7469.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024/client/components/_plugin-card.scss

    r13300 r13310  
    11.plugin-card {
    2     background-color: #f9f9f9;
    3     margin-bottom: 4%;
    4     padding: 15px 15px 8px;
    5     vertical-align: top;
    6 
    7     @media screen and ( min-width: $ms-breakpoint ) {
    8         display: inline-block;
    9         margin-right: 4%;
    10         width: 48%;
    11 
    12         &:nth-of-type( even ) {
    13             margin-right: 0;
    14         }
    15     }
     2    display: flex;
     3    flex-direction: column;
     4    justify-content: space-between;
     5    height: 100%;
    166
    177    .entry {
    188        display: inline-block;
    19         margin: auto;
    209        vertical-align: top;
    21 
    22         @media screen and ( min-width: 21em ) {
    23             width: calc(96% - 96px);
    24         }
    2510    }
    2611
    2712    .entry-title {
    2813        line-height: 1.3;
    29         margin: 0 0 8px !important;
    3014
    31         a {
    32             font-weight: 400;
    33             word-wrap: break-word;
    34         }
     15        display: block;
     16        display: -webkit-box;
     17        overflow: hidden;
     18        max-height: 2.6em; /* 2x line-height, non-webkit fallback */
     19        -webkit-line-clamp: 2;
     20        -webkit-box-orient: vertical;
    3521    }
    3622
    3723    .entry-excerpt {
    38         font-size: 0.9em;
     24        clear: both;
     25        font-size: var( --wp--preset--font-size--small );
    3926
    4027        p {
     
    4330    }
    4431
    45     hr {
    46         background-color: #fff;
    47         border: 0;
    48         height: 2px;
    49         margin: 15px -15px 8px;
    50     }
    51 
    5232    footer {
    53         font-size: var(--wp--preset--font-size--small);
     33        font-size: var( --wp--preset--font-size--small );
     34        margin-top: var( --wp--style--block-gap );
    5435
    5536        span {
     
    7556            min-width: 48%;
    7657        }
    77            
     58
    7859        .dashicons {
    7960            margin: 0 2px -1rem;
Note: See TracChangeset for help on using the changeset viewer.