mirror of
https://github.com/ansible/awx.git
synced 2026-02-21 05:00:07 -03:30
29 lines
505 B
Plaintext
29 lines
505 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, 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;
|
|
}
|
|
|