Changeset 11424
- Timestamp:
- 01/10/2022 08:24:24 AM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates
- Files:
-
- 2 edited
-
helper-functions.php (modified) (1 diff)
-
style.css (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates/helper-functions.php
r11085 r11424 1 1 <?php 2 3 // Don't load the twentyfifteen styles. 4 remove_action( 'wp_enqueue_scripts', 'twentyfifteen_scripts' ); 5 2 6 wp_register_style( 3 7 'wporg-translate', 4 8 plugins_url( 'style.css', __FILE__ ), 5 9 [ 'gp-base' ], 6 '20210629'10 filemtime( __DIR__ . '/style.css' ) 7 11 ); 8 12 gp_enqueue_style( 'wporg-translate' ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates/style.css
r11074 r11424 43 43 } 44 44 45 .site-header a, 46 .site-header a:link, 47 .site-header a:visited { 48 text-decoration: none; 49 } 50 45 51 .site-title { 46 52 display: inline-block; … … 66 72 } 67 73 74 .site-header .site-title a { 75 color: #fff; 76 } 68 77 .site-header .site-title a:hover { 69 78 color: rgba( 255, 255, 255, 0.8 ); 79 border-bottom: none; 70 80 } 71 81 … … 312 322 .actionlist a, 313 323 .actionlist a:link, 314 .actionlist a:visited, 315 .gp-content a { 324 .actionlist a:visited { 316 325 color: #0073aa; 326 } 327 328 .gp-content a, 329 .gp-content a:link, 330 .gp-content a:visited, 331 .gp-content a:hover { 332 color: #0073aa; 333 text-decoration: none; 317 334 } 318 335 319 336 .gp-content a:hover { 320 337 color: #00a0d2; 321 text-decoration: none;322 338 } 323 339 … … 3108 3124 background-size: 11px 4px; 3109 3125 } 3126 3127 /* New header support - wp4 not loaded */ 3128 .wporg-make .site-title a:before { 3129 -webkit-font-smoothing: antialiased; 3130 display: inline-block; 3131 font: normal 28px/1 'dashicons'; 3132 vertical-align: top; 3133 width: 36px; 3134 } 3135 .make-polyglots .site-title a:before { content: '\f326'; }
Note: See TracChangeset
for help on using the changeset viewer.