X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fstatic%2Fcss%2Fregistration.css;h=5fe832151911b2f2b672a8d7f8501a2ddf405316;hb=194f64e52b806bafa5a5e0ed2940b94a462fe87e;hp=e41f9e27f97e6a2b06e53f220c85ee7e1459d08b;hpb=8bfd19e0841658b5e221e903d5596aca72470721;p=myslice.git diff --git a/portal/static/css/registration.css b/portal/static/css/registration.css index e41f9e27..5fe83215 100644 --- a/portal/static/css/registration.css +++ b/portal/static/css/registration.css @@ -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; +}