summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dijit/themes/claro/TitlePane.css
diff options
context:
space:
mode:
authorTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
committerTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
commitb62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch)
tree86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /js/dojo-1.7.2/dijit/themes/claro/TitlePane.css
Initial commit of intern.ccwn.org contentsHEADmaster
Diffstat (limited to 'js/dojo-1.7.2/dijit/themes/claro/TitlePane.css')
-rw-r--r--js/dojo-1.7.2/dijit/themes/claro/TitlePane.css71
1 files changed, 71 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dijit/themes/claro/TitlePane.css b/js/dojo-1.7.2/dijit/themes/claro/TitlePane.css
new file mode 100644
index 0000000..1415615
--- /dev/null
+++ b/js/dojo-1.7.2/dijit/themes/claro/TitlePane.css
@@ -0,0 +1,71 @@
+/* TitlePane
+ *
+ * Styling TitlePane means styling the TitlePane title and its content container (dijitTitlePane)
+ *
+ * TitlePane title:
+ * 1. TitlePane title (default styling):
+ * .dijitTitlePaneTitle - TitlePane's title div style: background-color, border
+ *
+ * 2. hovered TitlePane title (ie, mouse hover on a title bar)
+ * .dijitTitlePaneTitleHover - styles when mouse hover on the title div
+ *
+ * 3. active TitlePane title (ie, mouse down on a title bar)
+ * .dijitTitlePaneTitleActive - styles when mouse down on the title div
+ *
+ *
+ * TitlePane Content Container:
+ * 1. outer/inner container:
+ * .dijitTitlePaneContentOuter / dijitTitlePaneContentInner - styles for the content outer div
+ */
+.claro .dijitTitlePaneTitle {
+ background-color: #efefef;
+ background-image: url("images/titlebar.png");
+ background-repeat: repeat-x;
+ border: 1px solid #b5bcc7;
+ padding: 0 7px 3px 7px;
+ min-height: 17px;
+}
+.dj_ie6 .claro .dijitTitlePaneTitle {
+ background-image: none;
+}
+.claro .dijitTitlePaneTitleHover {
+ background-color: #abd6ff;
+ border-color: #759dc0;
+}
+.claro .dijitTitlePaneTitleActive {
+ background-color: #7dbdfa;
+ border-color: #759dc0;
+ background-position: 0 -136px;
+}
+.claro .dijitTitlePaneTitleFocus {
+ margin-top: 3px;
+ padding-bottom: 2px;
+}
+.claro .dijitTitlePane .dijitArrowNode {
+ background-image: url("images/spriteArrows.png");
+ background-repeat: no-repeat;
+ height: 8px;
+ width: 7px;
+}
+.claro .dijitTitlePane .dijitOpen .dijitArrowNode {
+ background-position: 0 0;
+}
+.claro .dijitTitlePane .dijitClosed .dijitArrowNode {
+ background-position: -14px 0;
+}
+.claro .dijitTitlePane .dijitTitlePaneTextNode {
+ color: #000000;
+}
+.claro .dijitTitlePaneContentOuter {
+ background: #ffffff;
+ border: 1px solid #b5bcc7;
+ border-top: none;
+}
+.claro .dijitTitlePaneContentInner {
+ padding: 10px;
+}
+.claro .dijitTitlePaneTextNode {
+ margin-left: 4px;
+ margin-right: 4px;
+ vertical-align: text-top;
+}