You are here

flickrstyle_wrapcaption_border.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-wrap {
  margin: 0;
  border-width: /*variable:flickrstyle_border_thickness*/2px/*variable*/;
  border-style: solid;
  border-color: /*variable:flickrstyle_border_color*/LightGrey/*variable*/;
  background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
}

.flickr-photo-img {
  margin: 0;
  border: none;
  border: transparent !important;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

span.flickr-credit {
  /*Resets the space between the image and caption box*/
  margin-top: 0;
  padding: 0 5px 3px;
}

File

style/css/flickrstyle_wrapcaption_border.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-wrap {
  7. margin: 0;
  8. border-width: /*variable:flickrstyle_border_thickness*/2px/*variable*/;
  9. border-style: solid;
  10. border-color: /*variable:flickrstyle_border_color*/LightGrey/*variable*/;
  11. background-color: /*variable:flickrstyle_bgcolor*/White/*variable*/;
  12. }
  13. .flickr-photo-img {
  14. margin: 0;
  15. border: none;
  16. border: transparent !important;
  17. -webkit-box-shadow: none;
  18. -moz-box-shadow: none;
  19. box-shadow: none;
  20. }
  21. span.flickr-credit {
  22. /*Resets the space between the image and caption box*/
  23. margin-top: 0;
  24. padding: 0 5px 3px;
  25. }