Bug 1195120 - CSS modifications to fix drop indicator misplacement. r=pbro

--HG--
extra : commitid : 5zHpEsW8Vzx
This commit is contained in:
Nicolas Chevobbe 2015-12-18 23:35:08 +01:00
Родитель fb237503c6
Коммит ca0ef4f729
1 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -128,13 +128,16 @@ ul.children + .tag-line::before {
left: -1000em;
right: 0;
height: 100%;
z-index: -1;
z-index: 0;
}
.expander {
display: inline-block;
margin-left: -14px;
vertical-align: middle;
/* Make sure the expander still appears above the tag-state */
position: relative;
z-index: 1;
}
.child.collapsed .child {
@ -190,6 +193,12 @@ ul.children + .tag-line::before {
cursor: pointer;
}
.editor {
/* Make sure the editor still appears above the tag-state */
position: relative;
z-index: 1;
}
.editor.text {
display: inline-block;
}
@ -198,4 +207,3 @@ ul.children + .tag-line::before {
.editor.comment pre {
font: inherit;
}