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

Side by Side Diff: chrome/browser/resources/feedback/css/feedback.css

Issue 23503032: Fix some feedback UI polish. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5
6 html { 6 html {
7 height: 100%; 7 height: 100%;
8 } 8 }
9 9
10 body { 10 body {
11 background-color: #fbfbfb;
11 height: 100%; 12 height: 100%;
12 margin: 0; 13 margin: 0;
13 padding: 0; 14 padding: 0;
14 width: 100%; 15 width: 100%;
15 } 16 }
16 17
17 .title-bar { 18 .title-bar {
18 -webkit-align-items: center; 19 -webkit-align-items: center;
20 -webkit-app-region: drag;
19 background-color: #fff; 21 background-color: #fff;
20 box-shadow: 0 1px #d0d0d0; 22 box-shadow: 0 1px #d0d0d0;
21 color: rgb(80, 80, 82); 23 color: rgb(80, 80, 82);
22 display: -webkit-flex; 24 display: -webkit-flex;
23 font-size: 15px; 25 font-size: 15px;
24 height: 48px; 26 height: 48px;
25 } 27 }
26 28
27 .title-bar #page-title { 29 .title-bar #page-title {
28 -webkit-app-region: drag;
29 -webkit-flex: 1 1 auto; 30 -webkit-flex: 1 1 auto;
30 -webkit-margin-start: 20px; 31 -webkit-margin-start: 20px;
31 } 32 }
32 33
33 .title-bar .button-bar { 34 .title-bar .button-bar {
34 -webkit-flex: 0 1 auto; 35 -webkit-flex: 0 1 auto;
35 } 36 }
36 37
37 .content { 38 .content {
38 background-color: #fbfbfb;
39 color: #646464; 39 color: #646464;
40 font-size: 12px; 40 font-size: 12px;
41 margin: 20px; 41 margin: 20px;
42 } 42 }
43 43
44 .content #description-text { 44 .content #description-text {
45 border-color: #c8c8c8; 45 border-color: #c8c8c8;
46 box-sizing: border-box; 46 box-sizing: border-box;
47 height: 120px; 47 height: 120px;
48 line-height: 18px; 48 line-height: 18px;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 button.white-button { 129 button.white-button {
130 -webkit-margin-end: 10px; 130 -webkit-margin-end: 10px;
131 color: #000; 131 color: #000;
132 } 132 }
133 133
134 button.blue-button { 134 button.blue-button {
135 color: #fff; 135 color: #fff;
136 text-shadow: 1px sharp drop shadow rgb(45, 106, 218); 136 text-shadow: 1px sharp drop shadow rgb(45, 106, 218);
137 } 137 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698