Path: blob/trunk/third_party/closure/goog/css/tabbar.css
2868 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/* Author: [email protected] (Attila Bodis) */8/* Author: [email protected] (Emil A. Eklund) */91011/*12* Styles used by goog.ui.TabBarRenderer.13*/14.goog-tab-bar {15margin: 0;16border: 0;17padding: 0;18list-style: none;19cursor: default;20outline: none;21background: #ebeff9;22}2324.goog-tab-bar-clear {25clear: both;26height: 0;27overflow: hidden;28}2930.goog-tab-bar-start {31float: left;32}3334.goog-tab-bar-end {35float: right;36}373839/*40* IE6-only hacks to fix the gap between the floated tabs and the content.41* IE7 and later will ignore these.42*/43/* @if user.agent ie6 */44* html .goog-tab-bar-start {45margin-right: -3px;46}4748* html .goog-tab-bar-end {49margin-left: -3px;50}51/* @endif */525354