MDL-60765 theme: Make inplace-autocomplete rule more specific

This change was intended to fix an issue with the autocomplete in RTL,
but was applied to all inplace-editables.
This commit is contained in:
Andrew Nicols
2017-11-10 10:29:11 +08:00
parent ccf7578373
commit fb5bbf1424
3 changed files with 11 additions and 5 deletions
+4 -1
View File
@@ -2257,7 +2257,6 @@ dd:after {
}
.inplaceeditable {
display: block;
&.inplaceeditingon {
position: relative;
@@ -2300,6 +2299,10 @@ dd:after {
&.inplaceeditable-toggle .quickediticon {
display: none;
}
&.inplaceeditable-autocomplete {
display: block;
}
}
h3.sectionname .inplaceeditable.inplaceeditingon .editinstructions {
+3 -3
View File
@@ -4674,9 +4674,6 @@ dd:after {
.nav-tabs > .active > a[href]:focus {
cursor: pointer;
}
.inplaceeditable {
display: block;
}
.inplaceeditable.inplaceeditingon {
position: relative;
}
@@ -4712,6 +4709,9 @@ dd:after {
.inplaceeditable.inplaceeditable-toggle .quickediticon {
display: none;
}
.inplaceeditable.inplaceeditable-autocomplete {
display: block;
}
h3.sectionname .inplaceeditable.inplaceeditingon .editinstructions {
margin-top: -20px;
}