2011-11-08 17:40:44 +01:00
|
|
|
/* TabContainer
|
|
|
|
*
|
|
|
|
* Styling TabContainer means styling the TabList and Its content container (dijitTitlePane)
|
|
|
|
*
|
|
|
|
* Tab List: (including 4 kinds of tab location)
|
|
|
|
* .dijitTabContainerTop-tabs - tablist container at top
|
|
|
|
* .dijitTabContainerBottom-tabs - tablist container at bottom
|
|
|
|
* .dijitTabContainerLeft-tabs - tablist container at left
|
|
|
|
* .dijitTabContainerRight-tabs - tablist container at right
|
|
|
|
*
|
|
|
|
* Tab Strip Button:
|
|
|
|
* .dijitTabStripIcon - tab strip button icon
|
|
|
|
* .dijitTabStripMenuIcon - down arrow icon position
|
|
|
|
* .dijitTabStripSlideLeftIcon - left arrow icon position
|
|
|
|
* .dijitTabStripSlideRightIcon - right arrow icon position
|
|
|
|
*
|
|
|
|
* .tabStripButtonDisabled - styles for disabled tab strip buttons
|
|
|
|
*
|
|
|
|
* Tab Button:
|
2013-03-18 07:26:24 +01:00
|
|
|
* .dijitTabContainerTop-tabs .dijitTab - styles for top tab button container
|
|
|
|
* .dijitTabContainerBottom-tabs .dijitTab - styles for bottom tab button container
|
|
|
|
* .dijitTabContainerLeft-tabs .dijitTab - styles for left tab button container
|
|
|
|
* .dijitTabContainerRight-tabs .dijitTab - styles for right tab button container
|
2011-11-08 17:40:44 +01:00
|
|
|
*
|
2013-03-18 07:26:24 +01:00
|
|
|
* .dijitTabContainerTop-tabs .dijitTabChecked .dijitTab
|
2011-11-08 17:40:44 +01:00
|
|
|
* - styles for selected status of top tab button
|
|
|
|
* same to Bottom, Left, Right Tabs
|
|
|
|
*
|
2013-03-18 07:26:24 +01:00
|
|
|
* .dijitTabHover .dijitTab - styles when mouse hover on tab buttons
|
|
|
|
* .dijitTabActive .dijitTab - styles when mouse down on tab buttons
|
|
|
|
* .dijitTabChecked .dijitTab - styles when on buttons of selected tab
|
2011-11-08 17:40:44 +01:00
|
|
|
*
|
|
|
|
* .dijitTabCloseButton - the close action buttons lie at the right top of each tab button on closable tabs
|
|
|
|
* .dijitTabCloseButtonHover - styles when mouse hover on close action button
|
|
|
|
* .dijitTabCloseButtonActive - styles when mouse down on close action button
|
|
|
|
*
|
|
|
|
* Tab Button: (checked status)
|
|
|
|
*
|
|
|
|
* Tab Content Container:
|
|
|
|
* .dijitTabContainerTop-dijitContentPane
|
|
|
|
* .dijitTabContainerBottom-dijitContentPane
|
|
|
|
* .dijitTabContainerLeft-dijitContentPane
|
|
|
|
* .dijitTabContainerRight-dijitContentPane - for background and padding
|
|
|
|
*
|
|
|
|
* Nested Tabs:
|
|
|
|
* .dijitTabContainerNested - Container for nested tabs
|
|
|
|
* .dijitTabContainerTabListNested - tab list container for nested tabs
|
|
|
|
*/
|
|
|
|
/*** some common features ***/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabPaneWrapper {
|
2011-11-08 17:40:44 +01:00
|
|
|
background: #ffffff;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabPaneWrapper,
|
|
|
|
.claro .dijitTabContainerTop-tabs,
|
|
|
|
.claro .dijitTabContainerBottom-tabs,
|
|
|
|
.claro .dijitTabContainerLeft-tabs,
|
|
|
|
.claro .dijitTabContainerRight-tabs {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* todo: add common class name for this div */
|
|
|
|
|
|
|
|
border-color: #b5bcc7;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButton {
|
2012-08-14 16:59:10 +02:00
|
|
|
background: url("../layout/images/tabClose.png") no-repeat;
|
2011-11-08 17:40:44 +01:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: -5px;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButtonHover {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -14px;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButtonActive {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -28px;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabSpacer {
|
2011-11-08 17:40:44 +01:00
|
|
|
/* set the spacer invisible. note that height:0 doesn't work on IE/quirks, it's still 10px. */
|
|
|
|
|
|
|
|
display: none;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTab {
|
|
|
|
border: 1px solid #b5bcc7;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: #efefef;
|
|
|
|
-webkit-transition-property: background-color, border;
|
|
|
|
-moz-transition-property: background-color, border;
|
|
|
|
transition-property: background-color, border;
|
|
|
|
-webkit-transition-duration: 0.35s;
|
|
|
|
-moz-transition-duration: 0.35s;
|
|
|
|
transition-duration: 0.35s;
|
2012-08-14 16:59:10 +02:00
|
|
|
color: #494949;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabHover {
|
|
|
|
border-color: #759dc0;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: #abd6ff;
|
|
|
|
-webkit-transition-duration: 0.25s;
|
|
|
|
-moz-transition-duration: 0.25s;
|
|
|
|
transition-duration: 0.25s;
|
|
|
|
color: #000000;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabActive {
|
|
|
|
border-color: #759dc0;
|
2012-08-14 16:59:10 +02:00
|
|
|
background-color: #7dbdfa;
|
2011-11-08 17:40:44 +01:00
|
|
|
color: #000000;
|
|
|
|
-webkit-transition-duration: 0.1s;
|
|
|
|
-moz-transition-duration: 0.1s;
|
|
|
|
transition-duration: 0.1s;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabChecked {
|
|
|
|
border-color: #b5bcc7;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: #cfe5fa;
|
|
|
|
color: #000000;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabDisabled {
|
|
|
|
background-color: #d3d3d3;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .tabStripButton {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
/*** end common ***/
|
|
|
|
/*************** top tab ***************/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerTop-tabs .dijitTab {
|
2013-03-18 07:26:24 +01:00
|
|
|
/* unselected (and not hovered/pressed) tab */
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
top: 1px;
|
|
|
|
/* used for overlap */
|
|
|
|
|
|
|
|
margin-right: 1px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
border-bottom-width: 0;
|
|
|
|
min-width: 60px;
|
|
|
|
text-align: center;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: url("images/tabTopUnselected.png");
|
2011-11-08 17:40:44 +01:00
|
|
|
background-repeat: repeat-x;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: -moz-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
-moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTop-tabs .dijitTabChecked {
|
|
|
|
/* selected tab */
|
|
|
|
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-top: 9px;
|
|
|
|
background-image: url("images/tabTopSelected.png");
|
|
|
|
background-image: -moz-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: -webkit-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: -o-linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: linear-gradient(top, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
-moz-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
/** end top tab **/
|
|
|
|
/*************** bottom tab ***************/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerBottom-tabs .dijitTab {
|
2013-03-18 07:26:24 +01:00
|
|
|
/* unselected (and not hovered/pressed) tab */
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
top: -1px;
|
|
|
|
/* used for overlap */
|
|
|
|
|
|
|
|
margin-right: 1px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
border-top-width: 0;
|
|
|
|
min-width: 60px;
|
|
|
|
text-align: center;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: url("images/tabBottomUnselected.png");
|
2011-11-08 17:40:44 +01:00
|
|
|
background-repeat: repeat-x;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-position: bottom;
|
|
|
|
background-image: -moz-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
/* selected tab */
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerBottom-tabs .dijitTabChecked {
|
2013-03-18 07:26:24 +01:00
|
|
|
padding-bottom: 9px;
|
|
|
|
padding-top: 4px;
|
|
|
|
background-image: url("images/tabBottomSelected.png");
|
|
|
|
background-image: -moz-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: -o-linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
|
|
|
background-image: linear-gradient(bottom, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0) 2px, #ffffff 7px);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
/** end bottom tab **/
|
|
|
|
/*************** left tab ***************/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerLeft-tabs .dijitTab {
|
2013-03-18 07:26:24 +01:00
|
|
|
/* unselected (and not hovered/pressed) tab */
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
left: 1px;
|
|
|
|
/* used for overlap */
|
|
|
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
padding: 3px 8px 4px 4px;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: url("images/tabLeftUnselected.png");
|
2011-11-08 17:40:44 +01:00
|
|
|
background-repeat: repeat-y;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: -moz-linear-gradient(left, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(left, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(left, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(left, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
/* selected tab */
|
|
|
|
.claro .dijitTabContainerLeft-tabs .dijitTabChecked {
|
|
|
|
border-right-width: 0;
|
2011-11-08 17:40:44 +01:00
|
|
|
padding-right: 9px;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: url("images/tabLeftSelected.png");
|
|
|
|
background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: linear-gradient(left, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: -1px 0 2px rgba(0, 0, 0, 0.05);
|
|
|
|
-moz-box-shadow: -1px 0 2px rgba(0, 0, 0, 0.05);
|
|
|
|
box-shadow: -1px 0 2px rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
/** end left tab **/
|
|
|
|
/*************** right tab ***************/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerRight-tabs .dijitTab {
|
2013-03-18 07:26:24 +01:00
|
|
|
/* unselected (and not hovered/pressed) tab */
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
left: -1px;
|
|
|
|
/* used for overlap */
|
|
|
|
|
|
|
|
margin-bottom: 1px;
|
|
|
|
padding: 3px 8px 4px 4px;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: url("images/tabRightUnselected.png");
|
2011-11-08 17:40:44 +01:00
|
|
|
background-repeat: repeat-y;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-position: right;
|
|
|
|
background-image: -moz-linear-gradient(right, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(right, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(right, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(right, #ffffff 0px, #ffffff 1px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.6) 7px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
}
|
|
|
|
.claro .dijitTabContainerRight-tabs .dijitTabChecked {
|
|
|
|
/* selected tab */
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
padding-left: 5px;
|
2013-03-18 07:26:24 +01:00
|
|
|
border-left-width: 0;
|
|
|
|
background-image: url("images/tabRightSelected.png");
|
|
|
|
background-image: -moz-linear-gradient(right, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
|
|
|
background-image: linear-gradient(right, rgba(255, 255, 255, 0.5) 0px, #ffffff 30px);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.07);
|
|
|
|
-moz-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.07);
|
|
|
|
box-shadow: 1px 0 2px rgba(0, 0, 0, 0.07);
|
|
|
|
}
|
|
|
|
/** end right tab **/
|
|
|
|
/** round corner **/
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTop-tabs .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
-moz-border-radius: 2px 2px 0 0;
|
|
|
|
border-radius: 2px 2px 0 0;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerBottom-tabs .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
-moz-border-radius: 0 0 2px 2px;
|
|
|
|
border-radius: 0 0 2px 2px;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerLeft-tabs .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
-moz-border-radius: 2px 0 0 2px;
|
|
|
|
border-radius: 2px 0 0 2px;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerRight-tabs .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
-moz-border-radius: 0 2px 2px 0;
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
}
|
|
|
|
/************ left/right scroll buttons + menu button ************/
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .tabStripButton {
|
2012-08-14 16:59:10 +02:00
|
|
|
background-color: #e5f2fe;
|
2011-11-08 17:40:44 +01:00
|
|
|
border: 1px solid #b5bcc7;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabListContainer-top .tabStripButton {
|
2011-11-08 17:40:44 +01:00
|
|
|
padding: 4px 3px;
|
|
|
|
margin-top: 7px;
|
2013-03-18 07:26:24 +01:00
|
|
|
background-image: -moz-linear-gradient(top, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(top, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(top, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(top, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabListContainer-bottom .tabStripButton {
|
2013-03-18 07:26:24 +01:00
|
|
|
padding: 4px 3px;
|
|
|
|
margin-bottom: 7px;
|
|
|
|
background-image: -moz-linear-gradient(bottom, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(bottom, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: -o-linear-gradient(bottom, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
|
|
|
background-image: linear-gradient(bottom, #ffffff 0px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.6) 6px, rgba(255, 255, 255, 0) 100%);
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonHover {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: #abd6ff;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonActive {
|
2012-08-14 16:59:10 +02:00
|
|
|
background-color: #7dbdfa;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabStripIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: url("../form/images/buttonArrows.png") no-repeat -75px 50%;
|
|
|
|
background-color: transparent;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
.claro .dijitTabStripSlideRightIcon {
|
|
|
|
background-position: -24px 50%;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabStripMenuIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -51px 50%;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
/*disabled styles for tab strip buttons*/
|
|
|
|
.claro .dijitTabListContainer-top .tabStripButtonDisabled, .claro .dijitTabListContainer-bottom .tabStripButtonDisabled {
|
|
|
|
background-color: #d3d3d3;
|
|
|
|
border: 1px solid #b5bcc7;
|
|
|
|
/* to match border of TabContainer itself */
|
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripSlideLeftIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -175px 50%;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripSlideRightIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -124px 50%;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripMenuIcon {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-position: -151px 50%;
|
|
|
|
}
|
|
|
|
/* Nested Tabs */
|
2010-11-15 08:39:52 +01:00
|
|
|
.claro .dijitTabContainerNested .dijitTabListWrapper {
|
2011-11-08 17:40:44 +01:00
|
|
|
height: auto;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabContainerNested .dijitTabContainerTop-tabs {
|
2011-11-08 17:40:44 +01:00
|
|
|
border-bottom: solid 1px #b5bcc7;
|
2013-03-18 07:26:24 +01:00
|
|
|
padding: 2px 2px 4px;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
background: rgba(255, 255, 255, 0) none repeat scroll 0 0;
|
|
|
|
border: none;
|
|
|
|
padding: 4px;
|
|
|
|
border-color: rgba(118, 157, 192, 0);
|
|
|
|
-webkit-transition-property: background-color, border-color;
|
|
|
|
-moz-transition-property: background-color, border-color;
|
|
|
|
transition-property: background-color, border-color;
|
|
|
|
-webkit-transition-duration: 0.3s;
|
|
|
|
-moz-transition-duration: 0.3s;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
-moz-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTab {
|
2011-11-08 17:40:44 +01:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
top: 0;
|
|
|
|
/* to override top: 1px/-1px for normal tabs */
|
|
|
|
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabHover {
|
2012-08-14 16:59:10 +02:00
|
|
|
background-color: #e5f2fe;
|
2011-11-08 17:40:44 +01:00
|
|
|
border: solid 1px #cfe5fa;
|
|
|
|
padding: 3px;
|
|
|
|
-webkit-transition-duration: 0.2s;
|
|
|
|
-moz-transition-duration: 0.2s;
|
|
|
|
transition-duration: 0.2s;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabHover .tabLabel {
|
2011-11-08 17:40:44 +01:00
|
|
|
text-decoration: none;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabActive {
|
2012-08-14 16:59:10 +02:00
|
|
|
border: solid 1px #759dc0;
|
2011-11-08 17:40:44 +01:00
|
|
|
padding: 3px;
|
2013-03-18 07:26:24 +01:00
|
|
|
background: #abd6ff url("images/tabNested.png") repeat-x;
|
|
|
|
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.61) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0.61) 100%);
|
|
|
|
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.61) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0.61) 100%);
|
|
|
|
background-image: -o-linear-gradient(rgba(255, 255, 255, 0.61) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0.61) 100%);
|
|
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.61) 0%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0.61) 100%);
|
2011-11-08 17:40:44 +01:00
|
|
|
-webkit-transition-duration: 0.1s;
|
|
|
|
-moz-transition-duration: 0.1s;
|
|
|
|
transition-duration: 0.1s;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabChecked {
|
2011-11-08 17:40:44 +01:00
|
|
|
padding: 3px;
|
2012-08-14 16:59:10 +02:00
|
|
|
border: solid 1px #759dc0;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: #cfe5fa;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabChecked .tabLabel {
|
2011-11-08 17:40:44 +01:00
|
|
|
text-decoration: none;
|
|
|
|
background-image: none;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabPaneWrapperNested {
|
2011-11-08 17:40:44 +01:00
|
|
|
border: none;
|
|
|
|
/* prevent double border */
|
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTab, .claro .tabStripButton {
|
|
|
|
_background-image: none !important;
|
2010-11-15 08:39:52 +01:00
|
|
|
}
|