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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/serviceWorkersView.css

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: fixed comments Created 4 years 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
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .service-worker-error-stack { 7 .service-worker-error-stack {
8 max-height: 200px; 8 max-height: 200px;
9 overflow: auto; 9 overflow: auto;
10 display: flex; 10 display: flex;
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 24
25 .service-worker-error-stack > div:not(:last-child) { 25 .service-worker-error-stack > div:not(:last-child) {
26 border-bottom: 1px solid #ffd7d7; 26 border-bottom: 1px solid #ffd7d7;
27 } 27 }
28 28
29 .service-worker-error-stack label { 29 .service-worker-error-stack label {
30 flex: auto; 30 flex: auto;
31 } 31 }
32 32
33 .service-worker-error-stack a { 33 .service-worker-error-stack .devtools-link {
34 float: right; 34 float: right;
35 color: rgb(33%, 33%, 33%); 35 color: rgb(33%, 33%, 33%);
36 cursor: pointer; 36 cursor: pointer;
37 } 37 }
38 38
39 .service-worker-version-stack { 39 .service-worker-version-stack {
40 position: relative; 40 position: relative;
41 } 41 }
42 42
43 .service-worker-version-stack-bar { 43 .service-worker-version-stack-bar {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 .service-worker-subtitle { 82 .service-worker-subtitle {
83 padding-left: 14px; 83 padding-left: 14px;
84 line-height: 14px; 84 line-height: 14px;
85 color: #888; 85 color: #888;
86 } 86 }
87 87
88 .link { 88 .link {
89 margin-left: 10px; 89 margin-left: 10px;
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698