171 lines
3.2 KiB
SCSS
171 lines
3.2 KiB
SCSS
:host {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
#dragOverlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
&.show {
|
|
opacity: 1;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.method {
|
|
width: 800px;
|
|
height: 200px;
|
|
background: var(--tui-background-accent-1-hover);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
|
|
.icon-holder {
|
|
border-radius: 50%;
|
|
background: var(--tui-background-accent-1);
|
|
padding: 20px;
|
|
|
|
tui-icon {
|
|
font-size: 50px;
|
|
}
|
|
}
|
|
|
|
span {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
|
|
#message-box-extension {
|
|
transition: all 0.2s ease-in-out;
|
|
width: 50%;
|
|
border-radius: 20px;
|
|
background: var(--tui-background-base-alt);
|
|
border: 2px solid var(--tui-border-normal);
|
|
transform: translateY(50px);
|
|
display: grid;
|
|
grid-template-columns: 1fr 40px;
|
|
justify-content: center;
|
|
height: 0;
|
|
|
|
&.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
#content {
|
|
padding-left: 10px;
|
|
display: flex;
|
|
gap: 5px;
|
|
align-items: center;
|
|
}
|
|
|
|
tui-icon {
|
|
font-size: 13px;
|
|
}
|
|
|
|
button {
|
|
height: 26px;
|
|
width: 30px;
|
|
}
|
|
|
|
&.shown {
|
|
transform: translateY(0);
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
#message-box {
|
|
z-index: 5;
|
|
transition: all 0.2s ease-in-out;
|
|
width: 60%;
|
|
background: var(--tui-background-base-alt);
|
|
min-height: 75px;
|
|
max-height: 200px;
|
|
border: 2px solid var(--tui-border-normal);
|
|
display: grid;
|
|
grid-template-columns: 85px 1fr 100px;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
|
|
&.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.items-left, .items-middle, .items-right {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.items-left, .items-right {
|
|
button {
|
|
height: 30px;
|
|
width: 30px;
|
|
|
|
tui-icon {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.items-middle {
|
|
::-webkit-scrollbar-thumb {
|
|
background: transparent;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
position: relative;
|
|
|
|
textarea {
|
|
width: 100%;
|
|
background: transparent;
|
|
border: none;
|
|
outline: none;
|
|
resize: none;
|
|
color: var(--tui-text-01);
|
|
font-size: 16px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.placeholder {
|
|
position: absolute;
|
|
font-size: 16px;
|
|
height: 25px;
|
|
top: 2px;
|
|
left: 2px;
|
|
color: gray;
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
&.hidden {
|
|
margin-left: 10px;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.items-right {
|
|
display: flex;
|
|
justify-content: end;
|
|
}
|
|
}
|
|
}
|
|
}
|