fix(core): update
This commit is contained in:
parent
f8d5f86814
commit
d99fc8bde9
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-catalog',
|
||||
version: '1.0.238',
|
||||
version: '1.0.239',
|
||||
description: 'website for lossless.com'
|
||||
}
|
||||
|
@ -62,6 +62,10 @@ export class DeesInputCheckbox extends DeesElement {
|
||||
display: block;
|
||||
position: relative;
|
||||
margin: 20px 0px;
|
||||
cursor: default;
|
||||
}
|
||||
:host(:hover) {
|
||||
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
|
||||
}
|
||||
|
||||
.maincontainer {
|
||||
|
@ -99,7 +99,7 @@ export class DeesInputDropdown extends DeesElement {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
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')};
|
||||
border-radius: 3px;
|
||||
border-top: ${cssManager.bdTheme('1px solid #CCC', '1px solid #444')};
|
||||
@ -107,12 +107,16 @@ export class DeesInputDropdown extends DeesElement {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.selectedBox:hover {
|
||||
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
|
||||
}
|
||||
|
||||
.accentBottom {
|
||||
background: #ffffff10;
|
||||
filter: none !important;
|
||||
}
|
||||
|
||||
.accentTop {
|
||||
background: #ffffff10;
|
||||
filter: none !important;
|
||||
}
|
||||
|
||||
.selectionBox {
|
||||
|
@ -120,6 +120,7 @@ export class DeesInputText extends DeesElement {
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
cursor: default;
|
||||
// see template for more
|
||||
}
|
||||
|
||||
@ -133,6 +134,11 @@ export class DeesInputText extends DeesElement {
|
||||
input:focus {
|
||||
outline: none;
|
||||
border-bottom: 1px solid #e4002b;
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
input:hover {
|
||||
filter: ${cssManager.bdTheme('brightness(0.95)', 'brightness(1.1)')};
|
||||
}
|
||||
|
||||
.showPassword {
|
||||
|
Loading…
Reference in New Issue
Block a user