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

Side by Side Diff: chrome/browser/resources/options/reset_profile_settings_overlay.css

Issue 23450021: Profile Reset dialog: the new section with detailed feedback information (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ReplaceChars() Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #reset-profile-settings-overlay { 5 #reset-profile-settings-overlay {
6 width: 500px; 6 width: 500px;
7 } 7 }
8 8
9 #reset-profile-settings-content-area {
10 -webkit-box-flex: 0;
11 }
12
9 #reset-profile-settings-throbber { 13 #reset-profile-settings-throbber {
10 margin: 4px 10px; 14 margin: 4px 10px;
11 vertical-align: middle; 15 vertical-align: middle;
12 visibility: hidden; 16 visibility: hidden;
13 } 17 }
18
19 #feedback-bar {
20 -webkit-box-flex: 1;
21 -webkit-box-orient: vertical;
22 }
23
24 #feedback-template {
25 -webkit-box-flex: 1;
26 overflow-y: auto;
27 }
28
29 #feedback-template table {
30 table-layout: fixed;
31 width: 100%;
32 }
33
34 #feedback-template table td {
35 word-wrap: break-word;
36 }
37
38 #feedback-template .key {
39 padding-right: 5px;
40 text-align: right;
41 vertical-align: top;
42 }
43
44 #feedback-template .value {
45 color: #333;
46 text-align: left;
47 white-space: pre-line;
48 }
49
50 #expand-feedback {
51 background: center bottom no-repeat;
52 background-image: url('chrome://resources/images/question_mark.png');
53 display: inline-block;
54 height: 14px;
55 opacity: 0.33;
56 vertical-align: text-top;
57 width: 14px;
58 }
59
60 #expand-feedback:hover {
61 opacity: 1;
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698