Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 64 } | 64 } |
| 65 | 65 |
| 66 .scripts-debug-toolbar-drawer.expanded { | 66 .scripts-debug-toolbar-drawer.expanded { |
| 67 margin-top: 0; | 67 margin-top: 0; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .scripts-debug-toolbar-drawer > label { | 70 .scripts-debug-toolbar-drawer > label { |
| 71 display: flex; | 71 display: flex; |
| 72 padding-left: 3px; | 72 padding-left: 3px; |
| 73 border-top: 1px solid rgb(196,196,196); | 73 border-top: 1px solid rgb(196,196,196); |
| 74 height: 24px; | |
|
eustas
2014/07/02 09:33:20
I'd rather use white-space: nowrap;
dgozman
2014/07/02 09:36:37
That's a right fix too. But this label is intended
| |
| 74 } | 75 } |
| 75 | 76 |
| 76 #scripts-editor-toolbar { | 77 #scripts-editor-toolbar { |
| 77 position: relative; | 78 position: relative; |
| 78 margin-top: -1px; | 79 margin-top: -1px; |
| 79 height: 24px; | 80 height: 24px; |
| 80 } | 81 } |
| 81 | 82 |
| 82 .scripts-run-snippet .glyph { | 83 .scripts-run-snippet .glyph { |
| 83 -webkit-mask-position: -64px -48px; | 84 -webkit-mask-position: -64px -48px; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 215 .panel.sources .drag-mask-inner { | 216 .panel.sources .drag-mask-inner { |
| 216 font-size: 30px; | 217 font-size: 30px; |
| 217 color: #999; | 218 color: #999; |
| 218 display: flex; | 219 display: flex; |
| 219 justify-content: center; | 220 justify-content: center; |
| 220 align-items: center; | 221 align-items: center; |
| 221 margin: 20px; | 222 margin: 20px; |
| 222 border: 4px dashed #ddd; | 223 border: 4px dashed #ddd; |
| 223 pointer-events: none; | 224 pointer-events: none; |
| 224 } | 225 } |
| OLD | NEW |