You are here

audiofield.css in AudioField 8

/*
 * some players do not expect the box-sizing setting for Drupal 8, so we reset it here
 */
.audiofield {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/*
 * be certain all floated content is visible
 */
.audiofield:after {
  content: "";
  clear: both;
  display: block;
}
/*
 * properly align jPlayer circle player
 */
.cp-circle-frame {
  text-align: center;
}

File

css/audiofield.css
View source
  1. /*
  2. * some players do not expect the box-sizing setting for Drupal 8, so we reset it here
  3. */
  4. .audiofield {
  5. -webkit-box-sizing: content-box;
  6. box-sizing: content-box;
  7. }
  8. /*
  9. * be certain all floated content is visible
  10. */
  11. .audiofield:after {
  12. content: "";
  13. clear: both;
  14. display: block;
  15. }
  16. /*
  17. * properly align jPlayer circle player
  18. */
  19. .cp-circle-frame {
  20. text-align: center;
  21. }