Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
internewshid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aptivate
client-projects
internewshid
Merge requests
!23
Tabbed view header styling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Tabbed view header styling
tabbed-view-header-styling
into
staging
Overview
0
Commits
62
Pipelines
0
Changes
39
Closed
decentral1se
requested to merge
tabbed-view-header-styling
into
staging
9 years ago
Overview
0
Commits
62
Pipelines
0
Changes
39
Expand
Created by: blujay
various styling and code tweaks for tabbed headers
0
0
Merge request reports
Compare
staging
staging (base)
and
latest version
latest version
fcab736d
62 commits,
7 years ago
39 files
+
1259
−
318
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
39
Search (e.g. *.vue) (Ctrl+P)
django/website/hid/static/hid/js/messages.js
+
3
−
3
Options
/**
* Hide messages box after
3
seconds automatically
* Hide messages box after
5
seconds automatically
with a 1 second fadeout
*/
jQuery
(
window
).
load
(
function
(){
setTimeout
(
function
(){
jQuery
(
'
.messages-box > ul
'
).
fadeOut
(
3
000
,
'
swing
'
);
},
3
000
);
jQuery
(
'
.messages-box > ul
'
).
fadeOut
(
1
000
,
'
swing
'
);
},
5
000
);
});
Loading