Project

General

Profile

Patch #41775 » adjust-valign-of-icons.patch

Go MAEDA, 2024-11-16 03:00

View differences:

app/assets/stylesheets/scm.css
22 22
li.change {
23 23
    list-style-type:none;
24 24
    background-image: url(/bullet_black.png);
25
    background-position: 1px 1px;
25
    background-position: 1px 2px;
26 26
    background-repeat: no-repeat;
27 27
    padding-top: 1px;
28 28
    padding-bottom: 1px;
......
41 41
li.change .copied-from { font-style: italic; color: #999; font-size: 0.9em; }
42 42
li.change .copied-from:before { content: " - "}
43 43

  
44
#changes-legend { float: right; font-size: 0.8em; margin: 0; }
45
#changes-legend li { float: left; background-position: 5px 0; }
44
#changes-legend { float: right; font-size: 0.75rem; margin: 0; }
45
#changes-legend li { float: left; background-position: 5px 1px; }
46 46

  
47 47
table.filecontent { border: 1px solid #e2e2e2;  border-collapse: collapse; width:98%; background-color: #fafafa; }
48 48
table.filecontent tbody {font-family:Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size:0.75rem;}
app/helpers/issues_helper.rb
609 609
    unless no_html
610 610
      label = content_tag('strong', label)
611 611
      old_value = content_tag("i", h(old_value)) if detail.old_value
612
      if detail.old_value && detail.value.blank? && detail.property != 'relation'
612
      if detail.old_value && detail.property != 'relation'
613 613
        old_value = content_tag("del", old_value)
614 614
      end
615 615
      if detail.property == 'attachment' && value.present? &&
(3-3/3)