X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fstatic%2Fcss%2Fregistration.css;h=1a274a24603efbc57331dc4f6f3a87c5defe6811;hb=a92f91a1d7c6d35f4ea9ecef8d6a9570265535fd;hp=e41f9e27f97e6a2b06e53f220c85ee7e1459d08b;hpb=de9f55c420ec2a4df0d9c29b397f94031398b4a3;p=myslice.git diff --git a/portal/static/css/registration.css b/portal/static/css/registration.css index e41f9e27..1a274a24 100644 --- a/portal/static/css/registration.css +++ b/portal/static/css/registration.css @@ -13,6 +13,19 @@ label.error { font-size: 12px; } -.hint { +.form-hint { display:none; } +/* show up hints when hovering on a the field */ +/* pick a small font to avoid flickering effects */ +div.form-group:hover p.form-hint { + display: block; + color: #FFFFFF; + background: rgba(0, 0, 0, 0.6); + padding: 3px 10px; + font-size: small; + + -moz-border-radius: 7px; + -webkit-border-radius: 7px; + border-radius: 7px; +}