Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(tabs): fixes styles for Firefox
Browse files Browse the repository at this point in the history
Closes #2543
  • Loading branch information
Robert Messerle committed Apr 24, 2015
1 parent 6d82716 commit 6996edd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/tabs/tabs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ md-tabs-canvas {
position: relative;
overflow: hidden;
display: block;
height: $tabs-header-height;
.md-dummy-wrapper {
position: absolute;
top: 0;
Expand All @@ -135,9 +136,10 @@ md-tabs-canvas {
}
md-pagination-wrapper {
@include pie-clearfix;
height: $tabs-header-height;
display: block;
transition: left $swift-ease-in-out-duration $swift-ease-in-out-timing-function;
position: relative;
position: absolute;
width: 999999px;
left: 0;
transform: translate3d(0, 0, 0);
Expand Down

2 comments on commit 6996edd

@ThomasBurleson
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@robertmesserle - Does the current width affect browsers? should we make the width more realistic; e.g. width:4000px?

@robertmesserle
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ThomasBurleson This has already been addressed - 4000px would give us the same issues as 9999px, doesn't really matter HOW big we set it, we just want it to be bigger than the user's content.

Please sign in to comment.