| 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 */ |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 color: black; | 150 color: black; |
| 151 outline: 1px solid black; | 151 outline: 1px solid black; |
| 152 } | 152 } |
| 153 | 153 |
| 154 .tree-item[editing] input { | 154 .tree-item[editing] input { |
| 155 /* Do not inherit the line-height */ | 155 /* Do not inherit the line-height */ |
| 156 font-family: inherit; | 156 font-family: inherit; |
| 157 font-size: inherit; | 157 font-size: inherit; |
| 158 font-weight: inherit; | 158 font-weight: inherit; |
| 159 margin: -2px -8px -2px -3px; | 159 margin: -2px -8px -2px -3px; |
| 160 <if expr="not is_macosx"> |
| 161 outline: none; |
| 162 </if> |
| 160 padding: 1px 7px 1px 1px; | 163 padding: 1px 7px 1px 1px; |
| 161 } | 164 } |
| 162 | 165 |
| 163 html:not([os=mac]) .tree-item[editing] input { | |
| 164 outline: none; | |
| 165 } | |
| 166 | |
| 167 html[dir=rtl] .tree-item[editing] input { | 166 html[dir=rtl] .tree-item[editing] input { |
| 168 margin: -2px -3px -2px -8px; | 167 margin: -2px -3px -2px -8px; |
| 169 padding: 1px 1px 1px 7px; | 168 padding: 1px 1px 1px 7px; |
| 170 } | 169 } |
| OLD | NEW |