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
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import "../variables";
|
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
.unselected-tab-gradient (@direction) {
|
|
|
|
// white line, dark line, then fade from light to dark
|
|
|
|
.alpha-white-gradient (@direction, 1,0px, 1,1px, 0.1,2px, 0.6,7px, 0,100%);
|
|
|
|
}
|
|
|
|
.topBottom-selected-tab-gradient (@direction) {
|
|
|
|
.alpha-white-gradient (@direction, 1,0px, 1,1px, 0,2px, 1,7px); // white line, blue line, remainder white
|
|
|
|
}
|
2011-11-08 17:40:44 +01:00
|
|
|
/*** some common features ***/
|
|
|
|
.claro .dijitTabPaneWrapper {
|
|
|
|
background:@pane-background-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabPaneWrapper,
|
|
|
|
.claro .dijitTabContainerTop-tabs,
|
|
|
|
.claro .dijitTabContainerBottom-tabs,
|
|
|
|
.claro .dijitTabContainerLeft-tabs,
|
|
|
|
.claro .dijitTabContainerRight-tabs {
|
|
|
|
/* todo: add common class name for this div */
|
|
|
|
border-color: @border-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButton {
|
2012-08-14 16:59:10 +02:00
|
|
|
background: url("../@{image-layout-tab-close}") no-repeat;
|
2011-11-08 17:40:44 +01:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right:-5px;
|
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButtonHover {
|
|
|
|
background-position:-14px;
|
|
|
|
}
|
|
|
|
.claro .dijitTabCloseButtonActive {
|
|
|
|
background-position:-28px;
|
|
|
|
}
|
|
|
|
.claro .dijitTabSpacer {
|
|
|
|
/* set the spacer invisible. note that height:0 doesn't work on IE/quirks, it's still 10px. */
|
|
|
|
display: none;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTab {
|
|
|
|
border: 1px solid @border-color;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color:@unselected-background-color;
|
|
|
|
.transition-property(background-color, border);
|
|
|
|
.transition-duration(.35s);
|
|
|
|
color:@unselected-text-color;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabHover {
|
|
|
|
border-color: @hovered-border-color;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color:@hovered-background-color;
|
|
|
|
.transition-duration(.25s);
|
|
|
|
color:@hovered-text-color;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabActive {
|
|
|
|
border-color: @pressed-border-color;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color:@pressed-background-color;
|
|
|
|
color:@selected-text-color;
|
|
|
|
.transition-duration(.1s);
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabChecked {
|
|
|
|
// selected tab
|
2011-11-08 17:40:44 +01:00
|
|
|
border-color: @border-color; // don't use @selected-border-color because need to match border of TabContainer
|
2013-03-18 07:26:24 +01:00
|
|
|
background-color: @selected-background-color;
|
|
|
|
color: @selected-text-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabDisabled {
|
|
|
|
background-color: @tab-disabled-background-color;
|
2011-11-08 17:40:44 +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;
|
|
|
|
}
|
|
|
|
/*** end common ***/
|
|
|
|
|
|
|
|
|
|
|
|
/*************** top tab ***************/
|
|
|
|
.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
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
background-image: url("images/tabTopUnselected.png");
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
.unselected-tab-gradient(top);
|
|
|
|
|
|
|
|
.box-shadow(0 -1px 1px rgba(0, 0, 0, 0.04));
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
|
|
|
|
.claro .dijitTabContainerTop-tabs .dijitTabChecked {
|
|
|
|
/* selected tab */
|
2011-11-08 17:40:44 +01:00
|
|
|
padding-bottom: 4px;
|
2013-03-18 07:26:24 +01:00
|
|
|
padding-top: 9px;
|
2011-11-08 17:40:44 +01:00
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
background-image: url("images/tabTopSelected.png");
|
|
|
|
.topBottom-selected-tab-gradient (top);
|
2011-11-08 17:40:44 +01:00
|
|
|
|
|
|
|
.box-shadow(0 -1px 2px rgba(0, 0, 0, 0.05));
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
/** end top tab **/
|
|
|
|
|
|
|
|
|
|
|
|
/*************** bottom tab ***************/
|
|
|
|
.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
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
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;
|
|
|
|
.unselected-tab-gradient(bottom);
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
.box-shadow(0 1px 1px rgba(0, 0, 0, 0.04));
|
|
|
|
}
|
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
/* selected tab */
|
2011-11-08 17:40:44 +01:00
|
|
|
.claro .dijitTabContainerBottom-tabs .dijitTabChecked {
|
2013-03-18 07:26:24 +01:00
|
|
|
padding-bottom: 9px;
|
|
|
|
padding-top: 4px;
|
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
background-image: url("images/tabBottomSelected.png");
|
|
|
|
.topBottom-selected-tab-gradient (bottom);
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
.box-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
|
|
|
|
}
|
|
|
|
/** end bottom tab **/
|
|
|
|
|
|
|
|
/*************** left tab ***************/
|
|
|
|
.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
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
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
|
|
|
.unselected-tab-gradient(left);
|
2011-11-08 17:40:44 +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
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
background-image: url("images/tabLeftSelected.png");
|
|
|
|
.alpha-white-gradient (left, 0.5,0px, 1,30px); // 1/2 inch blue gradient, remainder white
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
.box-shadow(-1px 0 2px rgba(0, 0, 0, .05));
|
|
|
|
}
|
|
|
|
/** end left tab **/
|
|
|
|
|
|
|
|
/*************** right tab ***************/
|
|
|
|
.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
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
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;
|
|
|
|
.unselected-tab-gradient(right);
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.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;
|
|
|
|
|
|
|
|
// gradient (CSS gradient, with backup image for IE6-9)
|
|
|
|
background-image: url("images/tabRightSelected.png");
|
|
|
|
.alpha-white-gradient (right, 0.5,0px, 1,30px); // 1/2 inch blue gradient, remainder white
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
.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
|
|
|
.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
|
|
|
.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
|
|
|
.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
|
|
|
.border-radius(0 2px 2px 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************ left/right scroll buttons + menu button ************/
|
|
|
|
.claro .tabStripButton {
|
|
|
|
background-color:@button-background-color;
|
|
|
|
border: 1px solid @border-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabListContainer-top .tabStripButton {
|
|
|
|
padding: 4px 3px;
|
|
|
|
margin-top:7px;
|
2013-03-18 07:26:24 +01:00
|
|
|
.alpha-white-gradient (top, 1,0px, 0.1,1px, 0.6,6px, 0,100%); // to match unselected tab, but had to tweak numbers
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|
|
|
|
.claro .dijitTabListContainer-bottom .tabStripButton {
|
2013-03-18 07:26:24 +01:00
|
|
|
padding:4px 3px;
|
|
|
|
margin-bottom:7px;
|
|
|
|
.alpha-white-gradient (bottom, 1,0px, 0.1,1px, 0.6,6px, 0,100%); // to match unselected tab, but had to tweak numbers
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|
|
|
|
.claro .tabStripButtonHover {
|
|
|
|
background-color:@hovered-background-color;
|
|
|
|
}
|
|
|
|
.claro .tabStripButtonActive {
|
|
|
|
background-color:@pressed-background-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabStripIcon {
|
|
|
|
height:15px;
|
|
|
|
width:15px;
|
|
|
|
margin: 0 auto;
|
2012-08-14 16:59:10 +02:00
|
|
|
background:url("../@{image-form-button-arrows}") no-repeat -75px 50%;
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.claro .dijitTabStripSlideRightIcon{
|
|
|
|
background-position: -24px 50%;
|
|
|
|
}
|
|
|
|
.claro .dijitTabStripMenuIcon {
|
|
|
|
background-position: -51px 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*disabled styles for tab strip buttons*/
|
|
|
|
.claro .dijitTabListContainer-top .tabStripButtonDisabled,
|
|
|
|
.claro .dijitTabListContainer-bottom .tabStripButtonDisabled {
|
|
|
|
background-color:@tab-disabled-background-color;
|
|
|
|
border:1px solid @border-color; /* to match border of TabContainer itself */
|
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripSlideLeftIcon {
|
|
|
|
background-position:-175px 50%;
|
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripSlideRightIcon {
|
|
|
|
background-position: -124px 50%;
|
|
|
|
}
|
|
|
|
.claro .tabStripButtonDisabled .dijitTabStripMenuIcon {
|
|
|
|
background-position: -151px 50%;
|
|
|
|
}
|
|
|
|
/* Nested Tabs */
|
|
|
|
.claro .dijitTabContainerNested .dijitTabListWrapper {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.claro .dijitTabContainerNested .dijitTabContainerTop-tabs {
|
|
|
|
border-bottom:solid 1px @border-color;
|
2013-03-18 07:26:24 +01:00
|
|
|
padding:2px 2px 4px;
|
2011-11-08 17:40:44 +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);
|
|
|
|
.transition-property(background-color, border-color);
|
|
|
|
.transition-duration(.3s);
|
|
|
|
.border-radius(2px);
|
|
|
|
}
|
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 */
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabHover {
|
2011-11-08 17:40:44 +01:00
|
|
|
background-color: @nestedtab-hovered-background-color;
|
|
|
|
border:solid 1px @nestedtab-hovered-border-color;
|
2013-03-18 07:26:24 +01:00
|
|
|
padding: 3px; // 4px above padding - 1px compensation for border
|
2011-11-08 17:40:44 +01:00
|
|
|
.transition-duration(.2s);
|
|
|
|
}
|
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabHover .tabLabel {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabActive {
|
2011-11-08 17:40:44 +01:00
|
|
|
border:solid 1px @nestedtab-selected-border-color;
|
|
|
|
padding: 3px;
|
2013-03-18 07:26:24 +01:00
|
|
|
|
|
|
|
// CSS gradient with fallback to image for IE
|
|
|
|
// this is in a weird place, only for active state; mailed Jason about it
|
|
|
|
background: @nestedtab-selected-background-color url("images/tabNested.png") repeat-x;
|
|
|
|
.alpha-white-gradient (0.61,0%, 0,17%, 0,83%, 0.61,100%);
|
|
|
|
|
2011-11-08 17:40:44 +01:00
|
|
|
.transition-duration(.1s);
|
|
|
|
}
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabChecked {
|
2011-11-08 17:40:44 +01:00
|
|
|
padding: 3px;
|
|
|
|
border:solid 1px @selected-border-color;
|
|
|
|
background-color:@selected-background-color;
|
|
|
|
}
|
|
|
|
.claro .dijitTabContainerTabListNested .dijitTabChecked .tabLabel {
|
|
|
|
text-decoration: none;
|
|
|
|
background-image:none;
|
|
|
|
}
|
|
|
|
.claro .dijitTabPaneWrapperNested {
|
|
|
|
border: none;/* prevent double border */
|
|
|
|
}
|
|
|
|
|
2013-03-18 07:26:24 +01:00
|
|
|
.claro .dijitTab,
|
|
|
|
.claro .tabStripButton {
|
|
|
|
// IE6 can't handle background-image and background-color on same node
|
|
|
|
_background-image: none !important;
|
2011-11-08 17:40:44 +01:00
|
|
|
}
|