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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
|
/*
Utility Classes
*/
.no-min-size {
min-width: 0;
min-height: 0;
}
.initial-font-size {
font-size: initial;
}
.font-bold {
font-weight: bold;
}
.no-shadow {
box-shadow: none;
}
.devel-bg {
background-image: cross-fade(5% -gtk-recolor(url(resource:///org/gnome/Adwaita/styles/assets/devel-symbolic.svg)), image(rgba(0,0,0,0)));
}
.italic {
font-style: italic;
}
.monospace {
font-family: monospace;
}
.no-padding {
padding: 0;
}
.color-yellow-4 {
color: var(--yellow-4);
}
.font-large {
font-size: large;
}
.pill-like {
border-radius: 9999px;
}
.background-none {
background: none;
}
.min-size-64 {
min-height: 64px;
min-width: 64px;
}
.min-size-42 {
min-width: 42px;
min-height: 42px;
}
.text-uppercase {
text-transform: uppercase;
}
.font-small {
font-size: small;
}
.tuba-circular,
.dropdown-circular > button {
border-radius: 9999px;
}
.ttl-flat-button {
padding: 0px;
margin: 0px;
}
/*
Overrides
*/
calendar, calendar>header {
border: none;
}
calendar>header>button, calendar>grid>label {
border-radius: 9px;
}
rubberband {
border-radius: 9px;
}
flowboxchild {
padding: 0;
}
video > overlay > revealer > controls {
padding: 12px;
}
GtkSourceAssistant {
background: var(--popover-bg-color);
padding: 8px;
/* border-radius of child + padding */
border-radius: 14px;
}
GtkSourceAssistant.completion list row {
padding: 6px 12px 6px 12px;
}
GtkSourceAssistant scrolledwindow undershoot {
background-image: none;
box-shadow: none;
}
GtkSourceAssistant scrolledwindow .cell.icon {
padding-left: 0;
padding-top: 0;
padding-bottom: 0;
}
GtkSourceAssistant row {
border-radius: 6px;
margin: 6px 0;
padding: 6px;
}
GtkSourceAssistant row:selected {
background: rgb(from var(--accent-bg-color) r g b / calc(alpha * 0.33));
color: currentColor;
}
GtkSourceAssistant row:first-child,
GtkSourceAssistant row:last-child {
margin: 0;
}
list.uniform-border-color row {
border-bottom-color: var(--border-color);
}
.emoji-reaction-expander>box>list,
.emoji-reaction-expander>box>list>row {
border-radius: inherit;
}
.sourceview.reset {
background: transparent;
color: currentColor;
}
popover.no-padding > contents {
padding: 0;
}
flowbox > flowboxchild:hover,
flowbox > flowboxchild:active,
flowbox > flowboxchild:selected:hover,
flowbox > flowboxchild:selected:active {
background-color: inherit;
}
.ttl-box-no-shadow>revealer>box {
box-shadow: none;
}
.about .app-version{color:#fff;text-shadow:-1px -1px 0#000,1px -1px 0#000,-1px 1px 0#000,1px 1px 0#000;background:linear-gradient(150deg,#fdd81755 0,#66338b55 8.3%,#fff5 16.6%,#f4aec855 24.9%,#7bcce555 33.2%,#94551655 41.5%,#0005 49.8%,#e2201655 58.1%,#f2891755 66.4%,#efe52455 74.7%,#78b82a55 83%,#2c58a4 91.3%,#6d238055 100%);}
.about .app-version:hover{background:radial-gradient(circle at 9.75% 50%,#0000 6.66%,#7902aa 6.7%,#0000 8.4%),conic-gradient(at 26.66% 50%,#0000 222.75deg,#ffd800 0 317.25deg,#0000 0),conic-gradient(at 33% 50%,#0000 222.75deg,white 0 317.25deg,#0000 0),conic-gradient(at 39% 50%,#0000 222.75deg,#ffa6b9 0 317.25deg,#0000 0),conic-gradient(at 45.66% 50%,#0000 222.75deg,#00d2ff 0 317.25deg,#0000 0),conic-gradient(at 52% 50%,#0000 222.75deg,#753000 0 317.25deg,#0000 0),conic-gradient(at 58.33% 50%,#0000 222.75deg,#000 0 317.25deg,#0000 0),linear-gradient(to bottom,#e40303,#e40303 16.67%,#ff8c00 16.67%,#ff8c00 33.33%,#ffed00 33.33%,#ffed00 50%,#008026 50%,#008026 66.67%,#004dff 66.67%,#004dff 83.33%,#750787 83.33%,#750787);}
/*
Drive
*/
drive-item .indicator-box {
border-radius: 9999px;
padding: 6px;
}
drive-item:drop(active) {
border:none;
box-shadow: none;
}
drive-item:drop(active) image {
box-shadow: inset 0 0 0 1px var(--accent-color);
border-radius: 9px;
}
/*
Search
*/
.search.rounded { /* .search is used on GTK widgets, avoid overriding */
border-radius: 999px;
padding-left: 12px;
padding-right: 12px;
padding-top: 3px;
padding-bottom: 3px;
}
.entry-button {
margin: 0;
padding: 0;
min-width: 0; /* 24px; */
min-height: 0; /* 24px; */
}
.entry-button:not(:hover):not(:focus-within) > image {
opacity: 0.7;
}
/*
Custom Emoji Picke
*/
.picker-emoji-button {
padding: 5px;
}
/*
Badge Indicators
*/
.notification-badge {
font-weight: bold;
font-size: 0.8em;
border-radius: 10px;
min-width: 0.8em;
min-height: 0.8em;
line-height: 0.8em;
padding: 0.4em 5px;
background-color: var(--accent-bg-color);
color: white;
}
.notification-badge.no-attention {
background-color: rgb(from var(--sidebar-fg-color) r g b / calc(alpha * 0.4));
}
.notifications-all.dim-enabled .can-be-dimmed {
opacity: 0.70;
}
/* .cover-badge.button > button {
padding-top: 0px;
padding-bottom: 0px;
} */
/*
Status Actions
*/
@keyframes rotate_star {
from { -gtk-icon-transform: rotate(-72deg); }
to {}
}
@keyframes bounce {
0% { -gtk-icon-transform: translateY(-3px); }
50% { -gtk-icon-transform: translateY(3px); }
100% {}
}
@keyframes rotate_half {
from { -gtk-icon-transform: rotate(-180deg); }
to {}
}
@keyframes beat {
0% {}
50% { -gtk-icon-transform: scale(1.2); }
100% {}
}
.ttl-status-action-reblog.enabled image {
animation: rotate_half 0.4s ease;
}
.ttl-status-action-bookmark.enabled image {
animation: bounce 0.4s ease;
}
.ttl-status-action-star.enabled image {
animation: rotate_star 0.4s ease;
}
.ttl-status-action-heart.enabled image {
animation: beat 1s ease;
}
.grouped-icon {
padding: 6px;
background-color: color-mix(in srgb, currentColor 15%, transparent);
border-radius: 9999px;
}
.grouped-icon.star,
.ttl-status-action-star:hover,
.ttl-status-action-star.enabled {
color: var(--yellow-5);
}
.ttl-status-action-star:active {
color: var(--yellow-4);
}
.grouped-icon.reblog,
.ttl-status-action-reblog:hover,
.ttl-status-action-reblog.enabled {
color: var(--purple-3);
}
.ttl-status-action-reblog:active {
color: var(--purple-4);
}
.grouped-icon.follow,
.ttl-status-action-reply:hover,
.ttl-status-action-reply.enabled {
color: var(--green-3);
}
.ttl-status-action-reply:active {
color: var(--green-4);
}
.grouped-icon.sign-up,
.ttl-status-action-heart:hover,
.ttl-status-action-heart.enabled,
.ttl-status-action-bookmark:hover,
.ttl-status-action-bookmark.enabled {
color: var(--red-3);
}
.ttl-status-action-heart:active,
.ttl-status-action-bookmark:active {
color: var(--red-4);
}
.ttl-status-action-quote:hover,
.ttl-status-action-quote.enabled {
color: var(--blue-3);
}
.ttl-status-action-quote:active {
color: var(--blue-4);
}
.ttl-post-actions {
margin-bottom: -12px;
}
.ttl-post-actions button image,
.ttl-post-actions button label {
transition-duration: 200ms;
}
/*
Preview and News Cards
*/
.preview_card {
padding: 0;
}
.preview_card_v {
border-radius: 6px 6px 0px 0px;
}
.preview_card_h:dir(ltr) {
border-radius: 6px 0px 0px 6px;
}
.preview_card_h:dir(rtl) {
border-radius: 0px 6px 6px 0px;
}
.preview_card:not(.explore),
.preview_card:not(.explore) image:not(.min-size-64) {
background-color: rgb(from currentColor r g b / calc(alpha * 0.0625));
}
.preview_card:not(.explore):hover {
background-color: rgb(from currentColor r g b / calc(alpha * 0.125));
}
.preview_card:not(.explore):active {
background-color: rgb(from currentColor r g b / calc(alpha * 0.1625));
}
.verified-author {
padding: 0 5px;
}
.ttl-view:not(.large-view) .preview_card.explore .preview_card_h {
border-radius: 0px;
}
.ttl-view:not(.large-view) .preview_card.explore {
border-radius: 0px;
}
.ttl-view .preview_card.explore {
border-radius: 12px;
}
/*
Bookwyrm
*/
.bkwm-desc {
padding: 12px;
}
/*
Composer
*/
.spoilered-attachmentsbin picture {
filter: blur(15px);
}
.composer-attachment,
.attachment-picture {
border-radius: 12px;
}
.composer-attachment {
background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.composer-attachment .alt-indicator {
background-color: color-mix(in srgb, color-mix(in srgb, var(--error-bg-color) 35%, white) 80%, transparent);
font-size: smaller;
border-radius: 6px; /* 12px (parent radius) - 6px (margin) */
font-weight: bold;
padding: 3px 8px;
}
.composer-attachment .alt-indicator.success {
background-color: color-mix(in srgb, color-mix(in srgb, var(--success-bg-color) 35%, white) 80%, transparent);
}
.editor-component {
padding-bottom: 28px;
}
.attachment-editor-picker {
background-color: var(--shade-color);
padding: 12px 0;
}
/*
LabelWithWidgets
*/
.lww-scale-emoji-hover .lww-emoji {
transition-duration: 150ms;
}
.lww-scale-emoji-hover .lww-emoji:hover {
transform: scale(2);
}
/*
VoteRow
*/
.ttl-poll-row {
padding: 0;
}
.ttl-poll-row:first-child {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
.ttl-poll-row:last-child {
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
}
/*
Timelines
*/
.circular-spinner {
border-radius: 100%;
padding: 3px;
}
.card-spacing {
background-color: var(--card-bg-color);
margin-top: 6px;
margin-bottom: 6px;
}
/* Focus ring */
.card-spacing > *:focus-within {
border-radius: inherit;
}
/* .ttl-view listview>row.activatable:selected:hover,
.ttl-view listview>row.activatable:hover {
background-color: transparent;
}
.ttl-view listview>row.activatable:selected:active,
.ttl-view listview>row.activatable:active {
box-shadow: none;
} */
/* .ttl-view .content row:first-child { */
.ttl-view>.fake-content>row:first-child {
margin-top: 0px;
}
/* .ttl-view .content row:last-child { */
.ttl-view>.fake-content>row:last-child {
margin-bottom: 0px;
}
/* .ttl-view:not(.large-view) .content .card { */
.ttl-view:not(.large-view)>.fake-content>.card,
.ttl-view:not(.large-view)>.fake-content>.toggle-group-17 > toggle-group {
border-left: none;
border-right: none;
border-radius: 0px;
}
/* .ttl-view:not(.large-view) .content { */
.ttl-view:not(.large-view)>.fake-content {
padding: 0px;
}
/* .ttl-view .content { */
.ttl-view>.fake-content {
transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ttl-view.large-view>.fake-content:first-child {
padding-top: 32px;
}
.ttl-view.large-view>.fake-content:last-child {
padding-bottom: 32px;
}
/* .ttl-view:not(.large-view) .content .card { */
.ttl-view:not(.large-view)>.fake-content>.card {
border-bottom: 1px var(--border-color) solid;
}
/* .ttl-view:not(.large-view) .content .card:first-child { */
.ttl-view:not(.large-view)>.fake-content>.toggle-group-17 +.card,
.ttl-view:not(.large-view)>.fake-content>.card:first-child {
border-top: 1px var(--border-color) solid;
}
/* .ttl-view:not(.large-view) .content .card { */
.ttl-view:not(.large-view)>.fake-content>.card {
box-shadow: none;
}
/* .ttl-view:not(.large-view) .content .card.card-spacing { */
.ttl-view:not(.large-view)>.fake-content>.card.card-spacing {
margin: 0px;
}
.ttl-view.large-view>.fake-content {
padding-left: 0;
padding-right: 0;
margin-left: 18px;
margin-right: 18px;
}
/*
Sidebar
*/
.sidebar-item {
padding: 3px 14px;
}
.ttl-separator {
background-color: transparent;
min-height: 8px;
}
/*
Sidebar Account Switchers
*/
.ttl-account-switcher {
padding: 0;
}
.ttl-account-switcher row {
border-radius: 10px;
margin: 3px 0px;
padding-right: 0px;
padding-left: 0px;
}
.ttl-account-switcher row:first-child {
margin-top: 0px;
}
.ttl-account-switcher .new-account {
margin-bottom: 0px;
}
.ttl-account-switcher separator {
margin: 3px 0px;
}
.ttl-account-switcher row.active avatar {
border: 2px solid var(--accent-bg-color);
}
.ttl-account-switcher .blue-checkmark {
color: var(--light-1);
border: solid var(--accent-bg-color) 2px;
background-color: var(--accent-bg-color);
margin-bottom: 3px;
opacity: 0;
}
.ttl-account-switcher row.active .blue-checkmark {
opacity: 1;
}
/*
View FABs
*/
.compose-button {
padding: 8px;
}
.scroll-to-top-btn {
transition-duration: 200ms;
transition-property: margin-bottom;
}
.scroll-to-top-btn.composer-btn-revealed {
margin-bottom: 56px;
}
/*
Status
*/
.hashtag-bar-hashtag {
padding: 2px 7px;
}
.filter {
margin: -2px;
border-radius: 0;
}
.spoilered-attachment {
filter: blur(30px);
}
.ttl-quote {
border-radius: 6px;
font-weight: initial;
}
.ttl-status-font-large {
font-size: larger;
}
.ttl-status-font-large > .ttl-large-body {
font-size: larger;
}
.ttl-large-body {
font-size: larger;
}
.ttl-status-line-height-large {
line-height: 1.4;
}
.ttl-status-avatar-actor {
margin-top: -20px;
margin-left: -6px;
padding: 0;
background: none;
}
.ttl-status-avatar-border {
border: 3px solid var(--popover-bg-color);
border-radius: 100%;
background-color: var(--popover-bg-color);
}
.ttl-post.direct {
background-color: rgb(from var(--warning-bg-color) r g b / calc(alpha * 0.1));
}
.ttl-post.direct:hover {
background-color: hsl(from rgb(from var(--warning-bg-color) r g b / calc(alpha * 0.1)) h calc(s * 0.7) calc(l * 0.7));
}
.ttl-post.local {
background-color: color-mix(in srgb, var(--purple-1) 10%, transparent);
}
.ttl-post.local:hover {
background-color: color-mix(in srgb, color-mix(in srgb, var(--purple-1) 10%, transparent), black 1%);
}
.ttl-status-heading-padding {
margin-top: -5px;
padding: 0 5px;
margin-left: -5px;
margin-right: -5px;
}
.ttl-status-badge {
border-radius: 9px;
margin: 8px;
padding: 1px 6px;
}
.ttl-status-badge:not(.error):not(.success) {
color: white;
background-color: rgba(0, 0, 0, .8);
}
.ttl-status-badge.sensitive-label {
padding: 10px 32px;
border-radius: 9999px;
}
.ttl-name-button {
padding: 0 5px;
margin-left: -5px;
margin-right: -5px;
}
.ttl-code {
padding: 12px;
background: rgba(150, 150, 150, .1);
border-radius: 6px;
}
/*
Admin Mode
*/
.report-status .attachment-picture { /* We need to protect admins from NSFW images */
filter: blur(15px) grayscale(1);
}
.report-status:hover .attachment-picture {
filter: none;
}
/*
Focus Picker
*/
.focus-picker {
padding: 4px;
}
/*
Profile Editor
*/
.profile-editor .background-cover {
border-radius: 12px;
background-color: var(--shade-color);
}
/*
Profile
*/
.account-avatar {
margin-top: -30px;
}
.ttl-profile-fields-box > flowboxchild {
border-radius: 0;
}
.ttl-profile-stat-button {
padding: 8px 12px;
min-height: 32px;
border-radius: 0px;
}
.ttl-profile-stat-button:first-child {
border-bottom-left-radius: 12px;
}
.ttl-profile-stat-button:last-child {
border-bottom-right-radius: 12px;
}
:not(.large-view) .ttl-profile-cover-container .ttl-profile-stat-button:first-child,
:not(.large-view) .ttl-profile-cover-container .ttl-profile-stat-button:last-child {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.cover-badge {
padding: 6px 12px;
border-radius: 9px;
margin: 8px;
}
.cover-badge.only-icon {
padding: 6px;
}
.ttl-profile-cover .header-image {
background: grey;
border-radius: 0;
}
.ttl-profile-cover-container,
.ttl-profile-cover-container row,
popover.mini-profile row {
padding: 0px;
}
.ttl-profile-cover .main-avi avatar,
.profile-editor avatar {
border: 6px solid var(--window-bg-color);
background: var(--window-bg-color);
}
.large .header-image {
border-radius: 12px 12px 0 0;
}
.ttl-profile-cover.thanks {
background-color: rgb(from var(--accent-bg-color) r g b / calc(alpha * 0.1));
}
.ttl-profile-cover.thanks avatar {
border-color: rgb(from var(--accent-bg-color) r g b / calc(alpha * 0.1));
}
.ttl-profile-cover > .content {
background: none;
}
:not(.large-view) .ttl-profile-cover>.content {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.profile-role {
background-color: rgb(from currentColor r g b / calc(alpha * 0.1));
padding: 4px 11px;
font-size: 12.2px;
font-weight: 500;
}
.ttl-profile-fields-box-container:not(.single) > .ttl-profile-fields-box > flowboxchild > .ttl-profile-field {
border-bottom: solid 1px var(--border-color);
border-right: solid 1px var(--border-color);
}
.ttl-profile-fields-box-container.odd > .ttl-profile-fields-box > flowboxchild:last-child > .ttl-profile-field {
border-bottom: none;
}
.ttl-profile-fields-box-container:not(.odd) {
border: none;
}
.ttl-profile-fields-box-container:not(.single) {
margin-right: -1px; /* much simpler than complex nth-child selectors */
}
.ttl-profile-field {
padding: 6px 12px;
}
.ttl-verified-field {
color: var(--success-color);
background: rgb(from var(--success-bg-color) r g b / calc(alpha * 0.1));
}
.ttl-birthday-field {
color: var(--accent-pink);
background: rgb(from var(--accent-pink) r g b / calc(alpha * 0.1));
}
.ttl-mutuals {
padding: 0 5px;
margin-left: -5px;
margin-right: -5px;
}
.ttl-mutuals label {
font-weight: normal;
}
.ttl-mutuals .mutual-avi:not(.first-avi) {
margin-left: -6px;
}
.mutual-avi {
border: 2px solid var(--card-bg-color);
background-color: var(--card-bg-color);
}
/*
Profile Filter Group
*/
.toggle-group-17 {
background: none;
padding: 0;
margin-top: 6px;
margin-bottom: 6px;
}
/*
FediWrapped
*/
@keyframes annual-avi-bg {
0% { background-position: center 100%; }
100% { background-position: center 0%; }
}
@keyframes annual-tuba-bg {
0% { background-position: 0%; }
100% { background-position: 100%; }
}
.annual .main-avi {
background: -gtk-icontheme("tuba-explore2-large-symbolic");
background-repeat: repeat;
background-size: 16px;
padding: 16px;
animation: annual-avi-bg 5s linear infinite;
}
.annual .tuba {
background-image: -gtk-icontheme("tuba-transparent-symbolic");
background-repeat: repeat;
background-size: 24px;
background-position: center center;
color: var(--accent-yellow);
background-color: color-mix(in srgb, currentColor 15%, var(--window-bg-color));
animation: annual-tuba-bg 5s linear infinite;
}
.annual-screenshot-box {
padding: 12px;
border-radius: 16px;
}
.annual-screenshot-box.style-window {
background-color: var(--window-bg-color);
}
.annual-screenshot-box.style-accent {
background-color: var(--accent-bg-color);
}
.annual-screenshot-box.style-pride {
background-image: linear-gradient(135deg, rgba(228,3,3,0.3) 0%, rgba(255,140,0,0.3) 20%, rgba(255,237,0,0.3) 40%, rgba(0,128,38,0.3) 60%, rgba(0,77,255,0.3) 80%, rgba(117,7,135,0.3) 100%);
background-color: var(--window-bg-color);
}
.annual-screenshot-box.style-trans {
background-image: linear-gradient(135deg, rgba(92,206,250,0.5) 0%, rgba(246,168,183,0.5) 25%, rgba(255,255,255,0.5) 50%, rgba(246,168,183,0.5) 75%, rgba(92,206,250,0.5) 100%);
background-color: var(--window-bg-color);
}
/*
Media Viewer
*/
.media-viewer {
color: white;
}
.media-viewer .top-bar {
background-image: none;
}
/*
Media Player Video/Audio controls
*/
.audio-controls {
background-color: rgba(38,38,38,0.8);
border-radius: 9999px;
padding: 2px;
}
.audio-controls,
clapper-gtk-lead-container>box {
--accent-bg-color: @accent_bg_color;
--accent-color: oklab(from var(--accent-bg-color) var(--standalone-color-oklab));
}
.audio-controls scale trough highlight {
min-height: 6px;
}
.audio-controls>button:hover,
.audio-controls>button:checked {
background-color: rgba(63,63,63,0.8);
}
.audio-controls>button:active {
background-color: rgba(82,82,82,0.8);
}
.audio-controls>scalebutton>button {
border-radius: 9999px;
}
/*
DropOverlay
*/
dropoverlay,
dropoverlay > overlay > :not(revealer) {
box-shadow: none;
}
dropoverlay .status {
background-color: color-mix(in srgb, var(--accent-bg-color) 60%, transparent);
color: var(--accent-fg-color);
}
/*
Pill SplitButton
*/
splitbutton.pill {
border-radius: 9999px;
}
splitbutton.pill > button {
padding: 10px 16px;
}
splitbutton.pill > menubutton > button {
padding: 10px 8px;
}
splitbutton.pill:dir(ltr) > button,
splitbutton.pill:dir(rtl) > menubutton,
splitbutton.pill:dir(rtl) > menubutton > button {
border-top-left-radius: inherit;
border-bottom-left-radius: inherit;
}
splitbutton.pill:dir(rtl) > button,
splitbutton.pill:dir(ltr) > menubutton,
splitbutton.pill:dir(ltr) > menubutton > button {
border-top-right-radius: inherit;
border-bottom-right-radius: inherit;
}
/*
Celebrate
*/
.theme-disability.about .app-version{background:linear-gradient(45deg,#59595955 0,#59595955 37.5%,#cf728055 37.5%,#cf728055 42.5%,#eede7755 42.5%,#eede7755 47.5%,#e8e8e855 47.5%,#e8e8e855 52.5%,#7bc2e055 52.5%,#7bc2e055 57.5%,#3bb07d55 57.5%,#3bb07d55 62.5%,#59595955 62.5%,#59595955 100%);}
.theme-disability.about .app-version:hover{background:linear-gradient(45deg,#595959 0,#595959 37.5%,#cf7280 37.5%,#cf7280 42.5%,#eede77 42.5%,#eede77 47.5%,#e8e8e8 47.5%,#e8e8e8 52.5%,#7bc2e0 52.5%,#7bc2e0 57.5%,#3bb07d 57.5%,#3bb07d 62.5%,#595959 62.5%,#595959 100%);}
.theme-lesbian.about .app-version{background:linear-gradient(to bottom,#d1260155,#d1260155 20%,#ff8f4555 20%,#ff8f4555 40%,#fff5 40%,#fff5 60%,#cf559b55 60%,#cf559b55 80%,#9b1a5855 80%,#9b1a5855);}
.theme-lesbian.about .app-version:hover{background:linear-gradient(to bottom,#d12601,#d12601 20%,#ff8f45 20%,#ff8f45 40%,#fff 40%,#fff 60%,#cf559b 60%,#cf559b 80%,#9b1a58 80%,#9b1a58);}
.theme-pan.about .app-version{background:linear-gradient(to bottom,#ff218c55,#ff218c55 33.33%,#fed80055 33.33%,#fed80055 66.67%,#21b1ff55 66.67%,#21b1ff55);}
.theme-pan.about .app-version:hover{background:linear-gradient(to bottom,#ff218c,#ff218c 33.33%,#fed800 33.33%,#fed800 66.67%,#21b1ff 66.67%,#21b1ff);}
.theme-trans.about .app-version{background:linear-gradient(to bottom,#5ccefa55,#5ccefa55 20%,#f6a8b755 20%,#f6a8b755 40%,#fff5 40%,#fff5 60%,#f6a8b755 60%,#f6a8b755 80%,#5ccefa55 80%,#5ccefa55);}
.theme-trans.about .app-version:hover{background:linear-gradient(to bottom,#5ccefa,#5ccefa 20%,#f6a8b7 20%,#f6a8b7 40%,#fff 40%,#fff 60%,#f6a8b7 60%,#f6a8b7 80%,#5ccefa 80%,#5ccefa);}
.theme-bi.about .app-version{background:linear-gradient(to bottom,#d6027055,#d6027055 40%,#9a4f9655 40%,#9a4f9655 60%,#0039a955 60%,#0039a955);}
.theme-bi.about .app-version:hover{background:linear-gradient(to bottom,#d60270,#d60270 40%,#9a4f96 40%,#9a4f96 60%,#0039a9 60%,#0039a9);}
.theme-agender.about .app-version{background:linear-gradient(to bottom,#0005,#00000055 14.29%,#bcc4c755 14.29%,#bcc4c755 28.57%,#fff5 28.57%,#fff5 42.86%,#b7f58455 42.86%,#b7f58455 57.14%,#fff5 57.14%,#fff5 71.43%,#bcc4c755 71.43%,#bcc4c755 85.71%,#00000055 85.71%,#0005);}
.theme-agender.about .app-version:hover{background:linear-gradient(to bottom,#000,#000 14.29%,#bcc4c7 14.29%,#bcc4c7 28.57%,#fff 28.57%,#fff 42.86%,#b7f584 42.86%,#b7f584 57.14%,#fff 57.14%,#fff 71.43%,#bcc4c7 71.43%,#bcc4c7 85.71%,#000 85.71%,#000);}
.theme-aro.about .app-version{background:linear-gradient(to bottom,#309c3455,#309c3455 20%,#9dce6955 20%,#9dce6955 40%,#fff5 40%,#fff5 60%,#a0a0a055 60%,#a0a0a055 80%,#0005 80%,#0005);}
.theme-aro.about .app-version:hover{background:linear-gradient(to bottom,#309c34,#309c34 20%,#9dce69 20%,#9dce69 40%,#fff 40%,#fff 60%,#a0a0a0 60%,#a0a0a0 80%,#000 80%,#000);}
.theme-ace.about .app-version{background:linear-gradient(to bottom,#0005,#0005 25%,#a3a3a355 25%,#a3a3a355 50%,#fff5 50%,#fff5 75%,#82008055 75%,#82008055);}
.theme-ace.about .app-version:hover{background:linear-gradient(to bottom,#000,#000 25%,#a3a3a3 25%,#a3a3a3 50%,#fff 50%,#fff 75%,#820080 75%,#820080);}
.theme-non-binary.about .app-version{background:linear-gradient(to bottom,#fdf52f55,#fdf52f55 25%,#fff5 25%,#fff5 50%,#9d5ad255 50%,#9d5ad255 75%,#0005 75%,#0005);}
.theme-non-binary.about .app-version:hover{background:linear-gradient(to bottom,#fdf52f,#fdf52f 25%,#fff 25%,#fff 50%,#9d5ad2 50%,#9d5ad2 75%,#000 75%,#000);}
.theme-black-history.about .app-version{background:linear-gradient(to bottom,#e31b2355,#e31b2355 33%,#0005 33%,#0005 66%,#00853f55 66%,#00853f55);}
.theme-black-history.about .app-version:hover{background:linear-gradient(to bottom,#e31b23,#e31b23 33%,#000 33%,#000 66%,#00853f 66%,#00853f);}
.theme-aids.about .app-version{background:linear-gradient(to bottom,#ffffff55,#ffffff55 20%,#d1111355 20%,#d1111355 40%,#ffffff55 40%,#ffffff55 60%,#d1111355 60%,#d1111355 80%,#ffffff55 80%,#ffffff55);}
.theme-aids.about .app-version:hover{background:linear-gradient(to bottom,#fff,#fff 20%,#d11113 20%,#d11113 40%,#fff 40%,#fff 60%,#d11113 60%,#d11113 80%,#fff 80%,#fff);}
.theme-intersex.about .app-version{background:radial-gradient(closest-side circle at center,#ffd80055 44%,#7902aa55 44%,#7902aa55 56%,#ffd80055 56%);}
.theme-intersex.about .app-version:hover{background:radial-gradient(closest-side circle at center,#ffd800 44%,#7902aa 44%,#7902aa 56%,#ffd800 56%);}
.theme-autism.about .app-version{background:linear-gradient(to bottom,#e5304355,#e5304355 16.66%,#f6834755 16.66%,#f6834755 33.33%,#fac85755 33.33%,#fac85755 66.67%,#99d67155 66.67%,#99d67155 83.33%,#21ae7555 83.33%,#21ae7555);}
.theme-autism.about .app-version:hover{background:linear-gradient(to bottom,#e53043,#e53043 16.66%,#f68347 16.66%,#f68347 33.33%,#fac857 33.33%,#fac857 66.67%,#99d671 66.67%,#99d671 83.33%,#21ae75 83.33%,#21ae75);}
|