"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7543/css/modals/invite/_info.scss" (23 Sep 2023, 2330 Bytes) of package /linux/misc/jitsi-meet-7543.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 .info-dialog {
2 cursor: default;
3 display: flex;
4 font-size: 14px;
5
6 .info-dialog-column {
7 margin-right: 10px;
8 overflow: hidden;
9
10 a,
11 a:active,
12 a:focus,
13 a:hover {
14 text-decoration: none;
15 }
16 }
17
18 .info-dialog-password,
19 .info-password,
20 .info-password-form {
21 align-items: baseline;
22 display: flex;
23 }
24
25 .info-label {
26 font-weight: bold;
27 }
28
29 .info-password-field {
30 overflow: hidden;
31 text-overflow: ellipsis;
32 white-space: nowrap;
33 margin-right: 5px;
34 }
35
36 .info-password-none,
37 .info-password-remote {
38 color: #fff;
39 }
40
41 .info-password-local {
42 user-select: text;
43 }
44 }
45
46 .dial-in-number {
47 display: flex;
48 justify-content: space-between;
49 padding-right: 8px;
50 }
51
52 .dial-in-numbers-list {
53 max-width: 334px;
54 width: 100%;
55 margin-top: 20px;
56 font-size: 12px;
57 line-height: 24px;
58 border-collapse: collapse;
59
60 * {
61 user-select: text;
62 }
63
64 thead {
65 text-align: left;
66 }
67
68 .flag-cell {
69 vertical-align: top;
70 width: 30px;
71 }
72 .flag {
73 display: block;
74 margin: 5px 5px 0px 5px;
75 }
76
77 .country {
78 font-weight: bold;
79 vertical-align: top;
80 padding: 0 20px 0 0;
81 }
82
83 ul {
84 padding: 0px 0px 0px 0px;
85 }
86
87 .numbers-list {
88 list-style: none;
89 padding: 0 20px 0 0;
90 }
91
92 .toll-free-list {
93 font-weight: bold;
94 list-style: none;
95 vertical-align: top;
96 text-align: right;
97 }
98
99 li.toll-free:empty:before {
100 content: '.';
101 visibility: hidden;
102 }
103 }
104
105 .dial-in-page {
106 align-items: center;
107 box-sizing: border-box;
108 display: flex;
109 flex-direction: column;
110 font-size: 12px;
111 max-height: 100%;
112 overflow: auto;
113 padding: 15pt;
114 position: absolute;
115 transform: translateY(-50%);
116 top: 50%;
117 width: 100%;
118
119 .dial-in-conference-id {
120 text-align: center;
121 min-width: 200px;
122 margin-top: 40px;
123 }
124
125 .dial-in-conference-description {
126 margin: 12px;
127 }
128 }
129
130 .info-dialog,
131 .dial-in-page {
132 * {
133 user-select: text;
134 -moz-user-select: text;
135 -webkit-user-select: text;
136 }
137 }