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

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: Fix stray space in test Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js ('k') | no next file » | 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) 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 border-bottom: none; 109 border-bottom: none;
110 line-height: 15px; 110 line-height: 15px;
111 white-space: nowrap; 111 white-space: nowrap;
112 cursor: default; 112 cursor: default;
113 display: flex; 113 display: flex;
114 align-items: center; 114 align-items: center;
115 color: #5a5a5a; 115 color: #5a5a5a;
116 } 116 }
117 117
118 .tabbed-pane-header-tab:hover, 118 .tabbed-pane-header-tab:hover,
119 .tabbed-pane-header-tab.selected:hover { 119 .tabbed-pane-header-tab.selected:hover,
120 .tabbed-pane-header-tab[data-keyboard-focus="true"]:focus {
120 color: #333; 121 color: #333;
121 background-color: #e5e5e5; 122 background-color: #e5e5e5;
122 } 123 }
123 124
124 .tabbed-pane-header-tab-title { 125 .tabbed-pane-header-tab-title {
125 text-overflow: ellipsis; 126 text-overflow: ellipsis;
126 overflow: hidden; 127 overflow: hidden;
127 } 128 }
128 129
129 .tabbed-pane-header-tab.measuring { 130 .tabbed-pane-header-tab.measuring {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 288
288 .tabbed-pane-left-toolbar { 289 .tabbed-pane-left-toolbar {
289 margin-right: -4px; 290 margin-right: -4px;
290 flex: none; 291 flex: none;
291 } 292 }
292 293
293 .tabbed-pane-right-toolbar { 294 .tabbed-pane-right-toolbar {
294 margin-left: -4px; 295 margin-left: -4px;
295 flex: none; 296 flex: none;
296 } 297 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698