/*
 * ************************************************
 *  Main ullright styles for normal webbrowsers 
 *  ("non-mobile") 
 * ************************************************
 */

/*@import "common.css";*/
@import "main_multi_format.css";

/*
 * ************************************************
 *  edit action
 * ************************************************
 */

.edit_table td.label_column {
  min-width: 10em;
  width: 10em;
}

/* ckeditor4 tweaks*/

.cke_chrome {
  border: 0 !important;
  padding: 0 !important;
}

.cke_inner{
  padding: 0 !important;
  background: none !important;
}

.cke_bottom {
  position: relative !important;
  height: 11px !important;
}

.cke_resizer {
  margin-top: 0 !important;
  /* margin-left: 0 !important; */
  float: none !important;
  position: absolute !important;
  bottom: 0;
  right: 0;
  z-index: 10000000;
  width: 12px !important;;
  height: 12px !important;
  background-image: url("/ullCorePlugin/images/ckeditor4_resize.png") !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
}

/*
 * ************************************************
 *  ullGenerator
 * ************************************************
 */


.edit_container, #tc_wrapper {
  max-width: 780px;
}


/* Fix edit action buttons at the bottom of the viewport.
   But not for forms in overlays */
.action_edit #ull_tabletool_form .edit_action_buttons
{
  position: fixed;
  bottom: 0;
  height: 8em;
  width: 720px;
  border: 2px solid silver;
  border-bottom: none;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  box-shadow: 2px 2px 12px #666;
  overflow: auto;
  z-index: 500;
}

/* But not for overlays */
#ull_tabletool_form .content_element_form .edit_action_buttons {
  position: inherit;
  bottom: inherit;
  border: inherit;
  width: inherit;
  height: inherit;
  box-shadow: inherit;
  overflow: inherit;
  z-index: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* And not for low height displays (because of "max-height" not in main_responsive.css */
@media (max-height: 768px) {
  .action_edit #ull_tabletool_form .edit_action_buttons {
    position: inherit;
    bottom: inherit;
    border: inherit;
    width: inherit;
    height: inherit;
    box-shadow: inherit;
    /* overflow: inherit; */
    z-index: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/*
 * ************************************************
 *  IE PNG Fix (http://www.twinhelix.com/css/iepngfix/demo/)
 * ************************************************
 */
 
img, div { 
  behavior: url(/ullCorePlugin/css/ie_png_fix/iepngfix.htc); 
}
 
/*
 * ************************************************
 *  Printout settings
 * ************************************************
 */
 
@media print {
	
	body {
	 font-size: 100%;
	}
	
	/* Otherwise all input tags are HUGE in Firefox (3.0.13) */
	input, select, textarea {
	  font-size: 1em;
	}
  
  /* a quick note:
    jQuery (which we use for showing/hiding the sidebar) modifies the display-
    attribute using inline styles. We use !important so the browser overrides
    these styles with the ones here when printing 
  */
  
  #sidebar {
    display: none !important;
  }
  
  #sidebar_tab {
    display: none;
  }
  
  #canvas {
    margin-left: 0;
    display: inline !important;
  }
  
  #nav_top {
    display: none;
  }
  
  .pager_left .paging_hint {
    display: none;
  }
  
  th {
    border-top: 1px double black;
    border-bottom: 1px double black;
  }
  
  td {
    border-bottom: 1px dotted grey;
    padding-top: .1em !important;
    padding-bottom: .1em !important;
  }
  
  .list_action_buttons {
    display: none;
  }
  
  .ull_filter_icon {
    display: none;
  }
  
  .no_print {
    display: none;
  }
  
}
 
