You are here

flickrstyle_bordernoshadow.css in Flickr 7

/**
 * 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.
 */

.flickr-photo-img,
img.flickr-photoset-img {
  padding: /*variable:flickrstyle_spacing*/2px/*variable*/;
  border-style: solid;
  border-width: /*variable:flickrstyle_border_thickness*/2px/*variable*/ !important;
  border-color: /*variable:flickrstyle_border_color*/LightGrey/*variable*/ !important;
  background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/ !important;
}

/*Make the caption as wide as the image */
span.flickr-credit,
.flickr-citation {
  padding: 0 /*variable:flickrstyle_border_thickness_doubled*/4px/*variable*/;
}

File

style/css/flickrstyle_bordernoshadow.css
View source
  1. /**
  2. * The CSS values that are wrapped in '/*variable' comments are intended for use
  3. * by https://www.drupal.org/project/style_settings. Enable that module to
  4. * have those CSS variables exposed in the settings UI.
  5. */
  6. .flickr-photo-img,
  7. img.flickr-photoset-img {
  8. padding: /*variable:flickrstyle_spacing*/2px/*variable*/;
  9. border-style: solid;
  10. border-width: /*variable:flickrstyle_border_thickness*/2px/*variable*/ !important;
  11. border-color: /*variable:flickrstyle_border_color*/LightGrey/*variable*/ !important;
  12. background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/ !important;
  13. }
  14. /*Make the caption as wide as the image */
  15. span.flickr-credit,
  16. .flickr-citation {
  17. padding: 0 /*variable:flickrstyle_border_thickness_doubled*/4px/*variable*/;
  18. }