Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/editor/dialog.css
2868 views
1
/*
2
* Copyright 2007 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 for Editor dialogs and their sub-components.
10
*
11
* @author [email protected] (Marcos Almeida)
12
*/
13
14
15
.tr-dialog {
16
width: 475px;
17
}
18
19
.tr-dialog .goog-tab-content {
20
margin: 0;
21
border: 1px solid #6b90da;
22
padding: 4px 8px;
23
background: #fff;
24
overflow: auto;
25
}
26
27
.tr-tabpane {
28
font-size: 10pt;
29
padding: 1.3ex 0;
30
}
31
32
.tr-tabpane-caption {
33
font-size: 10pt;
34
margin-bottom: 0.7ex;
35
background-color: #fffaf5;
36
line-height: 1.3em;
37
}
38
39
.tr-tabpane .goog-tab-content {
40
border: none;
41
padding: 5px 7px 1px;
42
}
43
44
.tr-tabpane .goog-tab {
45
background-color: #fff;
46
border: none;
47
width: 136px;
48
line-height: 1.3em;
49
margin-bottom: 0.7ex;
50
}
51
52
.tr-tabpane .goog-tab {
53
text-decoration: underline;
54
color: blue;
55
cursor: pointer;
56
}
57
58
.tr-tabpane .goog-tab-selected {
59
font-weight: bold;
60
text-decoration: none;
61
color: black;
62
}
63
64
.tr-tabpane .goog-tab input {
65
margin: -2px 5px 0 0;
66
}
67
68