Update item for description

This commit is contained in:
Mandar
2020-12-24 17:48:06 +01:00
parent 0f1afcf740
commit 919657e1bc
15 changed files with 65 additions and 54 deletions

View File

@@ -22,7 +22,9 @@
.technique-edit,
.technique-delete,
.peculiarity-edit,
.peculiarity-delete {
.peculiarity-delete,
.property-edit,
.property-delete {
line-height: 1rem;
font-size: 0.75rem;
flex: 0 0 1rem;
@@ -39,9 +41,11 @@
.technique-edit,
.technique-delete,
.peculiarity-edit,
.peculiarity-delete {
.peculiarity-delete,
.property-edit,
.property-delete {
&:hover {
text-shadow: 0 0 6px $orange;
text-shadow: 0 0 3px $red;
}
}
}
@@ -151,9 +155,14 @@
input[type="text"] {
width: 2rem;
&.grip {
width: 6rem;
width: 12rem;
margin-bottom: 0.25rem;
}
}
input[name="data.zeni"] {
width: 5rem;
float: right;
}
fieldset {
input[type="text"] {
float: right;
@@ -252,4 +261,21 @@
}
}
}
p.item-description {
height: 0;
margin: 0;
padding: 0.25rem;
font-size: 0.75rem;
color: rgba(0, 0, 0, 0.75);
overflow: hidden;
border: 1px solid $l5r5e-title;
transition: height 0.25s ease-in;
}
&:hover {
p.item-description {
height: 6rem;
overflow-y: auto;
scrollbar-width: thin;
}
}
}