cleanup
This commit is contained in:
@@ -1231,11 +1231,10 @@ window.addEventListener('resize', () => {
|
||||
tableEl.style.setProperty('--filter-height', h + 'px');
|
||||
});
|
||||
|
||||
if(!filterConfig.hideCounter
|
||||
) {
|
||||
filterState.counterEl = document.createElement('div');
|
||||
filterState.counterEl.className = 'live-counter';
|
||||
container.appendChild(filterState.counterEl);
|
||||
if(!filterConfig.hideCounter) {
|
||||
filterState.counterEl = document.createElement('div');
|
||||
filterState.counterEl.className = 'live-counter';
|
||||
container.appendChild(filterState.counterEl);
|
||||
}
|
||||
|
||||
syncFilterWidth(container);
|
||||
|
||||
@@ -21,10 +21,11 @@
|
||||
.start-item .unload { background:var(--theme-startmenu-item-disabled-backcolor); color:var(--theme-startmenu-item-disabled-color); }
|
||||
/* #taskbar .taskbar-item { background:var(--theme-taskbar-item-backcolor); } */
|
||||
|
||||
.taskbar-item { position: relative;}
|
||||
.taskbar-item::before { background: var(--theme-accent-active-color); }
|
||||
.taskbar-item { position: relative; }
|
||||
.taskbar-item::before { background: var(--theme-accent-active-backcolor); }
|
||||
.taskbar-item.focus::before { background: var(--theme-accent-active-backcolor); }
|
||||
/* .taskbar-item.minimized { background:var(--theme-taskbar-item-minimized-backcolor); color:var(--theme-taskbar-item-minimized-color); border-color:var(--theme-taskbar-item-minimized-border-color);} */
|
||||
.taskbar-item.minimized::before { background: var(--theme-taskbar-item-minimized-backcolor); }
|
||||
/* .taskbar-item.minimized { background:var(--theme-taskbar-item-minimized-backcolor); color:var(--theme-taskbar-item-minimized-color); border-color:var(--theme-taskbar-item-minimized-border-color);} */
|
||||
.taskbar-item.default { background:var(--theme-taskbar-item-default-backcolor); color:var(--theme-taskbar-item-default-color); border-color:var(--theme-taskbar-item-default-border-color);}
|
||||
.taskbar-item:hover { background-color:var(--theme-startmenu-item-hover-backcolor); color:var(--theme-startmenu-item-hover-color); }
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ button:not(:disabled).yellowbutton:hover { background:var(--theme-button-yellow-
|
||||
|
||||
|
||||
/* #region Container */
|
||||
.container.static { width:calc(100% - 10px); margin:5px auto; display:flex; gap:12px; min-height:0; overflow:auto; max-height:100%; flex-direction: column;}
|
||||
.container.static { width:calc(100% - 10px); margin:5px auto; display:flex; gap:6px; min-height:0; overflow:auto; max-height:100%; flex-direction: column;}
|
||||
/* .card.static { display:flex; flex-direction:column;flex: 0 0 auto; } */
|
||||
.card.static.row { overflow:hidden; display:flex; flex-direction:row; flex-wrap: wrap;}
|
||||
.card.static { overflow:hidden; display:flex; flex-direction:column; }
|
||||
|
||||
@@ -36,7 +36,7 @@ body, html { margin:0; padding:0; height:100%; overflow: hidden; font-family: va
|
||||
#taskbar-windows { display:flex; gap:6px; align-items:center; flex:1; overflow-y:hidden;overflow-x: auto; min-width: 0;scrollbar-width: thin; }
|
||||
.taskbar-item { display: flex; position: relative; padding:4px 10px; border-radius:4px; }
|
||||
.taskbar-item::before { content: ''; position: absolute; bottom:1px; left:50%; width:40%; height: 4px; border-radius:4px; transform:translateX(-50%) scaleX(0); transform-origin:center; transition:transform var(--times-transition-colors) ease; }
|
||||
.taskbar-item.focus::before { transform: translateX(-50%) scaleX(1); }
|
||||
.taskbar-item.minimized::before, .taskbar-item.focus::before { transform: translateX(-50%) scaleX(1); }
|
||||
|
||||
.notify-button { margin-left:auto; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
|
||||
.notify-button.resume, .notify-button.pulse { animation: pulse 1.5s infinite; animation-play-state: running; }
|
||||
|
||||
@@ -47,7 +47,7 @@ table .text-align\:left { text-align:left; }
|
||||
td { overflow:hidden; text-overflow:ellipsis; /* verhindert, dass Inhalt die Zelle sprengt */ }
|
||||
|
||||
.table-filter-container {
|
||||
border-bottom-width:8px;
|
||||
border-bottom-width:1px;
|
||||
border-bottom-style:solid;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
@@ -56,17 +56,17 @@ td { overflow:hidden; text-overflow:ellipsis; /* verhindert, dass Inhalt die Zel
|
||||
left:0px;
|
||||
top:0px;
|
||||
width: 100% !important;
|
||||
height: fit-content;
|
||||
/* z-index:20; */
|
||||
padding:0px;
|
||||
border-radius:var(--border-raduis) var(--border-raduis) 0 0;
|
||||
justify-content: flex-start;
|
||||
align-items: space-between;
|
||||
flex: 1;
|
||||
flex-wrap: wrap;
|
||||
overflow-x:auto;
|
||||
}
|
||||
.table-filter-container .live-counter { position:static; text-align: right ; padding-right:10px; font-weight:bolder; }
|
||||
.table-filter-container input { padding:5px !important; flex:1 1 100vw; margin:5px 0;}
|
||||
.table-filter-container .live-counter { position:static; text-align: left ; padding-left:10px; font-style: italic; }
|
||||
.table-filter-container input { padding:5px !important; ; margin:5px 0;}
|
||||
|
||||
|
||||
th.sort-asc::after {
|
||||
|
||||
Reference in New Issue
Block a user