Path: blob/trunk/third_party/closure/goog/css/tabbar.css
4012 views
/*1* Copyright 2008 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67/*8* Styles used by goog.ui.TabBarRenderer.9*/1011@provide 'goog.css.tabbar';1213.goog-tab-bar {14margin: 0;15border: 0;16padding: 0;17list-style: none;18cursor: default;19outline: none;20background: #ebeff9;21}2223.goog-tab-bar-clear {24clear: both;25height: 0;26overflow: hidden;27}2829.goog-tab-bar-start {30float: left;31}3233.goog-tab-bar-end {34float: right;35}363738/*39* IE6-only hacks to fix the gap between the floated tabs and the content.40* IE7 and later will ignore these.41*/42/* @if user.agent ie6 */43* html .goog-tab-bar-start {44margin-right: -3px;45}4647* html .goog-tab-bar-end {48margin-left: -3px;49}50/* @endif */515253