-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
343 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[data-chat-interface-theme] { | ||
.theatre-control-group { | ||
display: flex; | ||
gap: 5px; | ||
margin: 0px var(--sidebar-margin); | ||
align-items: center; | ||
|
||
.theatre-control-nav-bar { | ||
@include dui-app; | ||
display: flex; | ||
gap: 5px; | ||
align-self: center; | ||
} | ||
} | ||
|
||
.theatre-control-btn { | ||
@include dui-button-toggle; | ||
} | ||
.theatre-control-nav-bar-item-active, | ||
.theatre-control-nav-bar-item-speakingas, | ||
.theatre-control-btn-down { | ||
@include dui-button-toggle; | ||
background: var(--button-hover-background); | ||
outline: 1px solid var(--button-focus-outline-color); | ||
border-color: var(--button-hover-border-color); | ||
color: var(--button-hover-text-color); | ||
} | ||
.theatre-control-nav-bar-item { | ||
@include dui-button-toggle; | ||
&:hover { | ||
transform: unset; | ||
} | ||
} | ||
|
||
.theatre-control-nav-bar-item-speakingas { | ||
animation: speakingasitempulse 1s linear 0.2s infinite alternate; | ||
} | ||
} | ||
|
||
@keyframes speakingasitempulse { | ||
0% { | ||
border: 1px solid var(--button-hover-background); | ||
} | ||
100% { | ||
border: 1px solid var(--button-hover-text-color); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.