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

Side by Side Diff: chrome/browser/resources/chromeos/login/pairing_device_list.css

Issue 642313002: Implemented UI for the meetings controller out-of-box. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge_point
Patch Set: Clean up. Created 6 years, 2 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
(Empty)
1 /* Copyright 2014 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
6 :host {
7 display: block;
8 overflow: auto;
9 }
10
11 core-selector {
12 display: block;
13 }
14
15 :host([connecting]) {
16 pointer-events: none;
17 }
18
19 core-item {
20 padding-bottom: 22px;
21 padding-top: 22px;
22 }
23
24 /* [icon] is needed to increase specificity. */
25 core-item core-icon[icon] {
26 height: 40px;
27 margin-right: 1em;
Nikita (slow) 2014/10/13 17:23:40 -webkit-margin-end?
dzhioev (left Google) 2014/10/15 14:07:43 Created issue and added TODO.
Nikita (slow) 2014/10/15 14:38:38 Why not just replace margin-right right here? :)
dzhioev (left Google) 2014/10/16 21:27:58 Partial RTL support is worse than no RTL support =
28 width: 40px;
29 }
30
31 /* Items separator. */
32 core-item:not(:last-child)::after {
33 background-color: rgba(0, 0, 0, 0.1);
34 bottom: 0;
35 content: '';
36 display: block;
37 height: 1px;
38 left: calc(40px + 1em);
Nikita (slow) 2014/10/13 17:23:40 Please add rtl support.
dzhioev (left Google) 2014/10/15 14:07:44 ditto
39 position: absolute;
40 right: 0;
41 }
42
43 .throbber {
44 display: none;
45 }
46
47 :host([connecting]) core-item.core-selected .throbber {
48 background: url('chrome://resources/images/throbber.svg') no-repeat;
49 background-size: cover;
50 display: inline-block;
51 height: 25px;
52 margin-right: 10px;
Nikita (slow) 2014/10/13 17:23:40 -webkit-margin-end?
dzhioev (left Google) 2014/10/15 14:07:44 ditto
Nikita (slow) 2014/10/15 14:38:38 Why not just replace margin-right right here? :)
dzhioev (left Google) 2014/10/16 21:27:58 ditto
53 width: 25px;
54 }
55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698