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

Side by Side Diff: Source/devtools/front_end/responsiveDesignView.css

Issue 346583002: [DevTools] Add groups to device select. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. 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 .responsive-design { 7 .responsive-design {
8 overflow: hidden; 8 overflow: hidden;
9 position: relative; 9 position: relative;
10 } 10 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 background-color: rgb(43, 43, 43); 108 background-color: rgb(43, 43, 43);
109 margin: 0 3px; 109 margin: 0 3px;
110 } 110 }
111 111
112 .responsive-design-suite > div:not(.responsive-design-suite-separator) { 112 .responsive-design-suite > div:not(.responsive-design-suite-separator) {
113 flex: none; 113 flex: none;
114 display: flex; 114 display: flex;
115 flex-direction: row; 115 flex-direction: row;
116 align-items: center; 116 align-items: center;
117 justify-content: space-between; 117 justify-content: space-between;
118 height: 22px; 118 height: 23px;
119 overflow: hidden; 119 overflow: hidden;
120 } 120 }
121 121
122 /* Toolbar controls */ 122 /* Toolbar controls */
123 123
124 .responsive-design-toolbar fieldset, 124 .responsive-design-toolbar fieldset,
125 .responsive-design-toolbar p { 125 .responsive-design-toolbar p {
126 margin: 0; 126 margin: 0;
127 border: 0; 127 border: 0;
128 padding: 0; 128 padding: 0;
129 display: inline-block; 129 display: inline-block;
130 } 130 }
131 131
132 .responsive-design-toolbar .field-error-message { 132 .responsive-design-toolbar .field-error-message {
133 display: none; 133 display: none;
134 } 134 }
135 135
136 .responsive-design-toolbar label { 136 .responsive-design-toolbar label {
137 margin-right: 5px; 137 margin-right: 5px;
138 cursor: default !important; 138 cursor: default !important;
139 } 139 }
140 140
141 .responsive-design-toolbar input[type='text'] { 141 .responsive-design-toolbar input[type='text'] {
142 text-align: left; 142 text-align: left;
143 background-color: transparent; 143 background-color: transparent;
144 border: none; 144 border: none;
145 margin: 0; 145 margin: 0 1px 1px 0;
146 margin-bottom: 4px;
147 padding: 3px 2px; 146 padding: 3px 2px;
148 } 147 }
149 148
150 .responsive-design-toolbar input[type='text'].numeric { 149 .responsive-design-toolbar input[type='text'].numeric {
151 text-align: center; 150 text-align: center;
152 } 151 }
153 152
154 .responsive-design-toolbar input:focus::-webkit-input-placeholder { 153 .responsive-design-toolbar input:focus::-webkit-input-placeholder {
155 color: transparent !important; 154 color: transparent !important;
156 } 155 }
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 opacity: 0.8; 284 opacity: 0.8;
286 } 285 }
287 286
288 /* Device section */ 287 /* Device section */
289 288
290 .responsive-design-section-device .responsive-design-section-separator { 289 .responsive-design-section-device .responsive-design-section-separator {
291 background: linear-gradient(to bottom, rgb(255, 186, 68), rgb(255, 119, 0)); 290 background: linear-gradient(to bottom, rgb(255, 186, 68), rgb(255, 119, 0));
292 } 291 }
293 292
294 .responsive-design-section-device select { 293 .responsive-design-section-device select {
295 width: 220px; 294 width: 180px;
296 } 295 }
297 296
298 .responsive-design-section-device input[type='text'], 297 .responsive-design-section-device input[type='text'],
299 .responsive-design-section-device input[type='text']::-webkit-input-placeholder, 298 .responsive-design-section-device input[type='text']::-webkit-input-placeholder,
300 .responsive-design-section-device select { 299 .responsive-design-section-device select {
301 color: rgb(255, 156, 0); 300 color: rgb(255, 156, 0);
302 } 301 }
303 302
304 .responsive-design-section-device input[type='checkbox']:checked:after { 303 .responsive-design-section-device input[type='checkbox']:checked:after {
305 background: rgb(255, 156, 0); 304 background: rgb(255, 156, 0);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 padding: 2px 4px; 336 padding: 2px 4px;
338 white-space: nowrap; 337 white-space: nowrap;
339 display: flex; 338 display: flex;
340 align-items: center; 339 align-items: center;
341 border-bottom: 1px solid rgb(171, 171, 171); 340 border-bottom: 1px solid rgb(171, 171, 171);
342 } 341 }
343 342
344 .responsive-design-warning > span { 343 .responsive-design-warning > span {
345 flex: auto; 344 flex: auto;
346 padding-left: 3px; 345 padding-left: 3px;
346 overflow: hidden;
347 } 347 }
348
349 .responsive-design-warning > div {
350 flex: none;
351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698