Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pachu
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
pachu
Merge requests
!24
pachu-3395607: After placing Tabs, for view-Edit-Delete-Revision, Is not visible anywhere.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
pachu-3395607: After placing Tabs, for view-Edit-Delete-Revision, Is not visible anywhere.
issue/pachu-3395607:pachu-3395594
into
1.0.x
Overview
0
Commits
21
Pipelines
4
Changes
2
Merged
Alok Singh
requested to merge
issue/pachu-3395607:pachu-3395594
into
1.0.x
1 year ago
Overview
0
Commits
21
Pipelines
4
Changes
2
Expand
pachu-3395607: After placing Tabs, for view-Edit-Delete-Revision, Is not visible anywhere.
0
0
Merge request reports
Compare
1.0.x
version 3
0da4718d
1 year ago
version 2
eb568516
1 year ago
version 1
e37738b6
1 year ago
1.0.x (base)
and
latest version
latest version
0da4718d
21 commits,
1 year ago
version 3
0da4718d
21 commits,
1 year ago
version 2
eb568516
20 commits,
1 year ago
version 1
e37738b6
19 commits,
1 year ago
2 files
+
28
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
templates/layout/region--highlighted.html.twig
0 → 100644
+
26
−
0
Options
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region <div>.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{%
set
classes
=
[
'region'
,
'region-'
~
region
|
clean_class
,
'container'
,
]
%}
{%
if
content
%}
<div
{{
attributes.addClass
(
classes
)
}}
>
{{
content
}}
</div>
{%
endif
%}
Loading