Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/tabbar.css
2868 views
1
/*
2
* Copyright 2008 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/* Author: [email protected] (Attila Bodis) */
9
/* Author: [email protected] (Emil A. Eklund) */
10
11
12
/*
13
* Styles used by goog.ui.TabBarRenderer.
14
*/
15
.goog-tab-bar {
16
margin: 0;
17
border: 0;
18
padding: 0;
19
list-style: none;
20
cursor: default;
21
outline: none;
22
background: #ebeff9;
23
}
24
25
.goog-tab-bar-clear {
26
clear: both;
27
height: 0;
28
overflow: hidden;
29
}
30
31
.goog-tab-bar-start {
32
float: left;
33
}
34
35
.goog-tab-bar-end {
36
float: right;
37
}
38
39
40
/*
41
* IE6-only hacks to fix the gap between the floated tabs and the content.
42
* IE7 and later will ignore these.
43
*/
44
/* @if user.agent ie6 */
45
* html .goog-tab-bar-start {
46
margin-right: -3px;
47
}
48
49
* html .goog-tab-bar-end {
50
margin-left: -3px;
51
}
52
/* @endif */
53
54