| OLD | NEW |
| 1 .text-editor { | 1 .text-editor { |
| 2 position: absolute; | 2 position: absolute; |
| 3 top:0; | 3 top:0; |
| 4 left:0; | 4 left:0; |
| 5 right:0; | 5 right:0; |
| 6 bottom:0; | 6 bottom:0; |
| 7 white-space: pre; | 7 white-space: pre; |
| 8 overflow: auto; | 8 overflow: auto; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 position: relative; | 56 position: relative; |
| 57 top: 2px; | 57 top: 2px; |
| 58 margin: 0 4px; | 58 margin: 0 4px; |
| 59 } | 59 } |
| 60 | 60 |
| 61 .webkit-line-number { | 61 .webkit-line-number { |
| 62 color: rgb(128, 128, 128); | 62 color: rgb(128, 128, 128); |
| 63 background-color: rgb(240, 240, 240); | 63 background-color: rgb(240, 240, 240); |
| 64 border-right: 1px solid rgb(187, 187, 187); | 64 border-right: 1px solid rgb(187, 187, 187); |
| 65 text-align: right; | 65 text-align: right; |
| 66 vertical-align: top; |
| 66 word-break: normal; | 67 word-break: normal; |
| 67 -webkit-user-select: none; | 68 -webkit-user-select: none; |
| 68 padding-right: 4px; | 69 padding-right: 4px; |
| 69 padding-left: 6px; | 70 padding-left: 6px; |
| 70 } | 71 } |
| 71 | 72 |
| 72 .webkit-line-number-outer { | 73 .webkit-line-number-outer { |
| 73 margin-right: -4px; | 74 margin-right: -4px; |
| 74 margin-left: -4px; | 75 margin-left: -4px; |
| 75 border-color: transparent; | 76 border-color: transparent; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 } | 154 } |
| 154 | 155 |
| 155 .webkit-highlighted-line .webkit-line-content { | 156 .webkit-highlighted-line .webkit-line-content { |
| 156 -webkit-animation: "fadeout" 2s 0s; | 157 -webkit-animation: "fadeout" 2s 0s; |
| 157 } | 158 } |
| 158 | 159 |
| 159 @-webkit-keyframes fadeout { | 160 @-webkit-keyframes fadeout { |
| 160 from {background-color: rgb(255, 255, 120); } | 161 from {background-color: rgb(255, 255, 120); } |
| 161 to { background-color: white; } | 162 to { background-color: white; } |
| 162 } | 163 } |
| OLD | NEW |