1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/*
* Styles for Editor dialogs and their sub-components.
*
* @author marcosalmeida@google.com (Marcos Almeida)
*/
.tr-dialog {
width: 475px;
}
.tr-dialog .goog-tab-content {
margin: 0;
border: 1px solid #6b90da;
padding: 4px 8px;
background: #fff;
overflow: auto;
}
.tr-tabpane {
font-size: 10pt;
padding: 1.3ex 0;
}
.tr-tabpane-caption {
font-size: 10pt;
margin-bottom: 0.7ex;
background-color: #fffaf5;
line-height: 1.3em;
}
.tr-tabpane .goog-tab-content {
border: none;
padding: 5px 7px 1px;
}
.tr-tabpane .goog-tab {
background-color: #fff;
border: none;
width: 136px;
line-height: 1.3em;
margin-bottom: 0.7ex;
}
.tr-tabpane .goog-tab {
text-decoration: underline;
color: blue;
cursor: pointer;
}
.tr-tabpane .goog-tab-selected {
font-weight: bold;
text-decoration: none;
color: black;
}
.tr-tabpane .goog-tab input {
margin: -2px 5px 0 0;
}
|