Skip to content

Commit 16f9701

Browse files
authored
Merge pull request #39 from 909oce/main
call container
2 parents 80a331f + bbc7c71 commit 16f9701

File tree

1 file changed

+61
-2
lines changed

1 file changed

+61
-2
lines changed

src/main.css

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,8 @@ svg[class^=slider_] > rect[fill='white'] /* settings checkbuttons slider */ {
522522
.container_c75f85::after /* channel list dividers */,
523523
[class^=customizationSection_],
524524
[class^=session_],
525-
[class^=columnHeading_], [class^=tableCell_] {
525+
[class^=columnHeading_],
526+
[class^=tableCell_] {
526527
border-width: var(--border-width);
527528
border-color: var(--border-color);
528529
}
@@ -876,7 +877,7 @@ html.theme-light {
876877
--brand-600: var(--acc-2); /* accent button active */
877878

878879
--primary-500: var(--bg-2); /* neutral button background */
879-
--primary-800: var(--bg-1); /* bot command panel suggestion argument */
880+
--primary-800: var(--bg-0); /* call background */
880881

881882
--white-500: var(--txt-dark); /* THE BANE OF MY EXISTENCE */
882883

@@ -893,3 +894,61 @@ html.theme-light {
893894

894895
--twitch: var(--acc-1);
895896
}
897+
898+
/* begin 909 commits */
899+
::placeholder {
900+
color: var(--txt-3)!important;
901+
}
902+
::selection {
903+
color: var(--bg-0);
904+
background: var(--txt-1);
905+
}
906+
[class^=callContainer_] {
907+
overflow: visible;
908+
background: none!important;
909+
overflow-x: hidden;
910+
border-radius: var(--panel-roundness);
911+
border: var(--border-width) solid var(--border-color);
912+
transition: border-color var(--border-transition);
913+
&:hover {
914+
border-color: var(--border-hover-color);
915+
&::after {
916+
color: var(--border-hover-color);
917+
}
918+
}
919+
}
920+
[class^=callContainer_] [class^=topControls_] section {
921+
border: none;
922+
&::after {
923+
content: '';
924+
}
925+
}
926+
[class^='callContainer_']::after {
927+
content: 'call';
928+
display: block;
929+
color: var(--txt-3);
930+
font-weight: var(--label-font-weight);
931+
position: absolute;
932+
top: -8px;
933+
left: 8px;
934+
background-color: var(--bg-0);
935+
padding: 0 4px;
936+
z-index: 100;
937+
transition: color var(--border-transition);
938+
}
939+
940+
.wrapper_fea3ef.hidden_fea3ef {
941+
display: none;
942+
}
943+
944+
[class^=gradientTop_],
945+
[class^=gradientBottom_] {
946+
display: none!important;
947+
}
948+
[class^=topControls_],
949+
[class^=bottomControls_] {
950+
opacity: 1!important;
951+
transform: none!important;
952+
}
953+
/* end 909 commits */
954+

0 commit comments

Comments
 (0)