Skip to content
Snippets Groups Projects
Commit 22755a4a authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Merge branch '63417-add-missing-class' into 'master'

Adds missing class in collapsible sections

Closes #63417

See merge request gitlab-org/gitlab-ce!29804
parents 7277c9b0 d3a1468b
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