| Index: third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css b/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| index b962b383740e7fb3eb1d159b99b65e31fd0f844c..18b0bf70dbf23089e37f5a1567fc9cb3a0339500 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| +++ b/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| @@ -206,6 +206,9 @@
|
| display: inline-block;
|
| vertical-align: top;
|
| margin-bottom: -30px;
|
| + /* Hack to make IE7 behave */
|
| + *zoom:1;
|
| + *display:inline;
|
| }
|
| .CodeMirror-gutter-wrapper {
|
| position: absolute;
|
| @@ -223,8 +226,11 @@
|
| cursor: default;
|
| z-index: 4;
|
| }
|
| -.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
| -.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
| +.CodeMirror-gutter-wrapper {
|
| + -webkit-user-select: none;
|
| + -moz-user-select: none;
|
| + user-select: none;
|
| +}
|
|
|
| .CodeMirror-lines {
|
| cursor: text;
|
| @@ -246,8 +252,8 @@
|
| position: relative;
|
| overflow: visible;
|
| -webkit-tap-highlight-color: transparent;
|
| - -webkit-font-variant-ligatures: contextual;
|
| - font-variant-ligatures: contextual;
|
| + -webkit-font-variant-ligatures: none;
|
| + font-variant-ligatures: none;
|
| }
|
| .CodeMirror-wrap pre {
|
| word-wrap: break-word;
|
| @@ -268,8 +274,6 @@
|
| }
|
|
|
| .CodeMirror-widget {}
|
| -
|
| -.CodeMirror-rtl pre { direction: rtl; }
|
|
|
| .CodeMirror-code {
|
| outline: none;
|
| @@ -323,6 +327,9 @@
|
| background: rgba(255, 255, 0, .4);
|
| }
|
|
|
| +/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
| +.CodeMirror span { *vertical-align: text-bottom; }
|
| +
|
| /* Used to force a border model for a node */
|
| .cm-force-border { padding-right: .1px; }
|
|
|
|
|