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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 1169323004: DevTools: do not respect Chrome theme in DevTools, align toolbar items. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: overflow for tab header fixed. Created 5 years, 6 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 | Annotate | Revision Log
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 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 } 77 }
78 78
79 .toolbar-background { 79 .toolbar-background {
80 padding-left: 1px; 80 padding-left: 1px;
81 border-bottom: 1px solid rgb(64%, 64%, 64%); 81 border-bottom: 1px solid rgb(64%, 64%, 64%);
82 background-origin: padding-box; 82 background-origin: padding-box;
83 background-clip: padding-box; 83 background-clip: padding-box;
84 } 84 }
85 85
86 .inspector-view-toolbar-left { 86 .inspector-view-toolbar-left {
87 padding-left: 2px;
88 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma rgin-left. */ 87 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma rgin-left. */
89 } 88 }
90 89
91 .inspector-view-close-button {
92 cursor: default;
93 width: 28px;
94 padding-left: 8px;
95 }
96
97 .material .inspector-view-close-button {
98 width: 32px;
99 }
100
101 body.undocked .inspector-view-close-button {
102 display: none;
103 }
104
105 .bubble-repeat-count { 90 .bubble-repeat-count {
106 display: inline-block; 91 display: inline-block;
107 height: 14px; 92 height: 14px;
108 background-color: rgb(128, 151, 189); 93 background-color: rgb(128, 151, 189);
109 vertical-align: middle; 94 vertical-align: middle;
110 white-space: nowrap; 95 white-space: nowrap;
111 padding: 1px 4px; 96 padding: 1px 4px;
112 text-align: left; 97 text-align: left;
113 font-size: 11px; 98 font-size: 11px;
114 line-height: normal; 99 line-height: normal;
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 } 628 }
644 629
645 body.inactive select.chrome-select, 630 body.inactive select.chrome-select,
646 .chrome-select:disabled { 631 .chrome-select:disabled {
647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
648 border-color: rgba(80, 80, 80, 0.2); 633 border-color: rgba(80, 80, 80, 0.2);
649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
650 inset 0 1px 2px rgba(255, 255, 255, 0.75); 635 inset 0 1px 2px rgba(255, 255, 255, 0.75);
651 color: #aaa; 636 color: #aaa;
652 } 637 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/host/InspectorFrontendHostAPI.js ('k') | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698