Spaces:
Running
Running
File size: 1,816 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
.request_block {
border: 2px solid var(--border-0-color);
border-radius: 15px;
padding: 15px;
width: 88%;
height: max-content;
box-sizing: border-box;
.label {
display: flex;
margin-bottom: 10px;
}
}
.request_container {
position: relative;
.editable {
padding-right: 28px;
}
.clickable {
cursor: text;
}
.edit_btn {
position: absolute;
right: 10px;
top: 12px;
svg {
height: 25px;
width: 25px;
}
}
}
.request_options {
position: absolute;
box-sizing: border-box;
width: 100%;
font-size: 16px;
border: 0;
border-radius: 15px;
border-top-left-radius: 0;
border-top-right-radius: 0;
overflow-y: auto;
min-height: 1rem;
padding: 16px;
background-color: var(--border-0-color);
text-align: left;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
.abbreviation_option {
display: flex;
align-items: center;
gap: 10px;
color: gray;
.abbreviation_option_label {
white-space: nowrap;
}
}
}
.request_options:before {
position: absolute;
top: 0;
left: auto;
width: 90%;
border-top: 1px solid var(--white-color);
content: "";
}
.abbreviation {
font-weight: 600;
margin: 0;
cursor: default;
text-decoration: none !important;
color: var(--secondary-color);
}
.abbreviation_single {
font-weight: 600;
}
.abbr_message {
color: var(--border-1-color);
margin-top: 10px;
display: flex;
justify-content: left;
gap: 10px;
align-items: center;
}
.request_container:hover .animated {
animation: glowing 1800ms infinite;
@keyframes glowing {
0% {
color: rgb(131, 147, 197);
}
50% {
color: rgb(0, 40, 161);
}
100% {
color: rgb(131, 147, 197);
}
}
}
.clicked {
animation: glowing 700ms infinite !important;
}
|