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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 margin-right: -6px; | 1118 margin-right: -6px; |
1119 } | 1119 } |
1120 | 1120 |
1121 .console-group-messages .add-attribute { | 1121 .console-group-messages .add-attribute { |
1122 display: none; | 1122 display: none; |
1123 } | 1123 } |
1124 | 1124 |
1125 .console-formatted-object, | 1125 .console-formatted-object, |
1126 .console-formatted-map, | 1126 .console-formatted-map, |
1127 .console-formatted-set, | 1127 .console-formatted-set, |
| 1128 .console-formatted-iterator, |
1128 .console-formatted-node, | 1129 .console-formatted-node, |
1129 .console-formatted-array { | 1130 .console-formatted-array { |
1130 position: relative; | 1131 position: relative; |
1131 display: inline-block; | 1132 display: inline-block; |
1132 vertical-align: top; | 1133 vertical-align: top; |
1133 color: inherit; | 1134 color: inherit; |
1134 } | 1135 } |
1135 | 1136 |
1136 .console-formatted-node:hover { | 1137 .console-formatted-node:hover { |
1137 background-color: rgba(56, 121, 217, 0.1); | 1138 background-color: rgba(56, 121, 217, 0.1); |
1138 } | 1139 } |
1139 | 1140 |
1140 .console-formatted-object .section, | 1141 .console-formatted-object .section, |
1141 .console-formatted-map .section, | 1142 .console-formatted-map .section, |
1142 .console-formatted-set .section, | 1143 .console-formatted-set .section, |
| 1144 .console-formatted-iterator .section, |
1143 .console-formatted-node .section, | 1145 .console-formatted-node .section, |
1144 .console-formatted-array .section { | 1146 .console-formatted-array .section { |
1145 position: static; | 1147 position: static; |
1146 } | 1148 } |
1147 | 1149 |
1148 .console-formatted-object .section > .header::before { | 1150 .console-formatted-object .section > .header::before { |
1149 margin-top: 0; | 1151 margin-top: 0; |
1150 } | 1152 } |
1151 | 1153 |
1152 .console-formatted-object .properties, | 1154 .console-formatted-object .properties, |
1153 .console-formatted-map .properties, | 1155 .console-formatted-map .properties, |
1154 .console-formatted-set .properties, | 1156 .console-formatted-set .properties, |
| 1157 .console-formatted-iterator .properties, |
1155 .console-formatted-node .properties { | 1158 .console-formatted-node .properties { |
1156 padding-left: 0 !important; | 1159 padding-left: 0 !important; |
1157 } | 1160 } |
1158 | 1161 |
1159 .console-formatted-number, | 1162 .console-formatted-number, |
1160 .console-formatted-boolean { | 1163 .console-formatted-boolean { |
1161 color: rgb(28, 0, 207); | 1164 color: rgb(28, 0, 207); |
1162 } | 1165 } |
1163 | 1166 |
1164 .scientific-notation-exponent { | 1167 .scientific-notation-exponent { |
(...skipping 1648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2813 font-size: 80%; | 2816 font-size: 80%; |
2814 white-space: nowrap; | 2817 white-space: nowrap; |
2815 pointer-events: none; | 2818 pointer-events: none; |
2816 } | 2819 } |
2817 | 2820 |
2818 .link { | 2821 .link { |
2819 cursor: pointer; | 2822 cursor: pointer; |
2820 text-decoration: underline; | 2823 text-decoration: underline; |
2821 color: rgb(17, 85, 204); | 2824 color: rgb(17, 85, 204); |
2822 } | 2825 } |
OLD | NEW |