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

Side by Side Diff: go-back-with-backspace/pages/popup.css

Issue 2400303003: Update UI and catch executeScript errors now shown in Canary (Closed)
Patch Set: Fix global-replace bug Created 4 years, 1 month 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 2016 Google Inc. All rights reserved. 2 * Copyright 2016 Google Inc. 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 body { 7 body {
8 direction: __MSG_@@bidi_dir__; 8 direction: __MSG_@@bidi_dir__;
9 width: 300px; 9 width: 270px;
10 text-align: center;
11 margin: 0;
10 } 12 }
11 13
12 #list_edit_button, #messages { 14 h1 {
15 margin-__MSG_@@bidi_start_edge__: 8px;
16 margin-top: 4px;
17 font-size: 17px;
18 text-align: left;
19 }
20
21 .bottom-bar {
22 align-items: center;
23 background-color: #f1f1f1;
24 border-top: 1px solid #ccc;
25 height: 33px;
26 padding: 0 5px;
27 margin-top: 2px;
28 }
29
30 .bottom-bar > span {
31 padding-top: 5px;
32 }
33
34 .button-image {
35 cursor: pointer;
36 outline: none;
37 background-position: center;
38 background-repeat: no-repeat;
39 background-size: 20px 20px;
40 opacity: .54;
41 height: 24px;
42 width: 24px;
43 }
44
45 #list-edit-button {
46 height: 30px;
47 line-height: 30px;
48 background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
49 border: 1px solid #3079ed;
50 border-radius: 2px;
51 color: white;
52 display: inline-block;
53 font-size: 13px;
54 padding: 0 8px 0 8px;
13 margin-bottom: 10px; 55 margin-bottom: 10px;
14 } 56 }
15 57
16 #list_edit_button { 58 #list-edit-button:hover:enabled {
17 margin-top: 10px; 59 background-image: -webkit-linear-gradient(top, #4d90fe ,#357ae8);
60 border: 1px solid #2f5bb7;
18 } 61 }
19 62
20 #current_url { 63 #list-edit-button:disabled {
21 text-overflow: ellipsis; 64 opacity: 0.5;
22 white-space: nowrap; 65 }
23 overflow: hidden; 66
67 #file-url-message {
68 margin-bottom: 5px;
24 } 69 }
25 70
26 #status { 71 #status {
27 color: green; 72 color: green;
73 line-height: 33px;
28 } 74 }
29 75
30 #status.error { 76 #status.error {
31 color: red; 77 color: red;
32 } 78 }
33 79
34 #report_page { 80 #feedback-button {
35 float: __MSG_@@bidi_start_edge__; 81 float: __MSG_@@bidi_start_edge__;
36 } 82 }
37 83
38 #open_options { 84 #options-button {
39 float: __MSG_@@bidi_end_edge__; 85 float: __MSG_@@bidi_end_edge__;
40 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698