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

Side by Side Diff: remoting/webapp/crd/html/menu_button.css

Issue 2536473002: [AppRemoting] Reduce usage of webkit prefix (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « remoting/webapp/base/html/main.css ('k') | remoting/webapp/crd/html/toolbar.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 /* 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 5
6 .menu-button { 6 .menu-button {
7 position: relative; 7 position: relative;
8 } 8 }
9 9
10 .menu-button-activator + ul { 10 .menu-button-activator + ul {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 .menu-button li.selected { 71 .menu-button li.selected {
72 background-image: url(tick.webp); 72 background-image: url(tick.webp);
73 background-position: left center; 73 background-position: left center;
74 background-repeat: no-repeat; 74 background-repeat: no-repeat;
75 } 75 }
76 76
77 .help-icon { 77 .help-icon {
78 vertical-align: -4px; 78 vertical-align: -4px;
79 border: 1px solid transparent; 79 border: 1px solid transparent;
80 opacity: 0.35; 80 opacity: 0.35;
81 -webkit-transition: opacity 0.218s; 81 transition: opacity 0.218s;
82 } 82 }
83 83
84 .help-icon:hover, .help-icon.active { 84 .help-icon:hover, .help-icon.active {
85 opacity: 0.5; 85 opacity: 0.5;
86 } 86 }
87 87
88 .menu-button-click-trap { 88 .menu-button-click-trap {
89 position: fixed; 89 position: fixed;
90 top: 0; 90 top: 0;
91 left: 0; 91 left: 0;
92 width: 100%; 92 width: 100%;
93 height: 100%; 93 height: 100%;
94 z-index: 1; 94 z-index: 1;
95 } 95 }
OLDNEW
« no previous file with comments | « remoting/webapp/base/html/main.css ('k') | remoting/webapp/crd/html/toolbar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698