Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/changes/changesView.css

Issue 2694923002: DevTools: Changes Drawer (Closed)
Patch Set: slightly better Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
7 .insertion-point-main{
8 position: relative;
9 display: flex;
10 flex-direction: column;
11 }
12
13 .code {
14 flex-grow: 1;
15 z-index: 0;
16 }
17
18 .CodeMirror .CodeMirror-linebackground.spacer {
19 text-align: center;
20 color: rgba(0,0,0,0.5);
21 background-color: rgba(0,0,255,0.1)
22 }
23
24 .CodeMirror .equal {
25 color: rgb(128, 128, 128);
26 }
27
28 .CodeMirror .CodeMirror-linebackground.addition {
29 background-color: hsla(144,55%,49%,.2);
30 }
31
32 .CodeMirror .CodeMirror-linebackground.deletion {
33 background-color: rgb(255, 221, 221);
34 }
35
36 .CodeMirror .addition .cm-double:not(.CodeMirror-selectedtext) {
37 background-color: hsla(144,55%,49%,.3);
38 }
39
40 .CodeMirror .deletion .cm-double:not(.CodeMirror-selectedtext) {
41 background-color: rgb(255, 187, 187);
42 }
43
44 .changes-toolbar {
45 display: flex;
46 flex: 0 0 27px;
47 background-color: #f3f3f3;
48 border-top: 1px solid #dadada;
49 overflow: hidden;
50 z-index: 1;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698