Making WordPress.org

Changeset 5785


Ignore:
Timestamp:
08/09/2017 12:40:21 PM (8 years ago)
Author:
danielbachhuber
Message:

devhub/cli: Fix btn-group CSS to target correct element

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

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php

    r5775 r5785  
    278278    wp_enqueue_style( 'open-sans', '//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600' );
    279279    wp_enqueue_style( 'wporg-developer-style', get_stylesheet_uri(), array(), '2' );
    280     wp_enqueue_style( 'wp-dev-sass-compiled', get_template_directory_uri() . '/stylesheets/main.css', array( 'wporg-developer-style' ), '20170807' );
     280    wp_enqueue_style( 'wp-dev-sass-compiled', get_template_directory_uri() . '/stylesheets/main.css', array( 'wporg-developer-style' ), '20170809' );
    281281    wp_enqueue_script( 'wporg-developer-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
    282282    wp_enqueue_script( 'wporg-developer-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/scss/main.scss

    r5768 r5785  
    19971997        display: inline;
    19981998       
    1999         > button {
     1999        > a {
    20002000            position: relative;
    20012001           
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/stylesheets/main.css

    r5768 r5785  
    23102310}
    23112311
    2312 .single-command .btn-group > button {
     2312.single-command .btn-group > a {
    23132313  position: relative;
    23142314}
    23152315
    23162316@media (min-width: 571px) {
    2317   .single-command .btn-group > button:first-child {
     2317  .single-command .btn-group > a:first-child {
    23182318    right: -6px;
    23192319    border-radius: 3px 0 0 3px;
     
    23222322
    23232323@media (min-width: 571px) {
    2324   .single-command .btn-group > button:last-child {
     2324  .single-command .btn-group > a:last-child {
    23252325    border-radius: 0 3px 3px 0;
    23262326  }
Note: See TracChangeset for help on using the changeset viewer.