Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dist/css/ratchet.css
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,9 @@ input[type="button"] {
padding-left: 10px;
background-color: white;
border-bottom: 1px solid #ddd;

backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

.bar-header-secondary {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/ratchet.min.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions docs/dist/css/ratchet.css
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,9 @@ input[type="button"] {
padding-left: 10px;
background-color: white;
border-bottom: 1px solid #ddd;

backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}

.bar-header-secondary {
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/ratchet.min.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions sass/bars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
padding-left: $bar-side-spacing;
background-color: $chrome-color;
border-bottom: $border-default;
-webkit-backface-visibility: hidden; // Make sure the bar is visible when a modal animates in.
backface-visibility: hidden;
}

// Modifier class to dock any bar below .bar-nav
Expand Down