This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(tabs): fixes continuous
$digest
bug in Firefox when using `md-s…
…tretch-tabs` Closes #3101
- Loading branch information
Robert Messerle
committed
Jun 4, 2015
1 parent
85a7590
commit 5372710
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,7 +119,7 @@ md-tabs-wrapper { | |
display: flex; | ||
flex-direction: row; | ||
md-tab-item { | ||
flex: 1; | ||
flex-grow: 1; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
robertmesserle
via email
Contributor
|
||
} | ||
} | ||
} | ||
|
@@ -232,6 +232,7 @@ md-tab { | |
text-transform: uppercase; | ||
float: left; | ||
font-weight: 500; | ||
box-sizing: border-box; | ||
&.md-focused { | ||
box-shadow: none; | ||
outline: none; | ||
|
How does this reduce $digest issues ?