Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/tabbar.css
4012 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
/*
9
* Styles used by goog.ui.TabBarRenderer.
10
*/
11
12
@provide 'goog.css.tabbar';
13
14
.goog-tab-bar {
15
margin: 0;
16
border: 0;
17
padding: 0;
18
list-style: none;
19
cursor: default;
20
outline: none;
21
background: #ebeff9;
22
}
23
24
.goog-tab-bar-clear {
25
clear: both;
26
height: 0;
27
overflow: hidden;
28
}
29
30
.goog-tab-bar-start {
31
float: left;
32
}
33
34
.goog-tab-bar-end {
35
float: right;
36
}
37
38
39
/*
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 {
45
margin-right: -3px;
46
}
47
48
* html .goog-tab-bar-end {
49
margin-left: -3px;
50
}
51
/* @endif */
52
53