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

Side by Side Diff: Source/core/Resources/pagepopups/calendarPicker.css

Issue 23793002: Unprefix flexbox properties in various CSS files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/Resources/pagepopups/colorSuggestionPicker.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 border-radius: 2px; 142 border-radius: 2px;
143 position: absolute; 143 position: absolute;
144 padding: 10px; 144 padding: 10px;
145 background-color: white; 145 background-color: white;
146 overflow: hidden; 146 overflow: hidden;
147 cursor: default; 147 cursor: default;
148 } 148 }
149 149
150 .calendar-header-view { 150 .calendar-header-view {
151 margin-bottom: 10px; 151 margin-bottom: 10px;
152 display: -webkit-flex; 152 display: flex;
153 -webkit-flex-flow: row; 153 flex-flow: row;
154 } 154 }
155 155
156 .calendar-title { 156 .calendar-title {
157 -webkit-align-self: center; 157 -webkit-align-self: center;
158 -webkit-flex: 1; 158 flex: 1;
159 text-align: left; 159 text-align: left;
160 } 160 }
161 161
162 .rtl .calendar-title { 162 .rtl .calendar-title {
163 text-align: right; 163 text-align: right;
164 } 164 }
165 165
166 .month-popup-button, 166 .month-popup-button,
167 .month-popup-button:hover, 167 .month-popup-button:hover,
168 .month-popup-button:disabled { 168 .month-popup-button:disabled {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 -webkit-padding-start: 8px; 232 -webkit-padding-start: 8px;
233 background-color: #f5f5f5; 233 background-color: #f5f5f5;
234 border-bottom: 1px solid #bfbfbf; 234 border-bottom: 1px solid #bfbfbf;
235 } 235 }
236 236
237 .year-list-cell .month-chooser { 237 .year-list-cell .month-chooser {
238 padding: 0; 238 padding: 0;
239 } 239 }
240 240
241 .month-buttons-row { 241 .month-buttons-row {
242 display: -webkit-flex; 242 display: flex;
243 } 243 }
244 244
245 .month-button { 245 .month-button {
246 -webkit-flex: 1; 246 flex: 1;
247 height: 32px; 247 height: 32px;
248 padding: 0 !important; 248 padding: 0 !important;
249 margin: 0 !important; 249 margin: 0 !important;
250 background-image: none !important; 250 background-image: none !important;
251 background-color: #ffffff; 251 background-color: #ffffff;
252 border-width: 0 !important; 252 border-width: 0 !important;
253 box-shadow: none !important; 253 box-shadow: none !important;
254 } 254 }
255 255
256 .month-button.highlighted { 256 .month-button.highlighted {
(...skipping 30 matching lines...) Expand all
287 .year-list-view .scrubby-scroll-bar { 287 .year-list-view .scrubby-scroll-bar {
288 right: 0; 288 right: 0;
289 } 289 }
290 290
291 .rtl .year-list-view .scrubby-scroll-bar { 291 .rtl .year-list-view .scrubby-scroll-bar {
292 left: 0; 292 left: 0;
293 right: auto; 293 right: auto;
294 border-left-width: 0; 294 border-left-width: 0;
295 border-right: 1px solid #bfbfbf; 295 border-right: 1px solid #bfbfbf;
296 } 296 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/Resources/pagepopups/colorSuggestionPicker.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698