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 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 font-weight: normal; | 1096 font-weight: normal; |
1097 line-height: 13px; | 1097 line-height: 13px; |
1098 } | 1098 } |
1099 | 1099 |
1100 .console-group-messages .section .properties li .info { | 1100 .console-group-messages .section .properties li .info { |
1101 padding-top: 0; | 1101 padding-top: 0; |
1102 padding-bottom: 0; | 1102 padding-bottom: 0; |
1103 color: rgb(60%, 60%, 60%); | 1103 color: rgb(60%, 60%, 60%); |
1104 } | 1104 } |
1105 | 1105 |
1106 .console-group-messages .outline-disclosure { | |
1107 padding-left: 0; | |
1108 } | |
1109 | |
1110 .console-group-messages .outline-disclosure > ol { | |
1111 padding: 0 0 0 12px !important; | |
1112 } | |
1113 | |
1114 .console-group-messages .outline-disclosure, | |
1115 .console-group-messages .outline-disclosure ol { | |
1116 font-size: inherit; | |
1117 line-height: 12px; | |
1118 } | |
1119 | |
1120 .console-group-messages .outline-disclosure.single-node li { | |
1121 padding-left: 2px; | |
1122 } | |
1123 | |
1124 .console-group-messages .outline-disclosure li .selection { | |
1125 margin-left: -6px; | |
1126 margin-right: -6px; | |
1127 } | |
1128 | |
1129 .console-group-messages .add-attribute { | |
1130 display: none; | |
1131 } | |
1132 | |
1133 .console-formatted-object, | 1106 .console-formatted-object, |
1134 .console-formatted-map, | 1107 .console-formatted-map, |
1135 .console-formatted-set, | 1108 .console-formatted-set, |
1136 .console-formatted-iterator, | 1109 .console-formatted-iterator, |
1137 .console-formatted-node, | 1110 .console-formatted-node, |
1138 .console-formatted-array { | 1111 .console-formatted-array { |
1139 position: relative; | 1112 position: relative; |
1140 display: inline-block; | 1113 display: inline-block; |
1141 vertical-align: top; | 1114 vertical-align: top; |
1142 color: inherit; | 1115 color: inherit; |
(...skipping 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2824 font-size: 80%; | 2797 font-size: 80%; |
2825 white-space: nowrap; | 2798 white-space: nowrap; |
2826 pointer-events: none; | 2799 pointer-events: none; |
2827 } | 2800 } |
2828 | 2801 |
2829 .link { | 2802 .link { |
2830 cursor: pointer; | 2803 cursor: pointer; |
2831 text-decoration: underline; | 2804 text-decoration: underline; |
2832 color: rgb(17, 85, 204); | 2805 color: rgb(17, 85, 204); |
2833 } | 2806 } |
OLD | NEW |