Files
ThreadNet-Web/res/css/views/elements/_DesktopCapturerSourcePicker.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-12-26 08:32:51 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2021-01-05 20:36:54 +01:00
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
2020-12-26 08:32:51 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2020-12-26 08:32:51 +01:00
*/
2021-01-05 19:49:09 +01:00
.mx_desktopCapturerSourcePicker {
2020-12-26 08:32:51 +01:00
overflow: hidden;
2020-12-26 16:56:25 +01:00
2021-07-16 21:16:07 +02:00
.mx_desktopCapturerSourcePicker_tab {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
height: 500px;
overflow: overlay;
2020-12-26 16:56:25 +01:00
2021-08-07 12:00:50 +02:00
.mx_desktopCapturerSourcePicker_source {
width: 50%;
display: flex;
flex-direction: column;
2020-12-26 16:56:25 +01:00
2021-08-07 12:00:50 +02:00
.mx_desktopCapturerSourcePicker_source_thumbnail {
margin: 4px;
padding: 4px;
border-width: 2px;
border-radius: 8px;
border-style: solid;
border-color: transparent;
2020-12-26 16:56:25 +01:00
2021-08-07 12:00:50 +02:00
&.mx_desktopCapturerSourcePicker_source_thumbnail_selected,
&:hover,
&:focus {
2021-11-11 14:37:29 +01:00
border-color: $accent;
2021-08-07 12:00:50 +02:00
}
}
.mx_desktopCapturerSourcePicker_source_name {
margin: 0 4px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
2021-07-16 21:16:07 +02:00
}
}
2020-12-26 08:32:51 +01:00
}