mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-31 04:32:06 +08:00
Fix for inline editing on Firefox
This commit is contained in:
parent
6bb19ed0be
commit
8413ed5ab0
2 changed files with 6 additions and 4 deletions
|
@ -68,18 +68,19 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
pointer-events: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
+ .button-container {
|
+ .button-container {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover input {
|
||||||
border: 1px solid $color-gainsboro;
|
border: 1px solid $color-gainsboro;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-name.editable {
|
.nav-name.editable {
|
||||||
|
|
|
@ -239,6 +239,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
|
Loading…
Reference in a new issue