Skip to content
Snippets Groups Projects
Commit 60e0169e authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

When hovering over email addresses in the pick email, change the cursor to a...

When hovering over email addresses in the pick email, change the cursor to a pointer - unless there is only one address.

close #356.
parent e4cfc151
No related branches found
No related tags found
No related merge requests found
......@@ -241,11 +241,15 @@ label {
text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}
#inputs > li > label {
.inputs > li > label {
cursor: pointer;
color: #333;
}
.inputs > li:only-child > label {
cursor: default;
}
input[type=email],
input[type=password] {
width: 100%;
......@@ -506,7 +510,7 @@ html[xmlns] .cf {
font-size: 80%;
}
#inputs li:only-child input[type=radio] {
.inputs > li:only-child input[type=radio] {
display: none;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment