Skip to content
Snippets Groups Projects
Commit d3a1468b authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Adds missing class

Will apply identation from
CSS to collapsible sections
parent cd17f804
No related branches found
No related tags found
No related merge requests found
---
title: Indent collapsible sections
merge_request: 29804
author:
type: other
Loading
Loading
@@ -310,7 +310,7 @@ module Gitlab
 
if @sections.any?
css_classes << "section"
css_classes << "js-section-header" if @lineno_in_section == 0
css_classes << "js-section-header section-header" if @lineno_in_section == 0
css_classes += sections.map { |section| "js-s-#{section}" }
end
 
Loading
Loading
Loading
Loading
@@ -231,8 +231,8 @@ describe Gitlab::Ci::Ansi2html do
 
it 'prints light red' do
text = "#{section_start}\e[91mHello\e[0m\n#{section_end}"
header = %{<span class="term-fg-l-red section js-section-header js-s-#{class_name(section_name)}">Hello</span>}
line_break = %{<span class="section js-section-header js-s-#{class_name(section_name)}"><br/></span>}
header = %{<span class="term-fg-l-red section js-section-header section-header js-s-#{class_name(section_name)}">Hello</span>}
line_break = %{<span class="section js-section-header section-header js-s-#{class_name(section_name)}"><br/></span>}
line = %{<span class="section line s_#{class_name(section_name)}"></span>}
empty_line = %{<span class="section js-s-#{class_name(section_name)}"></span>}
html = "#{section_start_html}#{header}#{line_break}#{line}#{empty_line}#{section_end_html}"
Loading
Loading
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