face: adjust top matter rename size
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/953/head
parent
40bcc0e09a
commit
1ea70750bf
|
@ -7,7 +7,11 @@
|
||||||
</NcActionButton>
|
</NcActionButton>
|
||||||
</NcActions>
|
</NcActions>
|
||||||
|
|
||||||
<div class="name" :class="{ rename: isReal }" @click="rename">{{ displayName }}</div>
|
<div class="name">
|
||||||
|
<div :class="{ rename: isReal }" @click="rename">
|
||||||
|
{{ displayName }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="right-actions">
|
<div class="right-actions">
|
||||||
<NcActions :inline="0">
|
<NcActions :inline="0">
|
||||||
|
@ -155,11 +159,15 @@ export default defineComponent({
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.face-top-matter {
|
.face-top-matter {
|
||||||
.name.rename:hover {
|
.name > .rename {
|
||||||
cursor: text;
|
cursor: text;
|
||||||
text-decoration: underline;
|
display: inline-block;
|
||||||
text-decoration-color: var(--color-placeholder-light);
|
|
||||||
text-underline-offset: 5px;
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--color-placeholder-light);
|
||||||
|
text-underline-offset: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue