fix(core): update

This commit is contained in:
Philipp Kunz 2023-12-26 21:21:18 +01:00
parent f8d5f86814
commit d99fc8bde9
4 changed files with 18 additions and 4 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.0.238', version: '1.0.239',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@ -62,6 +62,10 @@ export class DeesInputCheckbox extends DeesElement {
display: block; display: block;
position: relative; position: relative;
margin: 20px 0px; margin: 20px 0px;
cursor: default;
}
:host(:hover) {
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
} }
.maincontainer { .maincontainer {

View File

@ -99,7 +99,7 @@ export class DeesInputDropdown extends DeesElement {
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
padding: 0px 8px; padding: 0px 8px;
background: ${cssManager.bdTheme('#fafafa', '#222')}; background: ${cssManager.bdTheme('#fafafa', '#222222')};
box-shadow: ${cssManager.bdTheme('0px 1px 4px rgba(0,0,0,0.3)', 'none')}; box-shadow: ${cssManager.bdTheme('0px 1px 4px rgba(0,0,0,0.3)', 'none')};
border-radius: 3px; border-radius: 3px;
border-top: ${cssManager.bdTheme('1px solid #CCC', '1px solid #444')}; border-top: ${cssManager.bdTheme('1px solid #CCC', '1px solid #444')};
@ -107,12 +107,16 @@ export class DeesInputDropdown extends DeesElement {
transition: all 0.2s ease; transition: all 0.2s ease;
} }
.selectedBox:hover {
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
}
.accentBottom { .accentBottom {
background: #ffffff10; filter: none !important;
} }
.accentTop { .accentTop {
background: #ffffff10; filter: none !important;
} }
.selectionBox { .selectionBox {

View File

@ -120,6 +120,7 @@ export class DeesInputText extends DeesElement {
font-size: 16px; font-size: 16px;
position: relative; position: relative;
z-index: 2; z-index: 2;
cursor: default;
// see template for more // see template for more
} }
@ -133,6 +134,11 @@ export class DeesInputText extends DeesElement {
input:focus { input:focus {
outline: none; outline: none;
border-bottom: 1px solid #e4002b; border-bottom: 1px solid #e4002b;
cursor: text;
}
input:hover {
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
} }
.showPassword { .showPassword {