mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 17:51:06 -03:30
Merge pull request #7091 from marshmalien/fix/removeExtraCodeMirrorScrollbar
Hide CodeMirror native scrollbar
This commit is contained in:
@@ -41,7 +41,6 @@
|
||||
textarea[disabled="disabled"] + div[id*="-container"]{
|
||||
.CodeMirror {
|
||||
cursor: not-allowed;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.CodeMirror.cm-s-default,
|
||||
@@ -66,10 +65,4 @@ textarea[disabled="disabled"] + div[id*="-container"]{
|
||||
.CodeMirror-cursors {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.CodeMirror.cm-s-default {
|
||||
min-height: initial !important;
|
||||
max-height: initial !important;
|
||||
height: initial !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,8 @@ export default
|
||||
"styleActiveLine": true,
|
||||
"lineNumbers": true,
|
||||
"gutters": ["CodeMirror-lint-markers"],
|
||||
"lint": true
|
||||
"lint": true,
|
||||
"scrollbarStyle": null
|
||||
},
|
||||
"json": {
|
||||
"mode": "application/json",
|
||||
@@ -32,7 +33,8 @@ export default
|
||||
"autoCloseBrackets": true,
|
||||
"lineNumbers": true,
|
||||
"gutters": ["CodeMirror-lint-markers"],
|
||||
"lint": true
|
||||
"lint": true,
|
||||
"scrollbarStyle": null
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user