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

Side by Side Diff: chrome/browser/resources/options/chromeos/display_options.css

Issue 1649173002: Add DisplayLayoutManagerMulti (WIP) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_576375_display3e
Patch Set: Rebase Created 4 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #display-options-page { 5 #display-options-page {
6 background-color: rgb(240, 240, 240); 6 background-color: rgb(240, 240, 240);
7 } 7 }
8 8
9 #display-options-content-area { 9 #display-options-content-area {
10 padding: 0; 10 padding: 0;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 .display-mirrored { 87 .display-mirrored {
88 border: solid 1px; 88 border: solid 1px;
89 } 89 }
90 90
91 .displays-focused { 91 .displays-focused {
92 border: solid 2px rgb(0, 138, 255); 92 border: solid 2px rgb(0, 138, 255);
93 color: rgb(0, 138, 255); 93 color: rgb(0, 138, 255);
94 } 94 }
95 95
96 .displays-parent-left {
97 border-left: solid 1px rgb(255, 138, 0);
98 }
99
100 .displays-parent-right {
101 border-right: solid 1px rgb(255, 138, 0);
102 }
103
104 .displays-parent-top {
105 border-top: solid 1px rgb(255, 138, 0);
106 }
107
108 .displays-parent-bottom {
109 border-bottom: solid 1px rgb(255, 138, 0);
110 }
111
96 #display-options-select-mirroring { 112 #display-options-select-mirroring {
97 margin-right: 5px; 113 margin-right: 5px;
98 } 114 }
99 115
100 .display-options-button { 116 .display-options-button {
101 width: 140px; 117 width: 140px;
102 } 118 }
103 119
104 .display-options-button2 { 120 .display-options-button2 {
105 width: 120px; 121 width: 120px;
106 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698