Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
3ee5542c
Commit
3ee5542c
authored
Jun 08, 2014
by
Mark Otto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13649 from ItsJonQ/repaint-fixes-2
Repaint Fixes When Scrolling
parents
7231efab
7da34cc0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
less/modals.less
less/modals.less
+2
-2
less/navbar.less
less/navbar.less
+1
-0
less/utilities.less
less/utilities.less
+1
-0
No files found.
less/modals.less
View file @
3ee5542c
...
@@ -31,10 +31,10 @@
...
@@ -31,10 +31,10 @@
// When fading in the modal, animate it to slide down
// When fading in the modal, animate it to slide down
&.fade .modal-dialog {
&.fade .modal-dialog {
.translate
(0, -25%
);
.translate
3d(0, -25%, 0
);
.transition-transform(~"0.3s ease-out");
.transition-transform(~"0.3s ease-out");
}
}
&.in .modal-dialog { .translate
(0, 0)
}
&.in .modal-dialog { .translate
3d(0, 0, 0)
}
}
}
// Shell div to position the modal with bottom padding
// Shell div to position the modal with bottom padding
...
...
less/navbar.less
View file @
3ee5542c
...
@@ -141,6 +141,7 @@
...
@@ -141,6 +141,7 @@
right: 0;
right: 0;
left: 0;
left: 0;
z-index: @zindex-navbar-fixed;
z-index: @zindex-navbar-fixed;
.translate3d(0, 0, 0);
// Undo the rounded corners
// Undo the rounded corners
@media (min-width: @grid-float-breakpoint) {
@media (min-width: @grid-float-breakpoint) {
...
...
less/utilities.less
View file @
3ee5542c
...
@@ -53,4 +53,5 @@
...
@@ -53,4 +53,5 @@
.affix {
.affix {
position: fixed;
position: fixed;
.translate3d(0, 0, 0);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment