Changeset 5017
- Timestamp:
- 08/19/2011 07:03:01 PM (14 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/css/default-rtl.css
r4961 r5017 3 3 Right to left styles. This will transform the theme to read from 4 4 right to left for languages that support this method. 5 5 6 ---------------------------------------------------------------- 6 7 >>> TABLE OF CONTENTS: -
trunk/bp-themes/bp-default/_inc/css/default.css
r5012 r5017 61 61 a img{border:none;} 62 62 63 63 64 /*-------------------------------------------------------------- 64 65 2.0 - Structural -
trunk/bp-themes/bp-default/_inc/css/responsive.css
r5009 r5017 58 58 } 59 59 60 60 61 /*-------------------------------------------------------------- 61 1. 1- iPad Portrait62 1.2 - iPad Portrait 62 63 --------------------------------------------------------------*/ 63 64 @media only screen and (max-width: 640px) { … … 75 76 } 76 77 } 78 77 79 78 80 /*-------------------------------------------------------------- … … 139 141 } 140 142 143 141 144 /*-------------------------------------------------------------- 142 145 3.0 - iPhone -
trunk/bp-themes/bp-default/functions.php
r5005 r5017 171 171 function bp_dtheme_enqueue_styles() { 172 172 // Bump this when changes are made to bust cache 173 $version = '2011081 8';173 $version = '20110819'; 174 174 175 175 // Default CSS 176 176 wp_enqueue_style( 'bp-default-main', get_template_directory_uri() . '/_inc/css/default.css', array(), $version ); 177 177 178 // Responsive Layout 178 // Default CSS RTL 179 if ( is_rtl() ) 180 wp_enqueue_style( 'bp-default-main-rtl', get_template_directory_uri() . '/_inc/css/default-rtl.css', array( 'bp-default-main' ), $version ); 181 182 // Responsive layout 179 183 if ( current_theme_supports( 'bp-default-responsive' ) ) { 180 184 wp_enqueue_style( 'bp-default-responsive', get_template_directory_uri() . '/_inc/css/responsive.css', array( 'bp-default-main' ), $version ); 181 } 182 183 // Right to left CSS 184 if ( is_rtl() ) { 185 wp_enqueue_style( 'bp-default-main-rtl', get_template_directory_uri() . '/_inc/css/default-rtl.css', array( 'bp-default-main' ), $version ); 185 186 if ( is_rtl() ) 187 wp_enqueue_style( 'bp-default-responsive-rtl', get_template_directory_uri() . '/_inc/css/responsive-rtl.css', array( 'bp-default-responsive' ), $version ); 186 188 } 187 189 }
Note: See TracChangeset
for help on using the changeset viewer.