Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
responsive_preview
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
responsive_preview
Merge requests
!22
Issue# 3489112: Integrate responsive preview with Navigation top bar
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue# 3489112: Integrate responsive preview with Navigation top bar
issue/responsive_preview-3489112:3489112-integrate-responsive-preview
into
2.x
Overview
22
Commits
11
Pipelines
12
Changes
8
Merged
Roshni Upadhyay
requested to merge
issue/responsive_preview-3489112:3489112-integrate-responsive-preview
into
2.x
3 months ago
Overview
22
Commits
11
Pipelines
12
Changes
8
Expand
Closes
#3489112
0
0
Merge request reports
Compare
2.x
version 11
c0ed6767
2 months ago
version 10
bead32ce
3 months ago
version 9
bbf0bd2e
3 months ago
version 8
d3bba84b
3 months ago
version 7
8d96bb79
3 months ago
version 6
78d57b85
3 months ago
version 5
ce370820
3 months ago
version 4
c1d054f4
3 months ago
version 3
fcc57964
3 months ago
version 2
c98063ee
3 months ago
version 1
99d922ac
3 months ago
2.x (base)
and
latest version
latest version
c0ed6767
11 commits,
1 month ago
version 11
c0ed6767
11 commits,
2 months ago
version 10
bead32ce
10 commits,
3 months ago
version 9
bbf0bd2e
9 commits,
3 months ago
version 8
d3bba84b
8 commits,
3 months ago
version 7
8d96bb79
7 commits,
3 months ago
version 6
78d57b85
6 commits,
3 months ago
version 5
ce370820
5 commits,
3 months ago
version 4
c1d054f4
4 commits,
3 months ago
version 3
fcc57964
3 commits,
3 months ago
version 2
c98063ee
2 commits,
3 months ago
version 1
99d922ac
1 commit,
3 months ago
8 files
+
277
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
modules/responsive_preview_navigation/css/responsive-preview.navigation.css
0 → 100644
+
34
−
0
Options
.responsive-preview-navigation-bar
{
background-color
:
#eee
;
border-radius
:
4px
;
margin
:
0
;
padding
:
0
;
}
.responsive-preview-navigation-bar
button
{
width
:
50px
;
height
:
35px
;
cursor
:
pointer
;
background-color
:
transparent
;
border
:
2px
solid
transparent
;
border-radius
:
4px
;
padding
:
3px
10px
;
background-repeat
:
no-repeat
;
background-position
:
center
;
background-size
:
25px
25px
;
font-size
:
0
;
}
.responsive-preview-navigation-bar
button
.device-icon-mobile
{
background-image
:
url("../images/mobile.svg")
;
}
.responsive-preview-navigation-bar
button
.device-icon-desktop
{
background-image
:
url("../images/desktop.svg")
;
}
.responsive-preview-navigation-bar
button
.active
{
background-color
:
#fff
;
border-color
:
#eee
;
border-radius
:
4px
;
}
Loading