/* Global layout styles for TFS */
/* Colors used specifically in TFS */
.ci-editor-host {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Reset style spill-over from Core.css */
  /* Override the default Monaco themed line number colors to meet A11y 4.5:1 contrast requirements.
       'vs' change from teal #4191AD (3.6:1) to light gray #737373 (4.7:1) (Same as Code hub).
       'vs-dark' change from dark gray #5A5A5A (2.4:1) to light gray #A19F9D (6.3:1). */ }
  .ci-editor-host .monaco-menu .icon {
    display: inherit;
    width: inherit;
    height: inherit;
    overflow: inherit;
    vertical-align: inherit; }
  .ci-editor-host .monaco-editor.vs .line-numbers {
    color: rgba(0, 0, 0, .55);
    color: var(--text-secondary-color,rgba(0, 0, 0, .55)); }
  .ci-editor-host .monaco-editor.vs-dark .line-numbers {
    color: rgba( 102, 102, 102 ,  1 );
    color: rgba( var(--palette-neutral-60,102, 102, 102) ,  1 ); }
  .ci-editor-host.ci-show-error {
    height: calc(100% - 80px - 10px); }
