61 lines
1.1 KiB
SCSS
61 lines
1.1 KiB
SCSS
.info-dialog {
|
|
cursor: default;
|
|
display: flex;
|
|
|
|
.info-dialog-action-link {
|
|
display: inline-block;
|
|
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.info-dialog-action-link:before {
|
|
color: $linkFontColor;
|
|
content: '\2022';
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.info-dialog-action-link:first-child:before {
|
|
content: '';
|
|
padding: 0;
|
|
}
|
|
|
|
.info-dialog-action-links {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.info-dialog-action-separator {
|
|
display: inline-block;
|
|
}
|
|
|
|
.info-dialog-copy-element {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|
|
.info-dialog-column {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.info-dialog-conference-url {
|
|
margin: 10px 0;
|
|
max-width: 250px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.info-dialog-icon {
|
|
color: #6453C0;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.info-dialog-title {
|
|
font-weight: bold;
|
|
}
|
|
}
|