mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-27 14:46:01 +03:00
remove alt tab styles for now, too complicated to accomplish both static and tabble; fix up CSS a bit
This commit is contained in:
Vendored
+63
-3
@@ -6,7 +6,7 @@
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||
* Date: Mon Oct 31 19:36:50 PDT 2011
|
||||
* Date: Mon Oct 31 21:45:06 PDT 2011
|
||||
*/
|
||||
/* Reset.less
|
||||
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
||||
@@ -1495,17 +1495,77 @@ table .headerSortUp.purple, table .headerSortDown.purple {
|
||||
.tabbable.tabs-bottom .tabs > .active > a, .tabbable.tabs-bottom .tabs > .active > a:hover {
|
||||
border-color: transparent #ddd #ddd #ddd;
|
||||
}
|
||||
.tabbable.tabs-left, .tabbable.tabs-right {
|
||||
zoom: 1;
|
||||
}
|
||||
.tabbable.tabs-left:before,
|
||||
.tabbable.tabs-right:before,
|
||||
.tabbable.tabs-left:after,
|
||||
.tabbable.tabs-right:after {
|
||||
display: table;
|
||||
content: "";
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
.tabbable.tabs-left:after, .tabbable.tabs-right:after {
|
||||
clear: both;
|
||||
}
|
||||
.tabbable.tabs-left .tabs, .tabbable.tabs-right .tabs {
|
||||
width: 100px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li, .tabbable.tabs-right .tabs > li {
|
||||
float: none;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li > a, .tabbable.tabs-right .tabs > li > a {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li > a:hover, .tabbable.tabs-right .tabs > li > a:hover {
|
||||
border-color: transparent;
|
||||
}
|
||||
.tabbable.tabs-left .tab-content {
|
||||
margin-left: 100px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs {
|
||||
float: left;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li {
|
||||
float: none;
|
||||
margin-right: -1px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li > a {
|
||||
margin-right: 0;
|
||||
-webkit-border-radius: 4px 0 0 4px;
|
||||
-moz-border-radius: 4px 0 0 4px;
|
||||
border-radius: 4px 0 0 4px;
|
||||
}
|
||||
.tabbable.tabs-left .tabs > li > a:hover {
|
||||
border-right-color: #ddd;
|
||||
}
|
||||
.tabbable.tabs-left .tabs .active > a, .tabbable.tabs-left .tabs .active > a:hover {
|
||||
border-color: #ddd;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
.tabbable.tabs-right .tab-content {
|
||||
margin-right: 100px;
|
||||
}
|
||||
.tabbable.tabs-right .tabs {
|
||||
float: right;
|
||||
}
|
||||
.tabbable.tabs-right .tabs > li {
|
||||
float: none;
|
||||
margin-left: -1px;
|
||||
}
|
||||
.tabbable.tabs-right .tabs > li > a {
|
||||
margin-left: 0;
|
||||
-webkit-border-radius: 0 4px 4px 0;
|
||||
-moz-border-radius: 0 4px 4px 0;
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
.tabbable.tabs-right .tabs > li > a:hover {
|
||||
border-left-color: #ddd;
|
||||
}
|
||||
.tabbable.tabs-right .tabs .active > a, .tabbable.tabs-right .tabs .active > a:hover {
|
||||
border-color: #ddd;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
.tabs .menu-dropdown, .tabs .dropdown-menu {
|
||||
top: 35px;
|
||||
|
||||
Reference in New Issue
Block a user