X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fstatic%2Fcss%2Fregistration.css;h=3f83359cf4f48e6f9d5b638b67833cdfbfad5286;hb=6f9151d28008d4b6fc49e2d9c0cfe2d848a90f9f;hp=e41f9e27f97e6a2b06e53f220c85ee7e1459d08b;hpb=c77b9cad96881bad0fafb83cef06450db054da2f;p=unfold.git diff --git a/portal/static/css/registration.css b/portal/static/css/registration.css index e41f9e27..3f83359c 100644 --- a/portal/static/css/registration.css +++ b/portal/static/css/registration.css @@ -5,7 +5,7 @@ I've started to move over such stuff in onelab.css feel free to add to this collection */ -label.error { +.error { float: none; color: red; padding-left: .5em; @@ -13,6 +13,24 @@ 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; +} + +/* avoid blinking effect with the rhs hints */ +select#auth_list { + height: 34px; +}