Whalebird-desktop-client-ma.../renderer/app.scss

355 lines
4.8 KiB
SCSS
Raw Normal View History

2023-11-01 17:20:27 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-11-03 12:37:40 +01:00
.emojione {
2023-11-04 05:03:56 +01:00
display: inline-block;
2023-11-03 12:37:40 +01:00
width: 1.2rem;
height: 1.2rem;
}
2023-11-17 15:01:54 +01:00
.timeline-wrapper {
width: calc(100% - 16rem);
}
2023-11-17 15:01:54 +01:00
.timeline {
width: 100%;
}
.timeline-with-drawer {
width: calc(100% - 384px);
}
.detail {
width: 384px;
}
@media screen and (max-width: 1112px) {
.sidebar-menu {
display: none;
}
.my-profile {
visibility: hidden;
}
.sidebar {
width: 64px;
}
.timeline-wrapper {
width: calc(100% - 64px);
}
2024-01-31 15:17:48 +01:00
.sidebar-menu-item {
position: relative;
}
.sidebar-menu-item > span {
display: none;
}
2024-01-31 15:17:48 +01:00
.sidebar-toolchip {
position: absolute;
top: 2px;
right: 2px;
font-size: 7px;
}
.sidebar-toolchip > div {
padding: 2px 4px;
}
}
2023-11-17 15:01:54 +01:00
@media screen and (max-width: 996px) {
.timeline-with-drawer {
display: none;
}
.detail {
width: 100%;
}
}
2023-12-02 03:50:42 +01:00
.raw-html .invisible {
display: none;
}
2023-12-02 07:13:28 +01:00
.timeline-scrollable {
overflow-y: auto;
overflow-x: auto;
2023-12-02 16:58:29 +01:00
}
2023-12-02 07:13:28 +01:00
2023-12-02 16:58:29 +01:00
.timeline-scrollable::-webkit-scrollbar {
width: 6px !important;
height: 6px !important;
}
2023-12-02 07:13:28 +01:00
2023-12-02 16:58:29 +01:00
.timeline-scrollable::-webkit-scrollbar-thumb {
background-color: rgb(203 213 225);
border-radius: 4px !important;
opacity: 0;
}
2023-12-02 07:13:28 +01:00
2023-12-02 16:58:29 +01:00
.timeline-scrollable::-webkit-scrollbar-track {
border-radius: 4px !important;
background-color: rgb(241 245 249);
}
2023-12-02 07:13:28 +01:00
2024-03-14 17:12:19 +01:00
.dark {
.timeline-scrollable::-webkit-scrollbar-thumb {
background-color: #616161;
border-radius: 4px !important;
opacity: 0;
}
.timeline-scrollable::-webkit-scrollbar-track {
border-radius: 4px !important;
background-color: #424242;
}
}
2023-12-02 16:58:29 +01:00
.timeline-scrollable:hover::-webkit-scrollbar-thumb {
opacity: 1;
2023-12-02 07:13:28 +01:00
}
.no-scroll::-webkit-scrollbar {
display: none;
}
button:focus {
outline: none;
}
a {
color: blue;
}
a:hover {
text-decoration: underline;
}
2024-03-09 10:26:43 +01:00
.theme-blue {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-indigo-800;
@apply to-indigo-700;
}
.theme-bg {
@apply bg-blue-950;
}
.theme-bg-secondary {
@apply bg-blue-900;
}
.theme-text-primary {
@apply text-blue-100;
}
.theme-text-subtle {
@apply text-blue-600;
}
.theme-badge {
@apply bg-blue-600;
}
.theme-enabled {
@apply text-blue-400;
}
.theme-enabled:hover {
@apply text-blue-600;
}
}
.theme-orange {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-orange-900;
@apply to-orange-800;
}
.theme-bg {
@apply bg-deep-orange-900;
}
.theme-bg-secondary {
@apply bg-orange-900;
}
.theme-text-primary {
@apply text-deep-orange-100;
}
.theme-text-subtle {
@apply text-deep-orange-600;
}
.theme-badge {
@apply bg-deep-orange-600;
}
.theme-enabled {
@apply text-deep-orange-400;
}
.theme-enabled:hover {
@apply text-deep-orange-600;
}
}
2024-03-09 14:13:44 +01:00
.theme-purple {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-purple-900;
@apply to-purple-800;
}
.theme-bg {
@apply bg-deep-purple-900;
}
.theme-bg-secondary {
@apply bg-purple-900;
}
.theme-text-primary {
@apply text-deep-purple-100;
}
.theme-text-subtle {
@apply text-deep-purple-600;
}
.theme-badge {
@apply bg-deep-purple-600;
}
.theme-enabled {
@apply text-deep-purple-400;
}
.theme-enabled:hover {
@apply text-deep-purple-600;
}
}
.theme-green {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-teal-900;
@apply to-teal-800;
}
.theme-bg {
@apply bg-green-900;
}
.theme-bg-secondary {
@apply bg-green-900;
}
.theme-text-primary {
@apply text-green-100;
}
.theme-text-subtle {
@apply text-green-600;
}
.theme-badge {
@apply bg-green-600;
}
.theme-enabled {
@apply text-green-400;
}
.theme-enabled:hover {
@apply text-green-600;
}
}
.theme-brown {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-gray-900;
@apply to-gray-800;
}
.theme-bg {
@apply bg-brown-900;
}
.theme-bg-secondary {
@apply bg-brown-900;
}
.theme-text-primary {
@apply text-brown-100;
}
.theme-text-subtle {
@apply text-brown-600;
}
.theme-badge {
@apply bg-brown-600;
}
.theme-enabled {
@apply text-brown-400;
}
.theme-enabled:hover {
@apply text-brown-600;
}
}
.theme-gray {
.theme-account-bg {
@apply bg-gradient-to-b;
@apply from-gray-900;
@apply to-gray-800;
}
.theme-bg {
@apply bg-blue-gray-900;
}
.theme-bg-secondary {
@apply bg-blue-gray-900;
}
.theme-text-primary {
@apply text-blue-gray-100;
}
.theme-text-subtle {
@apply text-blue-gray-600;
}
.theme-badge {
@apply bg-blue-gray-600;
}
.theme-enabled {
@apply text-blue-gray-400;
}
.theme-enabled:hover {
@apply text-blue-gray-600;
}
}
2024-03-14 17:12:19 +01:00
.dark {
a {
@apply text-blue-400;
}
}