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

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

Issue 8479042: UI polish for certificate viewer (Closed) Base URL: /usr/local/google/home/bshe/NoTouchChromium/../TouchChromium/src/@trunk
Patch Set: Add x button and remove padding and close button for certificate viewer. Created 9 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 /* Using 100% width within body should exclude margins. */ 1 /* Using 100% width within body should exclude margins. */
2 body { 2 body {
3 bottom: 0; 3 bottom: 0;
4 left: 0; 4 left: 0;
5 position: absolute; 5 position: absolute;
6 right: 0; 6 right: 0;
7 top: 0; 7 top: 0;
8 margin: 8px 0 0 0;
8 } 9 }
9 10
10 .title { 11 .title {
11 display: inline-block; 12 display: inline-block;
12 font-weight: bold; 13 font-weight: bold;
13 padding-bottom: 2px; 14 padding-bottom: 2px;
14 padding-top: 15px; 15 padding-top: 15px;
15 } 16 }
16 17
17 #tabbox { 18 #tabbox {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 white-space: nowrap; 50 white-space: nowrap;
50 } 51 }
51 52
52 .value { 53 .value {
53 display: table-cell; 54 display: table-cell;
54 white-space: pre-wrap; 55 white-space: pre-wrap;
55 } 56 }
56 57
57 .controls { 58 .controls {
58 text-align: end; 59 text-align: end;
59 } 60 }
flackr 2011/11/10 16:03:16 Remove this, no longer used.
bshe 2011/11/21 16:09:37 Done.
60 61
61 /* Used so that 100% width within tabpanel will correspond to usable space. */ 62 /* Used so that 100% width within tabpanel will correspond to usable space. */
62 tabpanel { 63 tabpanel {
63 position: relative; 64 position: relative;
64 } 65 }
65 66
66 .vertical-box { 67 .vertical-box {
67 -webkit-box-align: stretch; 68 -webkit-box-align: stretch;
68 -webkit-box-orient: vertical; 69 -webkit-box-orient: vertical;
69 -webkit-box-pack: start; 70 -webkit-box-pack: start;
(...skipping 13 matching lines...) Expand all
83 top: 20%; 84 top: 20%;
84 } 85 }
85 86
86 #cert-field-value-section { 87 #cert-field-value-section {
87 bottom: 0; 88 bottom: 0;
88 height: 30%; 89 height: 30%;
89 } 90 }
90 91
91 .section-contents { 92 .section-contents {
92 -webkit-box-flex: 1; 93 -webkit-box-flex: 1;
93 border: 1px solid black; 94 border: 1px solid #9e9e9e;
94 /* Scrolling should be enabled on all tree views and value field. */ 95 /* Scrolling should be enabled on all tree views and value field. */
95 overflow: auto; 96 overflow: auto;
96 } 97 }
98
99 #export {
100 -webkit-margin-start: 1px;
101 margin-top: 5px;
102 margin-bottom: 10px;
103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698