| 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 18b0bf70dbf23089e37f5a1567fc9cb3a0339500..b962b383740e7fb3eb1d159b99b65e31fd0f844c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| +++ b/third_party/WebKit/Source/devtools/front_end/cm/codemirror.css
|
| @@ -206,9 +206,6 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
| display: inline-block;
|
| vertical-align: top;
|
| margin-bottom: -30px;
|
| - /* Hack to make IE7 behave */
|
| - *zoom:1;
|
| - *display:inline;
|
| }
|
| .CodeMirror-gutter-wrapper {
|
| position: absolute;
|
| @@ -226,11 +223,8 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
| cursor: default;
|
| z-index: 4;
|
| }
|
| -.CodeMirror-gutter-wrapper {
|
| - -webkit-user-select: none;
|
| - -moz-user-select: none;
|
| - user-select: none;
|
| -}
|
| +.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
| +.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
|
|
| .CodeMirror-lines {
|
| cursor: text;
|
| @@ -252,8 +246,8 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
| position: relative;
|
| overflow: visible;
|
| -webkit-tap-highlight-color: transparent;
|
| - -webkit-font-variant-ligatures: none;
|
| - font-variant-ligatures: none;
|
| + -webkit-font-variant-ligatures: contextual;
|
| + font-variant-ligatures: contextual;
|
| }
|
| .CodeMirror-wrap pre {
|
| word-wrap: break-word;
|
| @@ -275,6 +269,8 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
|
|
| .CodeMirror-widget {}
|
|
|
| +.CodeMirror-rtl pre { direction: rtl; }
|
| +
|
| .CodeMirror-code {
|
| outline: none;
|
| }
|
| @@ -327,9 +323,6 @@ div.CodeMirror-dragcursors {
|
| 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; }
|
|
|
|
|