/**
* Float images found in the body text alternately right and left.
*/
/**
* 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.*/
/*variable:autofloat_selector*/.node/*variable*/ .autofloat-odd,
/*variable:autofloat_selector*/.node/*variable*/ .autofloat-odd,
/*variable:autofloat_selector*/.node/*variable*/ span.flickr-wrap.autofloat-odd,
/*variable:autofloat_selector*/.node/*variable*/ span.flickr-photoset-single.autofloat-odd {
float: right; /* LTR */
margin-top: /*variable:autofloat_top*/2px/*variable*/;
margin-right: 0; /* LTR */
margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
margin-left: /*variable:autofloat_left*/5px/*variable*/; /* LTR */
}
/*variable:autofloat_selector*/.node/*variable*/ .autofloat-even,
/*variable:autofloat_selector*/.node/*variable*/ .autofloat-even,
/*variable:autofloat_selector*/.node/*variable*/ span.flickr-wrap.autofloat-even,
/*variable:autofloat_selector*/.node/*variable*/ span.flickr-photoset-single.autofloat-even {
float: left; /* LTR */
margin-top: /*variable:autofloat_top*/2px/*variable*/;
margin-right: /*variable:autofloat_right*/5px/*variable*/; /* LTR */
margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
margin-left: 0; /* LTR */
}
View source
- /**
- * Float images found in the body text alternately right and left.
- */
-
- /**
- * 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.*/
- /*variable:autofloat_selector*/.node/*variable*/ .autofloat-odd,
- /*variable:autofloat_selector*/.node/*variable*/ .autofloat-odd,
- /*variable:autofloat_selector*/.node/*variable*/ span.flickr-wrap.autofloat-odd,
- /*variable:autofloat_selector*/.node/*variable*/ span.flickr-photoset-single.autofloat-odd {
- float: right; /* LTR */
- margin-top: /*variable:autofloat_top*/2px/*variable*/;
- margin-right: 0; /* LTR */
- margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
- margin-left: /*variable:autofloat_left*/5px/*variable*/; /* LTR */
- }
-
- /*variable:autofloat_selector*/.node/*variable*/ .autofloat-even,
- /*variable:autofloat_selector*/.node/*variable*/ .autofloat-even,
- /*variable:autofloat_selector*/.node/*variable*/ span.flickr-wrap.autofloat-even,
- /*variable:autofloat_selector*/.node/*variable*/ span.flickr-photoset-single.autofloat-even {
- float: left; /* LTR */
- margin-top: /*variable:autofloat_top*/2px/*variable*/;
- margin-right: /*variable:autofloat_right*/5px/*variable*/; /* LTR */
- margin-bottom: /*variable:autofloat_bottom*/2px/*variable*/;
- margin-left: 0; /* LTR */
- }