autofloat-rtl.css in AutoFloat 7.2        
                          
                  
                        
  /**
 * Float images alternately in right-to-left content.
 */
/**
 * The CSS values that are wrapped in '/*variable' comments are intended for use
 * by https://www.drupal.org/project/style_settings. Enable that module to
 * have those CSS variables exposed in the settings UI.
 */
/* Adjust the id or class if your theme uses another to target the node body.*/
.content .autofloat-odd,
#content .autofloat-odd,
.style-settings-preview .autofloat-odd,
article .autofloat-odd {
  float: left;
  margin-right: /*variable:autofloat_right*/5px/*variable*/;
  margin-left: 0;
}
.content .autofloat-even,
#content .autofloat-even,
.style-settings-preview .autofloat-even,
article .autofloat-even {
  float: right;
  margin-right: 0;
  margin-left: /*variable:autofloat_left*/5px/*variable*/;
}
 
  
  
File
  css/autofloat-rtl.css
  
    View source  
  - /**
-  * Float images alternately in right-to-left content.
-  */
- 
- /**
-  * The CSS values that are wrapped in '/*variable' comments are intended for use
-  * by https://www.drupal.org/project/style_settings. Enable that module to
-  * have those CSS variables exposed in the settings UI.
-  */
- 
- /* Adjust the id or class if your theme uses another to target the node body.*/
- .content .autofloat-odd,
- #content .autofloat-odd,
- .style-settings-preview .autofloat-odd,
- article .autofloat-odd {
-   float: left;
-   margin-right: /*variable:autofloat_right*/5px/*variable*/;
-   margin-left: 0;
- }
- 
- .content .autofloat-even,
- #content .autofloat-even,
- .style-settings-preview .autofloat-even,
- article .autofloat-even {
-   float: right;
-   margin-right: 0;
-   margin-left: /*variable:autofloat_left*/5px/*variable*/;
- }