CSS: Bring back styles for .impact

refs #10886
This commit is contained in:
Eric Lippmann 2015-12-21 09:57:01 +01:00
parent b483ab2a28
commit a127962e73
2 changed files with 10 additions and 12 deletions

View File

@ -151,3 +151,13 @@ td, th {
-o-transition: none !important;
transition: none !important;
}
// Styles for when containers are loading. JS will remove this once the containers are ready
.impact {
.active > a, // Remove > a once .tabs layout has been fixed
.controls,
.content {
.transition(background-color 2s 1s linear !important);
background-color: @gray-lighter !important;
}
}

View File

@ -13,10 +13,6 @@ ul.tabs {
overflow: hidden;
}
.impact ul.tabs {
border-bottom-color: white;
}
ul.tabs li {
display: inline-block;
}
@ -55,14 +51,6 @@ ul.tabs li.active a, ul.tabs li.dropdown:hover a, ul.tabs li.dropdown.hover a {
color: black;
}
.impact ul.tabs li.active a, .impact ul.tabs li.dropdown:hover, .impact ul.tabs li.dropdown.hover a {
background-color: #ddd;
transition: background-color 2s 1s linear;
-moz-transition: background-color 2s 1s linear;
-o-transition: background-color 2s 1s linear;
-webkit-transition: background-color 2s 1s linear;
}
ul.tabs li a:hover {
text-decoration: underline;
}