Projet

Général

Profil

Paste
Télécharger (602 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / captcha / image_captcha / image_captcha.css @ 00c2605a

1
/**
2
 * Styling of the font selection list (with previews)
3
 * on the Image CAPTCHA settings page.
4
 */
5

    
6
/**
7
 * Float the fonts with preview (with a fixed width)
8
 * to create a multi-column layout.
9
 */
10
.image_captcha_admin_fonts_selection .form-item {
11
  float: left;
12
  width: 160px;
13
}
14

    
15
/**
16
 * Stop floating with the item for the built in font.
17
 */
18
.image_captcha_admin_fonts_selection .form-item-image-captcha-fonts-BUILTIN {
19
  clear: both;
20
  float: none;
21
  width: 100%;
22
}
23

    
24
/**
25
 * Center the font previews vertically to the text.
26
 */
27
.image_captcha_admin_fonts_selection img {
28
  vertical-align: middle;
29
}