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

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

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 .error-message { 122 .error-message {
123 color: red; 123 color: red;
124 } 124 }
125 125
126 .error-input { 126 .error-input {
127 background-color: rgb(220, 130, 130); 127 background-color: rgb(220, 130, 130);
128 } 128 }
129 129
130 .panel { 130 .panel {
131 display: none !important; 131 display: flex;
132 overflow: hidden; 132 overflow: hidden;
133 position: absolute; 133 position: absolute;
134 top: 0; 134 top: 0;
135 left: 0; 135 left: 0;
136 right: 0; 136 right: 0;
137 bottom: 0; 137 bottom: 0;
138 z-index: 0; 138 z-index: 0;
139 } 139 }
140 140
141 .panel.visible {
142 display: flex !important;
143 }
144
145 iframe.extension { 141 iframe.extension {
146 flex: auto; 142 flex: auto;
147 width: 100%; 143 width: 100%;
148 height: 100%; 144 height: 100%;
149 } 145 }
150 146
151 iframe.panel.extension { 147 iframe.panel.extension {
152 display: block; 148 display: block;
153 height: 100%; 149 height: 100%;
154 } 150 }
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 } 643 }
648 644
649 body.inactive select.chrome-select, 645 body.inactive select.chrome-select,
650 .chrome-select:disabled { 646 .chrome-select:disabled {
651 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
652 border-color: rgba(80, 80, 80, 0.2); 648 border-color: rgba(80, 80, 80, 0.2);
653 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
654 inset 0 1px 2px rgba(255, 255, 255, 0.75); 650 inset 0 1px 2px rgba(255, 255, 255, 0.75);
655 color: #aaa; 651 color: #aaa;
656 } 652 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/extensions/ExtensionPanel.js ('k') | Source/devtools/front_end/network/networkPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698