Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e872188be7 | |||
| 2d712e78b0 | |||
| ebeecd0686 | |||
| 1d09f994c6 | |||
| 686c3714fc | |||
| e29086036c |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@design.estate/dees-catalog",
|
||||
"version": "1.0.253",
|
||||
"version": "1.0.256",
|
||||
"private": false,
|
||||
"description": "website for lossless.com",
|
||||
"main": "dist_ts_web/index.js",
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-catalog',
|
||||
version: '1.0.253',
|
||||
version: '1.0.256',
|
||||
description: 'website for lossless.com'
|
||||
}
|
||||
|
||||
@@ -169,9 +169,9 @@ export class DeesTable<T> extends DeesElement {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-height: 50px;
|
||||
background: ${cssManager.bdTheme('#ffffff', '#333333')};
|
||||
background: ${cssManager.bdTheme('#ffffff', '#222222')};
|
||||
border-radius: 3px;
|
||||
border-top: 1px solid ${cssManager.bdTheme('#fff', '#444')};
|
||||
border-top: 1px solid ${cssManager.bdTheme('#fff', '#ffffff10')};
|
||||
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
|
||||
overflow-x: auto;
|
||||
cursor: default;
|
||||
@@ -199,7 +199,7 @@ export class DeesTable<T> extends DeesElement {
|
||||
|
||||
.headingSeparation {
|
||||
margin-top: 7px;
|
||||
border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#bcbcbc')};
|
||||
border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#444444')};
|
||||
}
|
||||
|
||||
.headerActions {
|
||||
@@ -219,9 +219,13 @@ export class DeesTable<T> extends DeesElement {
|
||||
}
|
||||
|
||||
.searchGrid {
|
||||
background: ${cssManager.bdTheme('#fff', '#111111')};
|
||||
display: grid;
|
||||
grid-gap: 16px;
|
||||
grid-template-columns: 1fr 200px;
|
||||
margin: 0px -16px;
|
||||
padding: 0px 16px;
|
||||
border-bottom: 1px solid ${cssManager.bdTheme('#fff', '#ffffff20')};
|
||||
}
|
||||
|
||||
table,
|
||||
@@ -311,22 +315,20 @@ export class DeesTable<T> extends DeesElement {
|
||||
font-weight: inherit;
|
||||
padding: 0px 6px;
|
||||
}
|
||||
|
||||
.actionsContainer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
height: 24px;
|
||||
transform: translateY(-4px);
|
||||
margin-left: -6px;
|
||||
}
|
||||
.action {
|
||||
position: relative;
|
||||
margin: -4px 0px;
|
||||
padding: 8px 10px;
|
||||
line-height: 24px;
|
||||
height: 32px;
|
||||
size: 16px;
|
||||
display: inline-block;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.action:first-child {
|
||||
margin-left: -6px;
|
||||
width: min-content;
|
||||
}
|
||||
|
||||
.action:hover {
|
||||
@@ -427,7 +429,8 @@ export class DeesTable<T> extends DeesElement {
|
||||
name: "john" AND age: 18
|
||||
\`\`\`
|
||||
|
||||
`}></dees-input-text>
|
||||
`}
|
||||
></dees-input-text>
|
||||
<dees-input-multitoggle
|
||||
.label=${'search mode'}
|
||||
.options=${['table', 'data', 'server']}
|
||||
@@ -568,8 +571,10 @@ export class DeesTable<T> extends DeesElement {
|
||||
return html`
|
||||
<td>
|
||||
<div class="innerCellContainer">
|
||||
<div class="actionsContainer">
|
||||
${this.getActionsForType('inRow').map(
|
||||
(actionArg) => html`<div
|
||||
(actionArg) => html`
|
||||
<div
|
||||
class="action"
|
||||
@click=${() =>
|
||||
actionArg.actionFunc({
|
||||
@@ -579,12 +584,16 @@ export class DeesTable<T> extends DeesElement {
|
||||
>
|
||||
${actionArg.iconName
|
||||
? html`
|
||||
<dees-icon .iconFA=${actionArg.iconName}></dees-icon>
|
||||
<dees-icon
|
||||
.iconFA=${actionArg.iconName}
|
||||
></dees-icon>
|
||||
`
|
||||
: actionArg.name}
|
||||
</div>`
|
||||
</div>
|
||||
`
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user