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

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

Issue 543983005: Add a dropdown to change the default content setting to the Website Settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased on https://codereview.chromium.org/547753004/ Created 6 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 #website-settings-page { 5 #website-settings-page {
6 min-height: 445px;
6 min-width: 540px; 7 min-width: 540px;
7 } 8 }
8 9
9 #website-settings-edit-page { 10 #website-settings-edit-page {
10 max-height: 445px; 11 max-height: 445px;
11 min-width: 540px; 12 min-width: 540px;
12 } 13 }
13 14
14 .website-column-headers { 15 .website-column-headers {
15 padding: 3px 0 6px; 16 padding: 3px 0 6px;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 } 105 }
105 106
106 #website-settings-edit-page .website-property-button { 107 #website-settings-edit-page .website-property-button {
107 min-width: 70px; 108 min-width: 70px;
108 } 109 }
109 110
110 #website-settings-edit-page .website-property-controls { 111 #website-settings-edit-page .website-property-controls {
111 min-width: 165px; 112 min-width: 165px;
112 } 113 }
113 114
115 #website-settings-global-controls {
116 -webkit-margin-after: 8px;
117 align-items: center;
118 display: flex;
119 }
120
121 #website-settings-page #global-setting {
Bernhard Bauer 2014/09/09 08:56:21 If #global-setting is an id, you don't need the ot
Daniel Nishi 2014/09/09 16:11:56 Done.
122 flex: 1;
123 }
124
114 /* Styles for the origin list elements in the website settings page. */ 125 /* Styles for the origin list elements in the website settings page. */
115 .origin-list { 126 .origin-list {
116 border: 1px solid #d9d9d9; 127 border: 1px solid #d9d9d9;
117 font-size: 13px; 128 font-size: 13px;
118 height: 192px; 129 height: 192px;
119 margin: 5px 0 0; 130 margin: 5px 0 0;
120 } 131 }
121 132
122 #website-settings-page .blocked-origin-list { 133 #website-settings-page .blocked-origin-list {
123 height: 128px; 134 height: 128px;
(...skipping 24 matching lines...) Expand all
148 -webkit-padding-start: 21px; 159 -webkit-padding-start: 21px;
149 font-size: 13px; 160 font-size: 13px;
150 } 161 }
151 162
152 .permission-option { 163 .permission-option {
153 -webkit-margin-before: 4px; 164 -webkit-margin-before: 4px;
154 align-items: center; 165 align-items: center;
155 display: flex; 166 display: flex;
156 justify-content: space-between; 167 justify-content: space-between;
157 } 168 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698