123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- .audio-preview {
- &-content {
- background: #2A3A4B;
- font-size: 15px;
- line-height: 24px;
- max-height: 456px;
- overflow: auto;
- width: 328px;
- }
-
- &-header {
- color: #fff;
- display: flex;
- padding: 16px;
-
- &-icon {
- color: #A4B8D1;
- display: inline-block;
- }
-
- &-text {
- font-weight: bold;
- margin-left: 8px;
- }
- }
-
- &-entry {
- align-items: center;
- color: #fff;
- cursor: pointer;
- display: flex;
- padding: 12px 0;
- margin-left: 48px;
-
- &--selected {
- background: #1C2025;
- cursor: initial;
- margin-left: 0;
- padding-left: 21px;
- }
-
- &-text {
- color: #fff;
- font-size: 15px;
- display: inline-block;
- line-height: 24px;
- text-overflow: ellipsis;
- max-width: 213px;
- overflow: hidden;
- white-space: nowrap;
- }
- }
-
- &-speaker {
- position: relative;
-
- &:hover {
- .audio-preview-entry {
- background: #3F4E5E;
- margin-left: 0;
- padding-left: 48px;
-
- &--selected {
- padding-left: 21px;
- }
- }
-
- .audio-preview-test-button {
- display: inline-block;
- }
-
- .audio-preview-entry-text {
- max-width: 196px;
- }
- }
-
- .audio-preview-entry-text {
- max-width: 256px;
- }
- }
-
- &-microphone {
- position: relative;
-
- &:hover {
- .audio-preview-entry {
- background: #3F4E5E;
- margin-left: 0;
- padding-left: 48px;
-
- &--selected {
- padding-left: 21px;
- }
- }
- }
-
- .audio-preview-entry-text {
- max-width: 196px;
- }
- }
-
- &-icon {
- border-radius: 50%;
- display: inline-block;
- width: 14px;
-
- & svg {
- fill: #1C2025;
- }
-
- &--check {
- background: #31B76A;
- margin-right: 13px;
- }
-
- &--exclamation {
- margin-left: 6px;
- & svg {
- fill: #E54B4B;
- }
- }
- }
-
- &-test-button {
- display: none;
- background: #FFF;
- border: 1px solid #D1DBE8;
- border-radius: 3px;
- color: #1C2025;
- cursor: pointer;
- font-weight: 600;
- font-size: 15px;
- line-height: 24px;
- padding: 4px 16px;
- position: absolute;
- right: 16px;
- top: 8px;
- }
-
- &-meter-mic {
- position: absolute;
- right: 16px;
- top: 18px;
- }
-
- // Override @atlaskit/InlineDialog container which is made with styled components
- & > div:nth-child(2) {
- outline: none;
- padding: 0;
- }
- }
|