Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 li .icon { | |
| 2 margin: -3px -5px -3px -5px; | |
| 3 background: linear-gradient(45deg, hsl(0, 0%, 50%), hsl(0, 0%, 70%)); | |
| 4 } | |
| 5 | |
| 6 .tree-outline li { | |
| 7 min-height: 20px; | |
|
luoe
2017/03/23 21:59:59
nit: indent should be consistent
| |
| 8 } | |
| 9 | |
| 10 .tree-outline li:hover:not(.selected) .selection { | |
| 11 display: block; | |
| 12 background-color: rgba(56, 121, 217, 0.1); | |
| 13 } | |
| 14 | |
| 15 .navigator-fs-tree-item .icon{ | |
| 16 background: linear-gradient(45deg, hsl(28, 75%, 50%), hsl(28, 75%, 70%)); | |
| 17 } | |
| 18 | |
| 19 .navigator-sm-script-tree-item .icon, | |
| 20 .navigator-script-tree-item .icon, | |
| 21 .navigator-snippet-tree-item .icon { | |
| 22 background: linear-gradient(45deg, hsl(48, 70%, 50%), hsl(48, 70%, 70%)); | |
| 23 } | |
| 24 | |
| 25 .navigator-sm-stylesheet-tree-item .icon, | |
| 26 .navigator-stylesheet-tree-item .icon { | |
| 27 background: linear-gradient(45deg, hsl(256, 50%, 50%), hsl(256, 50%, 70%)); | |
| 28 } | |
| 29 | |
| 30 .navigator-image-tree-item .icon, | |
| 31 .navigator-font-tree-item .icon { | |
| 32 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); | |
| 33 } | |
| OLD | NEW |