This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add tab specific CSS to separate CSS file Closes #5211
- Loading branch information
Showing
3 changed files
with
50 additions
and
51 deletions.
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
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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.uib-tab > div { | ||
position: relative; | ||
display: block; | ||
padding: 10px 15px; | ||
outline: 0; | ||
color: #337ab7; | ||
} | ||
.uib-tab > div:focus, | ||
.uib-tab > div:hover { | ||
background-color: #eee; | ||
color: #23527c; | ||
} | ||
.uib-tab.disabled > div { | ||
color: #777; | ||
} | ||
.uib-tab.disabled > div:focus, | ||
.uib-tab.disabled > div:hover { | ||
color: #777; | ||
cursor: not-allowed; | ||
background-color: transparent; | ||
} | ||
.nav-tabs > .uib-tab > div { | ||
margin-right: 2px; | ||
line-height: 1.42857143; | ||
border: 1px solid transparent; | ||
border-radius: 4px 4px 0 0; | ||
} | ||
.nav-tabs > .uib-tab > div:hover { | ||
border-color: #eee #eee #ddd; | ||
} | ||
.nav-tabs > .uib-tab.active > div, | ||
.nav-tabs > .uib-tab.active > div:focus, | ||
.nav-tabs > .uib-tab.active > div:hover { | ||
color: #555; | ||
cursor: default; | ||
background-color: #fff; | ||
border-color: #ddd #ddd transparent #ddd; | ||
} | ||
.nav-pills > .uib-tab > div { | ||
border-radius: 4px; | ||
} | ||
.nav-pills > .uib-tab.active > div, | ||
.nav-pills > .uib-tab.active > div:focus, | ||
.nav-pills > .uib-tab.active > div:hover { | ||
color: #fff; | ||
background-color: #337ab7; | ||
} |