view action log

This commit is contained in:
guillaume 2019-02-04 17:21:02 +01:00
commit 57fed7100c
7 changed files with 356 additions and 13 deletions

View file

@ -5,4 +5,33 @@
}
.log-grid-perso{
height: 40vw;
}
.menu-button{
background: transparent;
width: 100%;
font-size: 1vw;
margin: 0px;
height: 3vw;
color: rgb(0,0,0,0.4);
border-radius: 0px;
cursor: pointer;
}
.menu-button[disabled][disabled] {
pointer-events: none;
color: var(--lumo-disabled-text-color);
}
.content-action-logging{
width: 100%;
height: 100%;
text-align: center;
}
.content-log{
width: 30vw;
height: 19vw;
position: relative;
margin-left: auto;
margin-right: auto;
}
.vaadin-text-area-container div[part="input-field"]{
overflow-y: scroll!important;
}

View file

@ -0,0 +1,12 @@
<dom-module id="my-text-field-styles" theme-for="vaadin-text-area">
<template>
<style>
[part="input-field"] [part="value"]{
overflow-y: auto!important;
}
</style>
</template>
</dom-module>