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

Side by Side Diff: chrome/browser/resources/file_manager/foreground/css/combobutton.css

Issue 247123002: Move Files.app files to ui/file_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the test failure on non-chromeos Created 6 years, 8 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 .buttonbar button.combobutton {
6 -webkit-box-align: stretch;
7 display: -webkit-box;
8 }
9
10 .buttonbar .combobutton > .action {
11 background-position: left center;
12 background-repeat: no-repeat;
13 background-size: 16px 16px;
14 padding-left: 21px;
15 }
16
17 .buttonbar .combobutton > .trigger {
18 border-left: solid 1px #dcdcdc;
19 margin-left: 8px;
20 margin-right: -8px;
21 width: 22px;
22 }
23
24 .buttonbar .combobutton:not([multiple]) > .trigger {
25 display: none;
26 }
27
28 .buttonbar .combobutton > div > span.disclosureindicator {
29 -webkit-transform: rotate(90deg);
30 }
31
32 .buttonbar .combobutton[hidden] {
33 display: none;
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698