You are here

image_captcha.css in CAPTCHA 6.2

Same filename and directory in other branches
  1. 8 image_captcha/image_captcha.css
  2. 7 image_captcha/image_captcha.css
/**
 * Styling of the font selection list (with previews)
 * on the Image CAPTCHA settings page.
 */

/**
 * Float the fonts with preview (with a fixed width)
 * to create a multi-column layout.
 */
.image_captcha_admin_font_preview {
  float: left;
  width: 160px;
}

/**
 * Fonts without a preview should not follow the column layout.
 */
.image_captcha_admin_fonts_selection .form-item {
  clear: both;
}

/**
 * Center the font previews vertically to the text.
 */
.image_captcha_admin_fonts_selection img {
  vertical-align: middle;
}


File

image_captcha/image_captcha.css
View source
  1. /**
  2. * Styling of the font selection list (with previews)
  3. * on the Image CAPTCHA settings page.
  4. */
  5. /**
  6. * Float the fonts with preview (with a fixed width)
  7. * to create a multi-column layout.
  8. */
  9. .image_captcha_admin_font_preview {
  10. float: left;
  11. width: 160px;
  12. }
  13. /**
  14. * Fonts without a preview should not follow the column layout.
  15. */
  16. .image_captcha_admin_fonts_selection .form-item {
  17. clear: both;
  18. }
  19. /**
  20. * Center the font previews vertically to the text.
  21. */
  22. .image_captcha_admin_fonts_selection img {
  23. vertical-align: middle;
  24. }