]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/themes/claro/TitlePane.css
upgrade dojo to 1.8.3 (refs #570)
[tt-rss.git] / lib / dijit / themes / claro / TitlePane.css
1 /* TitlePane
2 *
3 * Styling TitlePane means styling the TitlePane title and its content container (dijitTitlePane)
4 *
5 * TitlePane title:
6 * 1. TitlePane title (default styling):
7 * .dijitTitlePaneTitle - TitlePane's title div style: background-color, border
8 *
9 * 2. hovered TitlePane title (ie, mouse hover on a title bar)
10 * .dijitTitlePaneTitleHover - styles when mouse hover on the title div
11 *
12 * 3. active TitlePane title (ie, mouse down on a title bar)
13 * .dijitTitlePaneTitleActive - styles when mouse down on the title div
14 *
15 *
16 * TitlePane Content Container:
17 * 1. outer/inner container:
18 * .dijitTitlePaneContentOuter / dijitTitlePaneContentInner - styles for the content outer div
19 */
20 .claro .dijitTitlePaneTitle {
21 background-color: #efefef;
22 background-image: url("images/standardGradient.png");
23 background-repeat: repeat-x;
24 background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
25 background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
26 background-image: -o-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
27 background-image: linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
28 _background-image: none;
29 border: 1px solid #b5bcc7;
30 padding: 0 7px 3px 7px;
31 min-height: 17px;
32 }
33 .claro .dijitTitlePaneTitleHover {
34 background-color: #abd6ff;
35 border-color: #759dc0;
36 }
37 .claro .dijitTitlePaneTitleActive {
38 background-color: #7dbdfa;
39 border-color: #759dc0;
40 background-image: url("images/activeGradient.png");
41 background-repeat: repeat-x;
42 background-image: -moz-linear-gradient(rgba(190, 190, 190, 0.98) 0px, rgba(255, 255, 255, 0.65) 3px, rgba(255, 255, 255, 0) 100%);
43 background-image: -webkit-linear-gradient(rgba(190, 190, 190, 0.98) 0px, rgba(255, 255, 255, 0.65) 3px, rgba(255, 255, 255, 0) 100%);
44 background-image: -o-linear-gradient(rgba(190, 190, 190, 0.98) 0px, rgba(255, 255, 255, 0.65) 3px, rgba(255, 255, 255, 0) 100%);
45 background-image: linear-gradient(rgba(190, 190, 190, 0.98) 0px, rgba(255, 255, 255, 0.65) 3px, rgba(255, 255, 255, 0) 100%);
46 _background-image: none;
47 }
48 .claro .dijitTitlePaneTitleFocus {
49 margin-top: 3px;
50 padding-bottom: 2px;
51 }
52 .claro .dijitTitlePane .dijitArrowNode {
53 background-image: url("images/spriteArrows.png");
54 background-repeat: no-repeat;
55 height: 8px;
56 width: 7px;
57 }
58 .claro .dijitTitlePane .dijitOpen .dijitArrowNode {
59 background-position: 0 0;
60 }
61 .claro .dijitTitlePane .dijitClosed .dijitArrowNode {
62 background-position: -14px 0;
63 }
64 .claro .dijitTitlePane .dijitTitlePaneTextNode {
65 color: #000000;
66 }
67 .claro .dijitTitlePaneContentOuter {
68 background: #ffffff;
69 border: 1px solid #b5bcc7;
70 border-top: none;
71 }
72 .claro .dijitTitlePaneContentInner {
73 padding: 10px;
74 }
75 .claro .dijitTitlePaneTextNode {
76 margin-left: 4px;
77 margin-right: 4px;
78 vertical-align: text-top;
79 }