| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 .-theme-with-dark-background .source-frame-debugger-script { | 52 .-theme-with-dark-background .source-frame-debugger-script { |
| 53 background-color: #444; | 53 background-color: #444; |
| 54 } | 54 } |
| 55 | 55 |
| 56 .source-frame-unsaved-committed-changes { | 56 .source-frame-unsaved-committed-changes { |
| 57 background-color: rgba(255, 225, 205, 0.40); | 57 background-color: rgba(255, 225, 205, 0.40); |
| 58 } | 58 } |
| 59 | 59 |
| 60 .source-frame-breakpoint-condition { |
| 61 z-index: 30; |
| 62 padding: 4px; |
| 63 background-color: rgb(203, 226, 255); |
| 64 border-radius: 7px; |
| 65 border: 2px solid rgb(169, 172, 203); |
| 66 width: 90%; |
| 67 pointer-events: auto; |
| 68 } |
| 69 |
| 70 .source-frame-breakpoint-message { |
| 71 background-color: transparent; |
| 72 font-weight: normal; |
| 73 font-size: 11px; |
| 74 text-align: left; |
| 75 text-shadow: none; |
| 76 color: rgb(85, 85, 85); |
| 77 cursor: default; |
| 78 margin: 0 0 2px 0; |
| 79 } |
| 80 |
| 81 #source-frame-breakpoint-condition { |
| 82 margin: 0; |
| 83 border: 1px inset rgb(190, 190, 190) !important; |
| 84 width: 100%; |
| 85 box-shadow: none !important; |
| 86 outline: none !important; |
| 87 -webkit-user-modify: read-write; |
| 88 } |
| 89 |
| 60 @-webkit-keyframes source-frame-value-update-highlight-animation { | 90 @-webkit-keyframes source-frame-value-update-highlight-animation { |
| 61 from { | 91 from { |
| 62 background-color: inherit; | 92 background-color: inherit; |
| 63 color: inherit; | 93 color: inherit; |
| 64 } | 94 } |
| 65 10% { | 95 10% { |
| 66 background-color: rgb(158, 54, 153); | 96 background-color: rgb(158, 54, 153); |
| 67 color: white; | 97 color: white; |
| 68 } | 98 } |
| 69 to { | 99 to { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 left: 0px; | 135 left: 0px; |
| 106 } | 136 } |
| 107 | 137 |
| 108 .diff-entry-delete .CodeMirror-gutter-wrapper { | 138 .diff-entry-delete .CodeMirror-gutter-wrapper { |
| 109 border-bottom: 2px solid #D32F2F; | 139 border-bottom: 2px solid #D32F2F; |
| 110 } | 140 } |
| 111 | 141 |
| 112 .CodeMirror-gutter-diff { | 142 .CodeMirror-gutter-diff { |
| 113 width: 4px; | 143 width: 4px; |
| 114 } | 144 } |
| OLD | NEW |