Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8cc4c7c90 | |||
| 187ebed3ab | |||
| b909617271 | |||
| 9c2fe9f739 | |||
| ed49de64bc | |||
| 162003ba7a |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@designestate/dees-catalog",
|
||||
"version": "1.0.82",
|
||||
"version": "1.0.85",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@designestate/dees-catalog",
|
||||
"version": "1.0.82",
|
||||
"version": "1.0.85",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@designestate/dees-domtools": "^2.0.22",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@designestate/dees-catalog",
|
||||
"version": "1.0.82",
|
||||
"version": "1.0.85",
|
||||
"private": false,
|
||||
"description": "website for lossless.com",
|
||||
"main": "dist_ts_web/index.js",
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@designestate/dees-catalog',
|
||||
version: '1.0.82',
|
||||
version: '1.0.85',
|
||||
description: 'website for lossless.com'
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ export class DeesSpeechbubble extends DeesElement {
|
||||
position: relative;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
color: #fff;
|
||||
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
@@ -61,20 +61,21 @@ export class DeesSpeechbubble extends DeesElement {
|
||||
.arrow {
|
||||
position: absolute;
|
||||
transform: rotate(45deg);
|
||||
background: #333;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
left: 5px;
|
||||
background: ${cssManager.bdTheme('#fff', '#333')};
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
left: 4px;
|
||||
top: 5px;
|
||||
border-radius: 3px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.maincontainer {
|
||||
background: #333;
|
||||
background: ${cssManager.bdTheme('#fff', '#333')};
|
||||
padding: 0px 10px;
|
||||
border-radius: 3px;
|
||||
position: absolute;
|
||||
line-height: 30px;
|
||||
line-height: 25px;
|
||||
font-size: 12px;
|
||||
top: 0px;
|
||||
left: 8px;
|
||||
}
|
||||
@@ -118,24 +119,19 @@ export class DeesSpeechbubble extends DeesElement {
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
<div class="arrow"></div>
|
||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
<div class="container" @click=${this.handleClick}>
|
||||
<div class="arrow"></div>
|
||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
public async dispatchClick() {
|
||||
public async handleClick() {
|
||||
if (this.disabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.dispatchEvent(
|
||||
new CustomEvent('clicked', {
|
||||
detail: {
|
||||
data: null,
|
||||
},
|
||||
bubbles: true,
|
||||
})
|
||||
);
|
||||
globalThis.location.href = "https://lossless.consulting"
|
||||
}
|
||||
|
||||
public async firstUpdated() {
|
||||
|
||||
Reference in New Issue
Block a user