| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 .insertion-point-main{ |
| 7 flex-direction: column; |
| 8 display: flex; |
| 9 } |
| 10 |
| 11 .insertion-point-sidebar { |
| 12 overflow: auto; |
| 13 } |
| 14 .editor-container{ |
| 15 flex: 1; |
| 16 } |
| 17 |
| 18 :focus.selected { |
| 19 background-color: rgb(56, 121, 217); |
| 20 color: #FFF; |
| 21 } |
| 22 |
| 23 .CodeMirror-lines:not(:active) { |
| 24 cursor: default !important; |
| 25 } |
| 26 |
| 27 .CodeMirror-line:hover { |
| 28 cursor: default !important; |
| 29 background-color: rgba(0,0,255,0.05); |
| 30 } |
| 31 |
| 32 .CodeMirror .CodeMirror-linebackground.spacer { |
| 33 text-align: center; |
| 34 color: rgba(0, 0, 0, 0.5); |
| 35 background-color: rgba(0, 0, 255, 0.1); |
| 36 } |
| 37 |
| 38 .CodeMirror .equal > span > span { |
| 39 opacity: .5; |
| 40 } |
| 41 |
| 42 .CodeMirror .CodeMirror-selectedtext:not(.CodeMirror-persist-highlight) { |
| 43 opacity: 1.0; |
| 44 } |
| 45 |
| 46 .CodeMirror .CodeMirror-linebackground.addition, -theme-preserve { |
| 47 background-color: hsla(144, 55%, 49%, .2); |
| 48 } |
| 49 |
| 50 .CodeMirror .CodeMirror-linebackground.deletion, -theme-preserve { |
| 51 background-color: rgba(255, 0, 0, .2); |
| 52 } |
| 53 |
| 54 .CodeMirror .addition .cm-inner-diff:not(.CodeMirror-selectedtext), -theme-prese
rve { |
| 55 background-color: hsla(144, 55%, 49%, .3); |
| 56 } |
| 57 |
| 58 .CodeMirror .deletion .cm-inner-diff:not(.CodeMirror-selectedtext), -theme-prese
rve { |
| 59 background-color: rgba(255, 0, 0, .3); |
| 60 } |
| 61 |
| 62 .changes-toolbar { |
| 63 background-color: #f3f3f3; |
| 64 border-top: 1px solid #dadada; |
| 65 } |
| OLD | NEW |