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

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

Issue 6372010: DOMUI: Refactor the new overlay style and apply it to all overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix 2. Created 9 years, 11 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 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 100%; 3 font-size: 100%;
4 } 4 }
5 5
6 #settings-title { 6 #settings-title {
7 -webkit-padding-end: 24px; 7 -webkit-padding-end: 24px;
8 color: #53637d; 8 color: #53637d;
9 cursor: pointer; 9 cursor: pointer;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 html[dir='rtl'] .close-subpage { 78 html[dir='rtl'] .close-subpage {
79 float: left; 79 float: left;
80 left: 0; 80 left: 0;
81 } 81 }
82 82
83 html[hide-menu=true] .close-subpage { 83 html[hide-menu=true] .close-subpage {
84 display: none 84 display: none
85 } 85 }
86 86
87 .content-area {
88 padding: 10px 15px 5px 15px;
89 }
90
87 .action-area { 91 .action-area {
88 -webkit-box-align: center; 92 -webkit-box-align: center;
89 -webkit-box-orient: horizontal; 93 -webkit-box-orient: horizontal;
90 bottom: 0; 94 -webkit-box-pack: end;
95 border-top: 1px solid rgba(188, 193, 208, .5);
91 display: -webkit-box; 96 display: -webkit-box;
92 padding: 12px; 97 padding: 12px;
93 position: absolute;
94 right: 0;
95 } 98 }
96 99
97 html[dir='rtl'] .action-area { 100 html[dir='rtl'] .action-area {
98 left: 0; 101 left: 0;
99 } 102 }
100 103
104 .action-area-left {
105 -webkit-box-flex: 1;
106 display: -webkit-box;
stuartmorgan 2011/01/24 17:04:49 Why do we need this?
James Hawkins 2011/01/24 18:42:27 Turns out this class is not needed at all.
107 }
108
109 .action-area-right {
110 display: -webkit-box;
stuartmorgan 2011/01/24 17:04:49 And this?
James Hawkins 2011/01/24 18:42:27 Per off-line, the layout is incorrect w/out this.
111 }
112
101 .button-strip { 113 .button-strip {
102 -webkit-box-orient: horizontal; 114 -webkit-box-orient: horizontal;
103 display: -webkit-box; 115 display: -webkit-box;
104 } 116 }
105 117
106 html[toolkit=views] .button-strip { 118 html[toolkit=views] .button-strip {
107 -webkit-box-direction: reverse; 119 -webkit-box-direction: reverse;
108 } 120 }
109 121
110 .button-strip > button { 122 .button-strip > button {
111 -webkit-margin-start: 10px; 123 -webkit-margin-start: 10px;
112 display: block; 124 display: block;
113 } 125 }
114 126
115 .overlay .page { 127 .overlay .page {
116 -webkit-box-shadow: 3px 3px 3px #666; 128 -webkit-box-shadow: 0px 0px 40px -5px #888;
117 background: white; 129 background: white;
118 border: 1px solid #666; 130 border: 1px solid rgb(188, 193, 208);
119 border-radius: 5px; 131 border-radius: 2px;
120 min-width: 400px; 132 min-width: 400px;
121 padding: 0 15px 50px 15px; 133 padding: 0;
122 position: relative; 134 position: relative;
123 } 135 }
124 136
125 #navbar { 137 #navbar {
126 margin: 0; 138 margin: 0;
127 } 139 }
128 140
129 #navbar-container { 141 #navbar-container {
130 -webkit-border-end: 1px solid #c6c9ce; 142 -webkit-border-end: 1px solid #c6c9ce;
131 background: -webkit-linear-gradient(rgba(234, 238, 243, 0), #eaeef3), 143 background: -webkit-linear-gradient(rgba(234, 238, 243, 0), #eaeef3),
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 } 661 }
650 662
651 html[os=mac] label > input[type=checkbox], 663 html[os=mac] label > input[type=checkbox],
652 html[os=mac] label > input[type=radio] { 664 html[os=mac] label > input[type=radio] {
653 margin-top: 2px; 665 margin-top: 2px;
654 } 666 }
655 667
656 .suboption { 668 .suboption {
657 -webkit-margin-start: 16px; 669 -webkit-margin-start: 16px;
658 } 670 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698