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

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

Issue 2776883003: DevTools: normalize medium icons (Closed)
Patch Set: Created 3 years, 9 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 pointer-events: none; 67 pointer-events: none;
68 margin-left: 5px; 68 margin-left: 5px;
69 position: relative; 69 position: relative;
70 } 70 }
71 71
72 .tabbed-pane-header-contents > * { 72 .tabbed-pane-header-contents > * {
73 pointer-events: initial; 73 pointer-events: initial;
74 } 74 }
75 75
76 .tabbed-pane-header-tab-icon { 76 .tabbed-pane-header-tab-icon {
77 margin-right: 6px; 77 min-width: 14px;
78 display: flex; 78 display: flex;
79 align-items: center; 79 align-items: center;
80 margin-right: 2px;
80 } 81 }
81 82
82 .tabbed-pane-header-tab { 83 .tabbed-pane-header-tab {
83 float: left; 84 float: left;
84 margin-top: 2px; 85 margin-top: 2px;
85 padding: 2px 4px 2px 4px; 86 padding: 2px 4px 2px 4px;
86 height: 24px; 87 height: 24px;
87 border: 1px solid transparent; 88 border: 1px solid transparent;
88 border-bottom: none; 89 border-bottom: none;
89 line-height: 15px; 90 line-height: 15px;
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 269
269 .tabbed-pane-left-toolbar { 270 .tabbed-pane-left-toolbar {
270 margin-right: -4px; 271 margin-right: -4px;
271 flex: none; 272 flex: none;
272 } 273 }
273 274
274 .tabbed-pane-right-toolbar { 275 .tabbed-pane-right-toolbar {
275 margin-left: -4px; 276 margin-left: -4px;
276 flex: none; 277 flex: none;
277 } 278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698