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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/tabbedPane.css

Issue 2805593002: DevTools: Navigate TabbedPane with arrow keys (Closed)
Patch Set: nextTabElement Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 border-bottom: none; 89 border-bottom: none;
90 line-height: 15px; 90 line-height: 15px;
91 white-space: nowrap; 91 white-space: nowrap;
92 cursor: default; 92 cursor: default;
93 display: flex; 93 display: flex;
94 align-items: center; 94 align-items: center;
95 color: #5a5a5a; 95 color: #5a5a5a;
96 } 96 }
97 97
98 .tabbed-pane-header-tab:hover, 98 .tabbed-pane-header-tab:hover,
99 .tabbed-pane-header-tab.selected:hover { 99 .tabbed-pane-header-tab.selected:hover,
100 .tabbed-pane-header-tab[data-keyboard-focus="true"]:focus {
100 color: #333; 101 color: #333;
101 background-color: #e5e5e5; 102 background-color: #e5e5e5;
102 } 103 }
103 104
104 .tabbed-pane-header-tab-title { 105 .tabbed-pane-header-tab-title {
105 text-overflow: ellipsis; 106 text-overflow: ellipsis;
106 overflow: hidden; 107 overflow: hidden;
107 } 108 }
108 109
109 .tabbed-pane-header-tab.measuring { 110 .tabbed-pane-header-tab.measuring {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 268
268 .tabbed-pane-left-toolbar { 269 .tabbed-pane-left-toolbar {
269 margin-right: -4px; 270 margin-right: -4px;
270 flex: none; 271 flex: none;
271 } 272 }
272 273
273 .tabbed-pane-right-toolbar { 274 .tabbed-pane-right-toolbar {
274 margin-left: -4px; 275 margin-left: -4px;
275 flex: none; 276 flex: none;
276 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698