/*
  IE specific CSS, use for both IE6, IE7 (and above ?).
  $Id$
 */

/* setting minimum width to action menus inside the displaytag tables */
.displaytag td .yuimenubar, .action-column-minwidth td .yuimenubar {
	width: 16px;
}
/* setting minimum width to action menu in actionMenuBar */
.actionMenuBar .yuimenubar {
	width: 5em;
}

/* fixes for doc tree/scm tree, they will have fix width on IE6/7 */
#treeContainerTable #left-panel {
	width: 240px;
}
#treeContainerTable #treeDivContainer {
	width: 240px;
}

/**
 * overriding positioning, to work around IE6/7's z-index bug.
 * instead of the broken positioning we just move the absolute positioned popup just below the field, see: ie_zindex_fixes.js
 */
.yui-multibox {
	position: static !important;
}
.chooseReferences, .yui-ac-container {
	z-index: 9050;
}

/* fixing ditchnet tabs:
	haslayout fix, so tabs won't get hidden if the won't fit to the current line
	also disabling wrap in the tabs if it is too wide
*/
.ditch-tab-wrap {
	height: 1% !important;
}

.ditch-tab {
	white-space: nowrap;
}

/**
 * Fixing z-index bug of IE on relative positioned elements
 */
.wikiNavigationBar {
	position: static;
}

/**
 * Because it is not possible to hide the borders of select html element with IE,
 * let's make their borders lighter to avoid ugly double borders
 */
.fieldsTable .dataCellContainsSelectbox {
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #DDDDCC;
	border-right: 1px solid #DDDDCC;
}
