2025-12-12 20:50:14 +05:30
|
|
|
@import "@plane/tailwind-config/index.css";
|
2025-09-03 18:11:31 +05:30
|
|
|
@import "@plane/editor/styles";
|
2025-12-12 20:50:14 +05:30
|
|
|
@import "@plane/propel/styles/react-day-picker.css";
|
|
|
|
|
@import "./power-k.css";
|
|
|
|
|
@import "./emoji.css";
|
|
|
|
|
@plugin "@tailwindcss/typography";
|
2023-07-10 12:47:00 +05:30
|
|
|
|
2025-12-12 20:50:14 +05:30
|
|
|
/* stickies and editor colors */
|
|
|
|
|
:root {
|
|
|
|
|
/* text colors */
|
|
|
|
|
--editor-colors-gray-text: #5c5e63;
|
|
|
|
|
--editor-colors-peach-text: #ff5b59;
|
|
|
|
|
--editor-colors-pink-text: #f65385;
|
|
|
|
|
--editor-colors-orange-text: #fd9038;
|
|
|
|
|
--editor-colors-green-text: #0fc27b;
|
|
|
|
|
--editor-colors-light-blue-text: #17bee9;
|
|
|
|
|
--editor-colors-dark-blue-text: #266df0;
|
|
|
|
|
--editor-colors-purple-text: #9162f9;
|
|
|
|
|
/* end text colors */
|
2023-04-22 00:15:45 +05:30
|
|
|
|
2025-12-12 20:50:14 +05:30
|
|
|
/* background colors */
|
|
|
|
|
--editor-colors-gray-background: #d6d6d8;
|
|
|
|
|
--editor-colors-peach-background: #ffd5d7;
|
|
|
|
|
--editor-colors-pink-background: #fdd4e3;
|
|
|
|
|
--editor-colors-orange-background: #ffe3cd;
|
|
|
|
|
--editor-colors-green-background: #c3f0de;
|
|
|
|
|
--editor-colors-light-blue-background: #c5eff9;
|
|
|
|
|
--editor-colors-dark-blue-background: #c9dafb;
|
|
|
|
|
--editor-colors-purple-background: #e3d8fd;
|
|
|
|
|
/* end background colors */
|
2024-08-05 20:42:14 +05:30
|
|
|
}
|
2025-12-12 20:50:14 +05:30
|
|
|
/* background colors */
|
|
|
|
|
[data-theme*="light"] {
|
|
|
|
|
--editor-colors-gray-background: #d6d6d8;
|
|
|
|
|
--editor-colors-peach-background: #ffd5d7;
|
|
|
|
|
--editor-colors-pink-background: #fdd4e3;
|
|
|
|
|
--editor-colors-orange-background: #ffe3cd;
|
|
|
|
|
--editor-colors-green-background: #c3f0de;
|
|
|
|
|
--editor-colors-light-blue-background: #c5eff9;
|
|
|
|
|
--editor-colors-dark-blue-background: #c9dafb;
|
|
|
|
|
--editor-colors-purple-background: #e3d8fd;
|
|
|
|
|
}
|
|
|
|
|
[data-theme*="dark"] {
|
|
|
|
|
--editor-colors-gray-background: #404144;
|
|
|
|
|
--editor-colors-peach-background: #593032;
|
|
|
|
|
--editor-colors-pink-background: #562e3d;
|
|
|
|
|
--editor-colors-orange-background: #583e2a;
|
|
|
|
|
--editor-colors-green-background: #1d4a3b;
|
|
|
|
|
--editor-colors-light-blue-background: #1f495c;
|
|
|
|
|
--editor-colors-dark-blue-background: #223558;
|
|
|
|
|
--editor-colors-purple-background: #3d325a;
|
|
|
|
|
}
|
|
|
|
|
/* end background colors */
|
2024-08-05 20:42:14 +05:30
|
|
|
|
2025-04-11 20:37:25 +05:30
|
|
|
.shadow-custom {
|
|
|
|
|
box-shadow: 2px 2px 8px 2px rgba(234, 231, 250, 0.3); /* Convert #EAE7FA4D to rgba */
|
|
|
|
|
}
|
|
|
|
|
/* backdrop filter */
|
|
|
|
|
.backdrop-blur-custom {
|
|
|
|
|
@apply backdrop-filter blur-[9px];
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-20 17:09:26 +05:30
|
|
|
.epr-search-container > input {
|
2025-12-12 20:50:14 +05:30
|
|
|
@apply bg-surface-2! text-primary!;
|
2024-06-20 17:09:26 +05:30
|
|
|
border: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.epr-search-container > input::placeholder {
|
2025-12-12 20:50:14 +05:30
|
|
|
@apply text-placeholder!;
|
2024-06-20 17:09:26 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.epr-search-container > .epr-icn-search {
|
2025-12-12 20:50:14 +05:30
|
|
|
@apply text-placeholder!;
|
2024-06-20 17:09:26 +05:30
|
|
|
}
|
2025-04-17 20:52:33 +05:30
|
|
|
|
|
|
|
|
/* Lock icon animations */
|
|
|
|
|
@keyframes textSlideIn {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateX(-8px);
|
|
|
|
|
max-width: 0px;
|
|
|
|
|
}
|
|
|
|
|
40% {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
max-width: 60px;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
max-width: 60px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes textFadeOut {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateX(8px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes lockIconAnimation {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(-5deg) scale(1);
|
|
|
|
|
}
|
|
|
|
|
25% {
|
|
|
|
|
transform: rotate(0deg) scale(1.15);
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
transform: rotate(5deg) scale(1.08);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(0deg) scale(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes unlockIconAnimation {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg) scale(1);
|
|
|
|
|
}
|
|
|
|
|
40% {
|
|
|
|
|
transform: rotate(-8deg) scale(1.15);
|
|
|
|
|
}
|
|
|
|
|
80% {
|
|
|
|
|
transform: rotate(3deg) scale(1.05);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(0deg) scale(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeOut {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-text-slide-in {
|
|
|
|
|
animation: textSlideIn 400ms ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-text-fade-out {
|
|
|
|
|
animation: textFadeOut 600ms ease-in 300ms forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-lock-icon {
|
|
|
|
|
animation: lockIconAnimation 600ms ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-unlock-icon {
|
|
|
|
|
animation: unlockIconAnimation 600ms ease-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-fade-out {
|
|
|
|
|
animation: fadeOut 500ms ease-in 100ms forwards;
|
|
|
|
|
}
|
2025-05-12 19:15:39 +05:30
|
|
|
|
|
|
|
|
@keyframes highlight {
|
|
|
|
|
0% {
|
2025-12-17 16:28:22 +05:30
|
|
|
background-color: var(--background-color-layer-2);
|
2025-05-12 19:15:39 +05:30
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-06 14:08:48 +05:30
|
|
|
|
|
|
|
|
/* Progress Bar Styles */
|
|
|
|
|
:root {
|
2025-12-17 16:28:22 +05:30
|
|
|
--bprogress-color: var(--background-color-accent-primary);
|
2025-11-06 14:08:48 +05:30
|
|
|
--bprogress-height: 2.5px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bprogress {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bprogress .bar {
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
90deg,
|
2025-12-17 16:28:22 +05:30
|
|
|
--alpha(var(--background-color-accent-primary) / 80%) 0%,
|
|
|
|
|
--alpha(var(--background-color-accent-primary) / 100%) 100%
|
2025-11-06 14:08:48 +05:30
|
|
|
) !important;
|
|
|
|
|
will-change: width, opacity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bprogress .peg {
|
|
|
|
|
display: block;
|
|
|
|
|
box-shadow:
|
2025-12-17 16:28:22 +05:30
|
|
|
0 0 8px --alpha(var(--background-color-accent-primary) / 60%),
|
|
|
|
|
0 0 4px --alpha(var(--background-color-accent-primary) / 40%) !important;
|
2025-11-06 14:08:48 +05:30
|
|
|
will-change: transform, opacity;
|
|
|
|
|
}
|