mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
WIP preserve local changes before duckie merge
This commit is contained in:
+621
-17
@@ -106,21 +106,302 @@
|
||||
}
|
||||
|
||||
.nitro-friends {
|
||||
width: 250px;
|
||||
height: 300px;
|
||||
width: 332px;
|
||||
height: 445px;
|
||||
min-width: 332px;
|
||||
min-height: 445px;
|
||||
max-width: 332px;
|
||||
max-height: calc(100vh - 16px);
|
||||
resize: none !important;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #111;
|
||||
|
||||
& span,
|
||||
& input,
|
||||
& button {
|
||||
font-family: Ubuntu, sans-serif !important;
|
||||
}
|
||||
|
||||
& .nitro-card-title {
|
||||
font-family: UbuntuCondensed, Ubuntu, sans-serif !important;
|
||||
font-size: 15px !important;
|
||||
}
|
||||
|
||||
& .nitro-card-header {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .18);
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell {
|
||||
padding: 0 !important;
|
||||
gap: 0 !important;
|
||||
background: #f3f3ef;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-content,
|
||||
& .nitro-card-content-shell {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #6d7b84 #cdd4d8;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-content::-webkit-scrollbar,
|
||||
& .nitro-card-content-shell::-webkit-scrollbar {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-content::-webkit-scrollbar-track,
|
||||
& .nitro-card-content-shell::-webkit-scrollbar-track {
|
||||
background: linear-gradient(180deg, #e1e5e8 0%, #cad1d5 100%);
|
||||
border-left: 1px solid #818a8f;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-content::-webkit-scrollbar-thumb,
|
||||
& .nitro-card-content-shell::-webkit-scrollbar-thumb {
|
||||
background: linear-gradient(180deg, #93b6c6 0%, #688fa2 100%);
|
||||
border: 1px solid #476a7a;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-header {
|
||||
min-height: 24px;
|
||||
padding: 3px 7px !important;
|
||||
color: #111;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-header span {
|
||||
font-size: 12px;
|
||||
color: #111 !important;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-header .fa-icon {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set.active {
|
||||
min-height: 0;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
& .nitro-card-accordion-set-content {
|
||||
overflow-y: auto !important;
|
||||
}
|
||||
|
||||
& .friends-list-item {
|
||||
min-height: 34px;
|
||||
padding: 0 4px !important;
|
||||
color: #111;
|
||||
font-size: 13px;
|
||||
background: #f7f7f7;
|
||||
border: 0 !important;
|
||||
gap: 3px !important;
|
||||
}
|
||||
|
||||
& .friends-list-toolbar {
|
||||
min-height: 22px;
|
||||
font-size: 12px;
|
||||
background: #efefef;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .12);
|
||||
}
|
||||
|
||||
& .friends-list-toolbar-link {
|
||||
color: #111;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
& .friends-list-item:nth-child(even) {
|
||||
background: #e6e6e6;
|
||||
}
|
||||
|
||||
& .friends-list-item.selected {
|
||||
color: #000 !important;
|
||||
background: #bfe7f6 !important;
|
||||
}
|
||||
|
||||
& .friends-list-user {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-width: 0;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
& .friends-list-user > div:nth-child(2) {
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
& .friends-list-avatar {
|
||||
position: relative;
|
||||
width: 22px;
|
||||
height: 34px;
|
||||
flex-shrink: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
& .friends-list-avatar .avatar-image {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: -24px;
|
||||
width: 90px;
|
||||
height: 130px;
|
||||
margin: 0;
|
||||
transform: translateX(-50%);
|
||||
background-position: center -8px !important;
|
||||
}
|
||||
|
||||
& .friends-list-name {
|
||||
min-width: 0;
|
||||
margin-left: 3px;
|
||||
overflow: hidden;
|
||||
color: #111;
|
||||
font-size: 13px;
|
||||
line-height: 1.15;
|
||||
font-weight: 500;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
& .friends-list-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
& .nitro-friends-spritesheet.icon-follow {
|
||||
width: 15px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
& .nitro-friends-spritesheet.icon-chat {
|
||||
width: 17px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
& .search-input {
|
||||
border: 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
||||
min-height: 28px;
|
||||
padding: 5px 8px;
|
||||
color: #111 !important;
|
||||
font-size: 13px !important;
|
||||
line-height: 1.2;
|
||||
background: #fff;
|
||||
border: 1px solid #79858c;
|
||||
border-radius: 2px;
|
||||
box-shadow: inset 1px 1px 0 #ececec;
|
||||
outline: none;
|
||||
|
||||
&::placeholder {
|
||||
color: #666;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite {
|
||||
width: 250px;
|
||||
width: 270px;
|
||||
height: 225px;
|
||||
min-width: 270px;
|
||||
min-height: 225px;
|
||||
max-width: 270px;
|
||||
max-height: 225px;
|
||||
resize: none !important;
|
||||
|
||||
& .nitro-card-content-shell {
|
||||
padding: 10px !important;
|
||||
gap: 8px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite-content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite-summary {
|
||||
padding: 6px 8px;
|
||||
color: #111;
|
||||
font-size: 13px;
|
||||
line-height: 1.3;
|
||||
font-weight: 700;
|
||||
background: #fff;
|
||||
border: 1px solid rgba(0, 0, 0, .35);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite-textarea {
|
||||
width: 100%;
|
||||
height: 92px;
|
||||
padding: 7px 8px;
|
||||
color: #111;
|
||||
font-size: 13px;
|
||||
line-height: 1.3;
|
||||
background: #fff;
|
||||
border: 1px solid #888;
|
||||
border-radius: 2px;
|
||||
resize: none;
|
||||
outline: none;
|
||||
|
||||
&::placeholder {
|
||||
color: #666;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite-note {
|
||||
padding: 4px 6px;
|
||||
color: #111 !important;
|
||||
font-size: 12px !important;
|
||||
line-height: 1.3;
|
||||
background: rgba(255, 255, 255, .75);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.nitro-friends-room-invite-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.nitro-friends-remove-confirmation {
|
||||
width: 250px;
|
||||
width: 270px;
|
||||
height: 225px;
|
||||
min-width: 270px;
|
||||
min-height: 225px;
|
||||
max-width: 270px;
|
||||
max-height: 225px;
|
||||
resize: none !important;
|
||||
}
|
||||
|
||||
.nitro-friends-remove-confirmation-text {
|
||||
color: #111;
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
white-space: pre-wrap;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.nitro-friends-remove-confirmation-content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.nitro-friends-remove-confirmation-names {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.nitro-friends-remove-confirmation-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.friend-bar {
|
||||
@@ -142,27 +423,298 @@
|
||||
}
|
||||
}
|
||||
|
||||
.nitro-friends-messenger {
|
||||
& .layout-grid-item {
|
||||
min-height: 50px;
|
||||
.messenger-card {
|
||||
width: 332px;
|
||||
min-width: 332px;
|
||||
max-width: 332px;
|
||||
height: 445px;
|
||||
min-height: 445px;
|
||||
max-height: 445px;
|
||||
resize: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
@media (max-width: 380px), (max-height: 470px) {
|
||||
.messenger-card {
|
||||
width: calc(100vw - 16px);
|
||||
min-width: 0;
|
||||
max-width: calc(100vw - 16px);
|
||||
height: min(445px, calc(100vh - 16px));
|
||||
min-height: 0;
|
||||
max-height: calc(100vh - 16px);
|
||||
}
|
||||
}
|
||||
|
||||
.messenger-card {
|
||||
& span,
|
||||
& input,
|
||||
& button {
|
||||
box-sizing: border-box;
|
||||
font-family: Ubuntu, sans-serif !important;
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell {
|
||||
padding: 0 !important;
|
||||
gap: 0 !important;
|
||||
background: #f3f3ef;
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell,
|
||||
& .chat-messages {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #6d7b84 #cdd4d8;
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell::-webkit-scrollbar,
|
||||
& .chat-messages::-webkit-scrollbar {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell::-webkit-scrollbar-track,
|
||||
& .chat-messages::-webkit-scrollbar-track {
|
||||
background: linear-gradient(180deg, #e1e5e8 0%, #cad1d5 100%);
|
||||
border-left: 1px solid #818a8f;
|
||||
}
|
||||
|
||||
& .nitro-card-content-shell::-webkit-scrollbar-thumb,
|
||||
& .chat-messages::-webkit-scrollbar-thumb {
|
||||
background: linear-gradient(180deg, #93b6c6 0%, #688fa2 100%);
|
||||
border: 1px solid #476a7a;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
& .nitro-card-header {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .18);
|
||||
}
|
||||
|
||||
& .nitro-card-title {
|
||||
font-family: UbuntuCondensed, Ubuntu, sans-serif !important;
|
||||
font-size: 15px !important;
|
||||
}
|
||||
|
||||
& .messenger-card-body {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
& .messenger-avatar-bar {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
padding: 6px 8px;
|
||||
background: #efefef;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .12);
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
& .messenger-avatar-tab {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px;
|
||||
min-width: 36px;
|
||||
height: 36px;
|
||||
min-height: 36px;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
background: #d7d7d7;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
padding: 0;
|
||||
|
||||
&.active {
|
||||
background: #bfe7f6;
|
||||
}
|
||||
|
||||
&.unread {
|
||||
background: #7dca73;
|
||||
}
|
||||
|
||||
& .avatar-image {
|
||||
position: absolute;
|
||||
left: 50% !important;
|
||||
top: -31px !important;
|
||||
width: 90px !important;
|
||||
height: 130px !important;
|
||||
margin: 0 !important;
|
||||
background-position: center -8px !important;
|
||||
transform: translateX(-50%) !important;
|
||||
}
|
||||
}
|
||||
|
||||
& .messenger-thread-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-shrink: 0;
|
||||
padding: 4px 8px;
|
||||
background: #efefef;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .12);
|
||||
}
|
||||
|
||||
& .messenger-thread-name {
|
||||
color: #111 !important;
|
||||
font-size: 13px !important;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
& .messenger-actions {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
& .messenger-btn {
|
||||
min-height: 24px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 7px;
|
||||
color: #fff !important;
|
||||
font-size: 12px !important;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
background: #2f84aa;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
|
||||
&.danger {
|
||||
background: #a81a12;
|
||||
border-color: #a81a12;
|
||||
}
|
||||
|
||||
&.close-btn {
|
||||
width: 22px;
|
||||
padding: 0 5px;
|
||||
color: #000 !important;
|
||||
font-size: 13px;
|
||||
background: #d7d7d7;
|
||||
}
|
||||
|
||||
&.icon-btn {
|
||||
width: 22px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&.send {
|
||||
background: #00800b;
|
||||
border-color: #00800b;
|
||||
}
|
||||
}
|
||||
|
||||
& .chat-messages {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
overflow-y: auto;
|
||||
padding: 8px;
|
||||
background:
|
||||
linear-gradient(#f7f7f7, #f7f7f7) padding-box,
|
||||
repeating-linear-gradient(180deg, #f7f7f7 0 34px, #ececec 34px 68px);
|
||||
|
||||
& .messenger-message-row {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
align-items: flex-start;
|
||||
|
||||
&.own > .message-avatar:first-child {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
& .message-avatar {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
flex-shrink: 0;
|
||||
overflow: visible;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
|
||||
& .avatar-image {
|
||||
position: absolute;
|
||||
margin-left: -22px;
|
||||
margin-top: -25px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 56%;
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
margin: 0;
|
||||
background-position: center center !important;
|
||||
transform: translate(-50%, -50%) scale(.95);
|
||||
}
|
||||
}
|
||||
|
||||
& .messenger-message-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
& .messenger-message-name {
|
||||
color: #111 !important;
|
||||
font-size: 12px !important;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
& .messenger-message-bubble {
|
||||
position: relative;
|
||||
padding: 4px 7px;
|
||||
color: #111 !important;
|
||||
font-size: 13px !important;
|
||||
line-height: 1.35;
|
||||
max-width: 200px;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
white-space: pre-wrap;
|
||||
background: #fff;
|
||||
border: 1px solid rgba(0, 0, 0, .08);
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .7);
|
||||
}
|
||||
|
||||
& .messenger-message-bubble .text-break {
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
& .messenger-translation-block {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
& .messenger-translation-row {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 4px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
& .messenger-translation-label {
|
||||
min-width: 48px;
|
||||
flex-shrink: 0;
|
||||
opacity: .7;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
& .messenger-message-time {
|
||||
color: #666 !important;
|
||||
font-size: 11px !important;
|
||||
}
|
||||
|
||||
& .messenger-message-row.own .messenger-message-time {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
& .messages-group-left {
|
||||
position: relative;
|
||||
|
||||
@@ -171,12 +723,24 @@
|
||||
content: ' ';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-right: 8px solid #DFDFDF;
|
||||
border-right: 8px solid #fff;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
top: 10px;
|
||||
left: -8px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: ' ';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-right: 7px solid #fff;
|
||||
border-top: 7px solid transparent;
|
||||
border-bottom: 7px solid transparent;
|
||||
top: 11px;
|
||||
left: -6px;
|
||||
}
|
||||
}
|
||||
|
||||
& .messages-group-right {
|
||||
@@ -187,12 +751,52 @@
|
||||
content: ' ';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 8px solid #DFDFDF;
|
||||
border-left: 8px solid #fff;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
top: 10px;
|
||||
right: -8px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: ' ';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 7px solid #fff;
|
||||
border-top: 7px solid transparent;
|
||||
border-bottom: 7px solid transparent;
|
||||
top: 11px;
|
||||
right: -6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& .messenger-input-row {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
padding: 6px 8px;
|
||||
background: #efefef;
|
||||
border-top: 1px solid rgba(0, 0, 0, .12);
|
||||
|
||||
& input {
|
||||
flex: 1;
|
||||
min-height: 28px;
|
||||
padding: 0 8px;
|
||||
color: #111 !important;
|
||||
font-size: 13px !important;
|
||||
line-height: 1.2;
|
||||
background: #fff;
|
||||
border: 1px solid #888;
|
||||
border-radius: 3px;
|
||||
outline: none;
|
||||
|
||||
&::placeholder {
|
||||
color: #666;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+51
-18
@@ -1,4 +1,5 @@
|
||||
@import 'tailwindcss';
|
||||
@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Pixelify+Sans:wght@400..700&family=Vampiro+One&display=swap');
|
||||
|
||||
@config "../../tailwind.config.js";
|
||||
|
||||
@@ -22,6 +23,7 @@ body {
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #6d7b84 #c8d0d4;
|
||||
}
|
||||
|
||||
.image-rendering-pixelated {
|
||||
@@ -35,45 +37,76 @@ body {
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: .625rem;
|
||||
width: .875rem;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar:horizontal {
|
||||
height: .625rem;
|
||||
height: .875rem;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar:not(:horizontal) {
|
||||
width: .625rem;
|
||||
width: .875rem;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: rgba(0, 0, 0, .08);
|
||||
border-radius: .5rem;
|
||||
background: linear-gradient(180deg, #dfe5e8 0%, #c9d1d5 100%);
|
||||
border-left: 1px solid #7a858b;
|
||||
border-right: 1px solid #eef3f5;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: rgba(30, 114, 149, .35);
|
||||
border-radius: .5rem;
|
||||
border: 2px solid transparent;
|
||||
background-clip: padding-box;
|
||||
background: linear-gradient(180deg, #8fb5c7 0%, #5d8ea5 100%);
|
||||
border: 1px solid #446879;
|
||||
border-radius: 2px;
|
||||
box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.28);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(30, 114, 149, .6);
|
||||
border-radius: .5rem;
|
||||
border: 2px solid transparent;
|
||||
background-clip: padding-box;
|
||||
background: linear-gradient(180deg, #99c2d5 0%, #689ab0 100%);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:active {
|
||||
background: #185D79;
|
||||
border-radius: .5rem;
|
||||
border: 2px solid transparent;
|
||||
background-clip: padding-box;
|
||||
background: linear-gradient(180deg, #5c889d 0%, #436977 100%);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background: rgba(0, 0, 0, .08);
|
||||
background: #c9d1d5;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button {
|
||||
display: block;
|
||||
width: .875rem;
|
||||
height: .875rem;
|
||||
background-color: #d8dfe3;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
border-left: 1px solid #7a858b;
|
||||
border-right: 1px solid #eef3f5;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:vertical:decrement {
|
||||
background-image: linear-gradient(135deg, transparent 50%, #35586a 50%), linear-gradient(225deg, transparent 50%, #35586a 50%);
|
||||
background-size: 6px 6px;
|
||||
background-position: calc(50% - 3px) 55%, calc(50% + 3px) 55%;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:vertical:increment {
|
||||
background-image: linear-gradient(315deg, transparent 50%, #35586a 50%), linear-gradient(45deg, transparent 50%, #35586a 50%);
|
||||
background-size: 6px 6px;
|
||||
background-position: calc(50% - 3px) 45%, calc(50% + 3px) 45%;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:horizontal:decrement {
|
||||
background-image: linear-gradient(45deg, transparent 50%, #35586a 50%), linear-gradient(135deg, transparent 50%, #35586a 50%);
|
||||
background-size: 6px 6px;
|
||||
background-position: 58% calc(50% - 3px), 58% calc(50% + 3px);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button:single-button:horizontal:increment {
|
||||
background-image: linear-gradient(225deg, transparent 50%, #35586a 50%), linear-gradient(315deg, transparent 50%, #35586a 50%);
|
||||
background-size: 6px 6px;
|
||||
background-position: 42% calc(50% - 3px), 42% calc(50% + 3px);
|
||||
}
|
||||
|
||||
@layer components {
|
||||
|
||||
@@ -113,6 +113,7 @@
|
||||
max-height: 280px;
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.nitro-purse__content.is-closed {
|
||||
@@ -200,6 +201,7 @@
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
letter-spacing: 0.01em;
|
||||
color: rgba(255, 255, 255, 0.88) !important;
|
||||
}
|
||||
|
||||
.nitro-purse .nitro-purse-button.currency--1 .text-white {
|
||||
@@ -270,10 +272,11 @@
|
||||
justify-content: center;
|
||||
min-height: 20px;
|
||||
padding: 0;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border: 1px solid rgba(7, 23, 31, 0.82);
|
||||
border-radius: 7px;
|
||||
color: rgba(255, 255, 255, 0.88);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
box-shadow: none;
|
||||
transition: background-color 0.18s ease, transform 0.18s ease;
|
||||
}
|
||||
|
||||
@@ -335,7 +338,7 @@
|
||||
.seasonal-image {
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 13px;
|
||||
height: 14px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user