##// END OF EJS Templates
Help cursor showing up on span tags with title (#20633)....
Jean-Philippe Lang -
r14170:de9b8e7ef400
parent child
Show More
@@ -80,7 +80,8 module CustomFieldsHelper
80 # Return custom field name tag
80 # Return custom field name tag
81 def custom_field_name_tag(custom_field)
81 def custom_field_name_tag(custom_field)
82 title = custom_field.description.presence
82 title = custom_field.description.presence
83 content_tag 'span', custom_field.name, :title => title
83 css = title ? "field-description" : nil
84 content_tag 'span', custom_field.name, :title => title, :class => css
84 end
85 end
85
86
86 # Return custom field label tag
87 # Return custom field label tag
@@ -328,7 +328,7 legend {color: #484848;}
328 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
328 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
329 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
329 blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 2.4em;}
330 blockquote blockquote { margin-left: 0;}
330 blockquote blockquote { margin-left: 0;}
331 abbr, span[title] { border-bottom: 1px dotted #aaa; cursor: help; }
331 abbr, span.field-description[title] { border-bottom: 1px dotted #aaa; cursor: help; }
332 textarea.wiki-edit {width:99%; resize:vertical;}
332 textarea.wiki-edit {width:99%; resize:vertical;}
333 li p {margin-top: 0;}
333 li p {margin-top: 0;}
334 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
334 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
General Comments 0
You need to be logged in to leave comments. Login now