OLD | NEW |
1 tree { | 1 tree { |
2 outline: none; | 2 outline: none; |
3 overflow: auto; | 3 overflow: auto; |
4 display: block; | 4 display: block; |
5 } | 5 } |
6 | 6 |
7 .tree-item > .tree-row { | 7 .tree-item > .tree-row { |
8 color: black; | 8 color: black; |
9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
10 border: 1px solid rgba(255,255,255,0); /* transparent white */ | 10 border: 1px solid rgba(255,255,255,0); /* transparent white */ |
11 background-color: rgba(255,255,255,0); | 11 background-color: rgba(255,255,255,0); |
12 -webkit-border-radius: 2px; | 12 border-radius: 2px; |
13 padding: 0px 3px; | 13 padding: 0px 3px; |
14 line-height: 20px; | 14 line-height: 20px; |
15 white-space: nowrap; | 15 white-space: nowrap; |
16 cursor: default; | 16 cursor: default; |
17 position: relative; | 17 position: relative; |
18 } | 18 } |
19 | 19 |
20 .expand-icon { | 20 .expand-icon { |
21 width: 11px; | 21 width: 11px; |
22 height: 16px; | 22 height: 16px; |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 background: white; | 155 background: white; |
156 margin: -2px -8px -2px -3px; | 156 margin: -2px -8px -2px -3px; |
157 padding: 1px 7px 1px 1px; | 157 padding: 1px 7px 1px 1px; |
158 outline: none; | 158 outline: none; |
159 } | 159 } |
160 | 160 |
161 html[dir=rtl] .tree-item[editing] input { | 161 html[dir=rtl] .tree-item[editing] input { |
162 margin: -2px -3px -2px -8px; | 162 margin: -2px -3px -2px -8px; |
163 padding: 1px 1px 1px 7px; | 163 padding: 1px 1px 1px 7px; |
164 } | 164 } |
OLD | NEW |