SQUASH: add comment to styling and alpha order
This commit is contained in:
parent
a14886031f
commit
3a99ef512e
|
@ -8,17 +8,22 @@
|
||||||
|
|
||||||
.invite-dialog {
|
.invite-dialog {
|
||||||
.dial-in-numbers {
|
.dial-in-numbers {
|
||||||
|
.dial-in-numbers-conference-id {
|
||||||
|
color: orange;
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* dial-in-numbers-copy styling is needed for the feature of copying
|
||||||
|
* text to the clipboard. The styling keeps the element invisible
|
||||||
|
* to the user but still programmatically selectable for copying.
|
||||||
|
*/
|
||||||
.dial-in-numbers-copy {
|
.dial-in-numbers-copy {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
user-select: text;
|
|
||||||
-webkit-user-select: text;
|
-webkit-user-select: text;
|
||||||
}
|
user-select: text;
|
||||||
|
|
||||||
.dial-in-numbers-conference-id {
|
|
||||||
color: orange;
|
|
||||||
margin-left: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dial-in-numbers-trigger {
|
.dial-in-numbers-trigger {
|
||||||
|
|
Loading…
Reference in New Issue