diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index dc30c7c..2d000a5 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-catalog', - version: '1.0.91', + version: '1.0.92', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-input-text.ts b/ts_web/elements/dees-input-text.ts index 1ca88cf..7087ef6 100644 --- a/ts_web/elements/dees-input-text.ts +++ b/ts_web/elements/dees-input-text.ts @@ -77,6 +77,7 @@ export class DeesInputText extends DeesElement { transition: all 0.2s; outline: none; font-size: 16px; + font-family: "Roboto"; color: ${this.goBright ? '#333' : '#ccc'}; } diff --git a/ts_web/elements/dees-searchbox.ts b/ts_web/elements/dees-searchbox.ts new file mode 100644 index 0000000..e69de29 diff --git a/ts_web/elements/dees-table.ts b/ts_web/elements/dees-table.ts index 19e29b8..0f53008 100644 --- a/ts_web/elements/dees-table.ts +++ b/ts_web/elements/dees-table.ts @@ -106,7 +106,8 @@ export class DeesTable extends DeesElement { .mainbox { color: ${cssManager.bdTheme('#333', '#fff')}; font-family: Roboto Mono; - padding: 20px; + font-size: 16px; + padding: 16px; display: block; width: 100%; min-height: 50px; @@ -121,7 +122,7 @@ export class DeesTable extends DeesElement { table, .noDataSet { - margin-top: 20px; + margin-top: 16px; color: ${cssManager.bdTheme('#333', '#fff')}; border-collapse: collapse; width: 100%; @@ -161,7 +162,7 @@ export class DeesTable extends DeesElement { border-right: 1px dashed ${cssManager.bdTheme('#999', '#808080')}; } .innerCellContainer { - padding: 7px 10px; + padding: 6px 8px; } th:first-child .innerCellContainer, td:first-child .innerCellContainer { @@ -177,11 +178,11 @@ export class DeesTable extends DeesElement { } .tableStatistics { - padding: 5px 20px; - font-size: 14px; + padding: 4px 16px; + font-size: 12px; color: ${cssManager.bdTheme('#111', '#ffffff90')}; background: ${cssManager.bdTheme('#eeeeeb', '#00000050')}; - margin: 20px -20px -20px -20px; + margin: 16px -16px -16px -16px; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; }