2025-02-08 05:55:03 +00:00
|
|
|
html, body {padding:0; margin:0;}
|
|
|
|
|
html, body, #sidebar, #page,#base_body {
|
|
|
|
|
min-height: 100%
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-16 22:07:02 +00:00
|
|
|
#page { min-height: calc(100vh - 170px - 52px) }
|
2025-03-24 01:40:45 +00:00
|
|
|
i.fa { font-weight: 100 !important ; }
|
2025-02-16 22:07:02 +00:00
|
|
|
|
|
|
|
|
.table th.th-icon { width: 2rem; }
|
|
|
|
|
|
2025-03-27 11:31:07 +00:00
|
|
|
#ticket_list .g-flex-item { border-bottom: 1px solid var(--bulma-text-soft); }
|
|
|
|
|
|
2025-04-05 18:06:51 +01:00
|
|
|
/* parsedown check-checkbox */
|
|
|
|
|
li.parsedown-task-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-16 22:07:02 +00:00
|
|
|
/* List Component */
|
|
|
|
|
.list{
|
|
|
|
|
--be-list-color:var(--bulma-text);
|
|
|
|
|
--be-list-item-description-color:var(--bulma-text-50);
|
|
|
|
|
--be-list-item-divider-color:var(--bulma-border);
|
|
|
|
|
--be-list-item-hover-color:var(--bulma-scheme-main-bis);
|
|
|
|
|
--be-list-item-image-margin:.75em;
|
|
|
|
|
--be-list-item-padding:.75em;
|
|
|
|
|
--be-list-item-title-color:var(--bulma-text-strong);
|
|
|
|
|
--be-list-item-title-weight:var(--bulma-weight-semibold);
|
|
|
|
|
color:var(--be-list-color);
|
|
|
|
|
flex-direction:column;
|
|
|
|
|
display:flex
|
|
|
|
|
}
|
|
|
|
|
.list.has-hidden-images .list-item-image{
|
|
|
|
|
display:none
|
|
|
|
|
}
|
|
|
|
|
.list.has-hoverable-list-items .list-item:hover{
|
|
|
|
|
background-color:var(--be-list-item-hover-color)
|
|
|
|
|
}
|
|
|
|
|
.list.has-overflow-ellipsis .list-item-content{
|
|
|
|
|
min-inline-size:0;
|
|
|
|
|
max-inline-size:calc(var(--length)*1ch)
|
|
|
|
|
}
|
|
|
|
|
.list.has-overflow-ellipsis .list-item-content>*{
|
|
|
|
|
text-overflow:ellipsis;
|
|
|
|
|
white-space:nowrap;
|
|
|
|
|
overflow:hidden
|
|
|
|
|
}
|
|
|
|
|
@media (hover:hover){
|
|
|
|
|
.list:not(.has-visible-pointer-controls) .list-item-controls{
|
|
|
|
|
opacity:0;
|
|
|
|
|
visibility:hidden
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list .list-item{
|
|
|
|
|
align-items:center;
|
|
|
|
|
transition:background-color .125s ease-out;
|
|
|
|
|
display:flex;
|
|
|
|
|
position:relative;
|
|
|
|
|
/* TP: update + align top */
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
@media (hover:hover){
|
|
|
|
|
.list .list-item:hover .list-item-controls,.list .list-item:focus-within .list-item-controls{
|
|
|
|
|
opacity:initial;
|
|
|
|
|
visibility:initial
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list .list-item:not(.box){
|
|
|
|
|
padding-block:var(--be-list-item-padding);
|
|
|
|
|
padding-inline:var(--be-list-item-padding)
|
|
|
|
|
}
|
|
|
|
|
.list .list-item:not(:last-child):not(.box){
|
|
|
|
|
border-block-end:1px solid var(--be-list-item-divider-color)
|
|
|
|
|
}
|
|
|
|
|
@media screen and (width<=768px){
|
|
|
|
|
.list:not(.has-overflow-ellipsis) .list .list-item{
|
|
|
|
|
flex-wrap:wrap
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list .list-item-image{
|
|
|
|
|
flex-shrink:0;
|
|
|
|
|
margin-inline-end:var(--be-list-item-image-margin);
|
|
|
|
|
/* TP: update + add margin-top */
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
@media screen and (width<=768px){
|
|
|
|
|
.list .list-item-image{
|
|
|
|
|
padding-block:.5rem;
|
|
|
|
|
padding-inline:0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list .list-item-content{
|
|
|
|
|
flex-direction:column;
|
|
|
|
|
flex-grow:1;
|
|
|
|
|
display:flex
|
|
|
|
|
}
|
|
|
|
|
@media screen and (width<=768px){
|
|
|
|
|
.list .list-item-content{
|
|
|
|
|
padding-block:.5rem;
|
|
|
|
|
padding-inline:0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list .list-item-title{
|
|
|
|
|
color:var(--be-list-item-title-color);
|
|
|
|
|
font-weight:var(--be-list-item-title-weight);
|
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
|
}
|
|
|
|
|
.list .list-item-description{
|
|
|
|
|
color:var(--be-list-item-description-color)
|
|
|
|
|
}
|
|
|
|
|
.list .list-item-controls{
|
|
|
|
|
flex-shrink:0;
|
|
|
|
|
transition:opacity .125s ease-out
|
|
|
|
|
}
|
|
|
|
|
@media screen and (width<=768px){
|
|
|
|
|
.list .list-item-controls{
|
|
|
|
|
flex-wrap:wrap;
|
|
|
|
|
padding-block:.5rem;
|
|
|
|
|
padding-inline:0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media screen and (width>=769px),print{
|
|
|
|
|
.list .list-item-controls{
|
|
|
|
|
padding-inline-start:var(--be-list-item-padding)
|
|
|
|
|
}
|
|
|
|
|
.list:not(.has-visible-pointer-controls) .list .list-item-controls{
|
|
|
|
|
block-size:100%;
|
|
|
|
|
align-items:center;
|
|
|
|
|
padding-block-end:var(--be-list-item-padding);
|
|
|
|
|
display:flex;
|
|
|
|
|
position:absolute;
|
|
|
|
|
inset-inline-end:0
|
|
|
|
|
}
|
|
|
|
|
}
|