| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 } | 34 } |
| 35 | 35 |
| 36 #sources-editor-container-tabbed-pane { | 36 #sources-editor-container-tabbed-pane { |
| 37 flex: auto; | 37 flex: auto; |
| 38 } | 38 } |
| 39 | 39 |
| 40 #sources-editor-container-tabbed-pane .tabbed-pane-header-tab { | 40 #sources-editor-container-tabbed-pane .tabbed-pane-header-tab { |
| 41 border-bottom: 1px solid #BBB; | 41 border-bottom: 1px solid #BBB; |
| 42 } | 42 } |
| 43 | 43 |
| 44 #sources-panel-sources-view .tabbed-pane-header { |
| 45 background-color: rgb(236, 236, 236); |
| 46 } |
| 47 |
| 44 #sources-panel-sources-view .sources-status-bar { | 48 #sources-panel-sources-view .sources-status-bar { |
| 49 display: flex; |
| 45 position: relative; | 50 position: relative; |
| 46 flex: 0 0 20px; | 51 flex: 0 0 20px; |
| 47 background-color: rgb(236, 236, 236); | 52 background-color: rgb(236, 236, 236); |
| 48 border-top: 1px solid rgb(196,196,196); | 53 border-top: 1px solid rgb(196,196,196); |
| 49 } | 54 } |
| 50 | 55 |
| 51 #sources-panel-sources-view .sources-status-bar .status-bar-item { | 56 #sources-panel-sources-view .sources-status-bar .status-bar-item { |
| 52 margin-top: -1px; | 57 margin-top: -1px; |
| 53 height: 20px; | 58 height: 20px; |
| 54 } | 59 } |
| 55 | 60 |
| 61 #sources-panel-sources-view .sources-status-bar .status-bar-item.status-bar-text
{ |
| 62 margin: auto 0; |
| 63 height: auto; |
| 64 } |
| 65 |
| 56 #sources-panel-sources-view .source-frame-cursor-position { | 66 #sources-panel-sources-view .source-frame-cursor-position { |
| 57 -webkit-user-select: text; | 67 -webkit-user-select: text; |
| 58 } | 68 } |
| 59 | 69 |
| 60 #sources-panel-sources-view .sources-toggle-pretty-print-status-bar-item .glyph
{ | 70 #sources-panel-sources-view .sources-toggle-pretty-print-status-bar-item .glyph
{ |
| 61 -webkit-mask-position: -256px -24px; | 71 -webkit-mask-position: -256px -24px; |
| 62 } | 72 } |
| 63 | 73 |
| 64 #sources-panel-sources-view .sources-toggle-pretty-print-status-bar-item.toggled
.glyph { | 74 #sources-panel-sources-view .sources-toggle-pretty-print-status-bar-item.toggled
.glyph { |
| 65 background-color: rgb(66, 129, 235); | 75 background-color: rgb(66, 129, 235); |
| 66 } | 76 } |
| 67 | 77 |
| 68 #sources-panel-sources-view .drag-mask { | 78 .source-frame-debugger-script { |
| 69 background-color: transparent; | 79 background-color: rgba(255, 255, 194, 0.5); |
| 70 z-index: 1000; | |
| 71 } | 80 } |
| 81 |
| 82 .source-frame-unsaved-committed-changes { |
| 83 background-color: rgba(255, 225, 205, 0.40); |
| 84 } |
| 85 |
| 86 .editor-container-unsaved-committed-changes-icon { |
| 87 background-image: url(Images/statusbarButtonGlyphs.png); |
| 88 background-size: 320px 144px; |
| 89 background-position: -202px -107px; |
| 90 } |
| 91 |
| 92 button.status-bar-item.scripts-debugger-show-hide-button { |
| 93 display: none; |
| 94 } |
| 95 |
| 96 button.status-bar-item.scripts-navigator-show-hide-button { |
| 97 display: none; |
| 98 } |
| OLD | NEW |