Mercurial > hg > rr-repo
annotate sites/all/modules/captcha/image_captcha/image_captcha.css @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
rev | line source |
---|---|
danielebarchiesi@2 | 1 /** |
danielebarchiesi@2 | 2 * Styling of the font selection list (with previews) |
danielebarchiesi@2 | 3 * on the Image CAPTCHA settings page. |
danielebarchiesi@2 | 4 */ |
danielebarchiesi@2 | 5 |
danielebarchiesi@2 | 6 /** |
danielebarchiesi@2 | 7 * Float the fonts with preview (with a fixed width) |
danielebarchiesi@2 | 8 * to create a multi-column layout. |
danielebarchiesi@2 | 9 */ |
danielebarchiesi@2 | 10 .image_captcha_admin_fonts_selection .form-item { |
danielebarchiesi@2 | 11 float: left; |
danielebarchiesi@2 | 12 width: 160px; |
danielebarchiesi@2 | 13 } |
danielebarchiesi@2 | 14 |
danielebarchiesi@2 | 15 /** |
danielebarchiesi@2 | 16 * Stop floating with the item for the built in font. |
danielebarchiesi@2 | 17 */ |
danielebarchiesi@2 | 18 .image_captcha_admin_fonts_selection .form-item-image-captcha-fonts-BUILTIN { |
danielebarchiesi@2 | 19 clear: both; |
danielebarchiesi@2 | 20 float: none; |
danielebarchiesi@2 | 21 width: 100%; |
danielebarchiesi@2 | 22 } |
danielebarchiesi@2 | 23 |
danielebarchiesi@2 | 24 /** |
danielebarchiesi@2 | 25 * Center the font previews vertically to the text. |
danielebarchiesi@2 | 26 */ |
danielebarchiesi@2 | 27 .image_captcha_admin_fonts_selection img { |
danielebarchiesi@2 | 28 vertical-align: middle; |
danielebarchiesi@2 | 29 } |
danielebarchiesi@2 | 30 |