]> source.dussan.org Git - redmine.git/commitdiff
Move style to css (#32889).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 5 Apr 2020 09:51:11 +0000 (09:51 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 5 Apr 2020 09:51:11 +0000 (09:51 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@19658 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/issues_helper.rb
public/stylesheets/application.css
public/stylesheets/responsive.css

index 0a5abc8b2ee7d4abaf653e21c581a085581a4600..f897bc13e596fe41375969ea6130c36cc2f37659 100644 (file)
@@ -124,7 +124,7 @@ module IssuesHelper
                          link_to_issue(
                            child,
                            :project => (issue.project_id != child.project_id)),
-                         :class => 'subject', :style => 'width: 50%') +
+                         :class => 'subject') +
              content_tag('td', h(child.status), :class => 'status') +
              content_tag('td', format_date(child.start_date), :class => 'start_date') +
              content_tag('td', format_date(child.due_date), :class => 'due_date') +
@@ -179,8 +179,7 @@ module IssuesHelper
                              other,
                              :project => Setting.cross_project_issue_relations?)
                          }.html_safe,
-                         :class => 'subject',
-                         :style => 'width: 50%') +
+                         :class => 'subject') +
              content_tag('td', other_issue.status, :class => 'status') +
              content_tag('td', format_date(other_issue.start_date), :class => 'start_date') +
              content_tag('td', format_date(other_issue.due_date), :class => 'due_date') +
index ecd6548fb0eaf60fb7b4061ea6220c00dde4283a..a7512bd48e28b8c09a3f0714c42039e3e97687a4 100644 (file)
@@ -535,7 +535,8 @@ div.issue.overdue .due-date .value { color: #c22; }
 
 #issue_tree table.issues, #relations table.issues { border: 0; }
 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
-#relations td.buttons, #issue_tree td.buttons {padding:0;}
+#issue_tree td.subject, #relations td.subject {width: 50%;}
+#issue_tree td.buttons, #relations td.buttons {padding:0;}
 
 #trackers_description {display:none;}
 #trackers_description dt {font-weight: bold; text-decoration: underline;}
index c3ba3eacb3ecc58d7f124e4958072989c18df046..167961f44a98d81d6aa9e560e2a80d233134a992 100644 (file)
   }
 
   #issue_tree .issue > td.subject, #relations .issue > td.subject {
-    width: 100% !important; /* let subject have one full width column */
+    width: 100%; /* let subject have one full width column */
     word-break: break-word; /* break word if subject is too long */
     padding-right: 25px; /* this is the spaces that .buttons uses next to subject */
   }
 
-  #issue_tree .issue > td:not(.checkbox), #relations .issue > td:not(.checkbox) {
+  #issue_tree .issue > td:not(.subject), #relations .issue > td:not(.subject) {
     width: 33.33%; /* three columns for all cells that are not subject */
   }