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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 104 |
105 .source-frame-value-update-highlight { | 105 .source-frame-value-update-highlight { |
106 -webkit-animation: source-frame-value-update-highlight-animation 0.8s 1 cubi
c-bezier(0, 0, 0.2, 1); | 106 -webkit-animation: source-frame-value-update-highlight-animation 0.8s 1 cubi
c-bezier(0, 0, 0.2, 1); |
107 border-radius: 2px; | 107 border-radius: 2px; |
108 } | 108 } |
109 | 109 |
110 .diff-entry-insert .diff-marker { | 110 .diff-entry-insert .diff-marker { |
111 border-left: 4px solid hsla(144, 55%, 37%, 1); | 111 border-left: 4px solid hsla(144, 55%, 37%, 1); |
112 } | 112 } |
113 | 113 |
114 .diff-entry-insert .CodeMirror-gutter-wrapper { | 114 .diff-entry-insert .CodeMirror-gutter-background { |
115 background-color: hsla(144,55%,49%,.2); | 115 background-color: hsla(144,55%,49%,.2); |
116 } | 116 } |
117 | 117 |
118 .diff-entry-modify .diff-marker { | 118 .diff-entry-modify .diff-marker { |
119 border-left: 4px solid #9C27B0; | 119 border-left: 4px solid #9C27B0; |
120 } | 120 } |
121 | 121 |
122 .diff-entry-modify .CodeMirror-gutter-wrapper { | 122 .diff-entry-modify .CodeMirror-gutter-background { |
123 background-color: rgba(186,104,200,0.2); | 123 background-color: rgba(186,104,200,0.2); |
124 } | 124 } |
125 | 125 |
126 .diff-entry-delete .diff-marker { | 126 .diff-entry-delete .diff-marker { |
127 width: 0; | 127 width: 0; |
128 height: 0; | 128 height: 0; |
129 border-top: 6px solid transparent; | 129 border-top: 6px solid transparent; |
130 border-bottom: 6px solid transparent; | 130 border-bottom: 6px solid transparent; |
131 border-left: 6px solid #D32F2F; | 131 border-left: 6px solid #D32F2F; |
132 position: relative; | 132 position: relative; |
133 top: 7px; | 133 top: 6px; |
134 cursor: pointer; | 134 cursor: pointer; |
135 left: 0px; | 135 left: 0px; |
136 } | 136 } |
137 | 137 |
138 .diff-entry-delete .CodeMirror-gutter-wrapper { | 138 .diff-entry-delete .CodeMirror-gutter-background { |
139 border-bottom: 2px solid #D32F2F; | 139 border-bottom: 2px solid #D32F2F; |
140 } | 140 } |
141 | 141 |
142 .CodeMirror-gutter-diff { | 142 .CodeMirror-gutter-diff { |
143 width: 4px; | 143 width: 4px; |
144 } | 144 } |
145 | 145 |
146 .highlight-line-modification { | 146 .highlight-line-modification { |
147 animation: source-line-modification-background-fadeout 0.4s 0s; | 147 animation: source-line-modification-background-fadeout 0.4s 0s; |
148 animation-timing-function: cubic-bezier(0, 0, 0.2, 1); | 148 animation-timing-function: cubic-bezier(0, 0, 0.2, 1); |
(...skipping 10 matching lines...) Expand all Loading... |
159 90% { background-color: rgba(158, 54, 153, 0); } | 159 90% { background-color: rgba(158, 54, 153, 0); } |
160 to { background-color: transparent; } | 160 to { background-color: transparent; } |
161 } | 161 } |
162 | 162 |
163 @keyframes source-line-modification-foreground-fadeout { | 163 @keyframes source-line-modification-foreground-fadeout { |
164 from { color: white; } | 164 from { color: white; } |
165 50% { color: white; } | 165 50% { color: white; } |
166 90% { color: intial; } | 166 90% { color: intial; } |
167 to { color: intial; } | 167 to { color: intial; } |
168 } | 168 } |
OLD | NEW |