mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 21:49:27 -02:30
27 lines
494 B
Plaintext
27 lines
494 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
* Overrides to angular-codemirror
|
|
*
|
|
*
|
|
*/
|
|
|
|
.CodeMirror {
|
|
height: auto;
|
|
overflow-x: scroll;
|
|
overflow-y: hidden;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.CodeMirror-activeline-background {
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
/* Make sure code editor dialog is always at top of stack */
|
|
[aria-describedby=af-code-editor-modal].ui-front {
|
|
z-index: 2050;
|
|
}
|
|
|
|
.CodeMirror-lint-tooltip {
|
|
z-index: 2060;
|
|
}
|