2017-09-30 13:48:40 +02:00
|
|
|
.div-wrapper {
|
|
|
|
display: inline-flex;
|
|
|
|
background-color: #797979;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-card {
|
2017-09-29 13:54:22 +02:00
|
|
|
background-color: #ffffff;
|
|
|
|
margin: 0;
|
2017-09-28 19:13:29 +02:00
|
|
|
padding: 20px;
|
2017-10-16 15:49:23 +02:00
|
|
|
padding-top: 10px;
|
2017-09-28 19:13:29 +02:00
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-card.session-card {
|
2017-09-29 13:54:22 +02:00
|
|
|
padding: 15px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
.session-form mat-form-field {
|
2018-05-18 12:46:41 +02:00
|
|
|
width: 110px;
|
2017-09-28 19:13:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.join-card {
|
|
|
|
width: fit-content;
|
2018-05-18 12:46:41 +02:00
|
|
|
min-height: 215px;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 10px;
|
2017-09-28 19:13:29 +02:00
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
.join-card mat-card-content {
|
2017-09-28 19:13:29 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-09 18:55:31 +02:00
|
|
|
.join-publish-div {
|
|
|
|
justify-content: space-around;
|
|
|
|
width: 100%;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.join-publish-div > * {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2017-09-28 19:13:29 +02:00
|
|
|
.inner-card {
|
|
|
|
border: 1px solid #e1e1e1;
|
2018-05-29 18:32:49 +02:00
|
|
|
padding: 10px 3px 10px 10px;
|
2017-09-28 19:13:29 +02:00
|
|
|
background: #ffffff;
|
2018-05-18 12:46:41 +02:00
|
|
|
margin-top: 5px;
|
2017-09-28 19:13:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.inner-card h4 {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-06-04 14:27:37 +02:00
|
|
|
.join-btn {
|
|
|
|
margin-right: 4px;
|
2017-09-28 19:13:29 +02:00
|
|
|
}
|
|
|
|
|
2017-09-29 13:54:22 +02:00
|
|
|
#leave-btn {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-radio-button {
|
2017-09-28 19:13:29 +02:00
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-container {
|
|
|
|
min-width: 140px;
|
2017-09-29 13:54:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.session-card-header {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-card-inner {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-card-inner .session-title {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-card-inner .session-actions {
|
|
|
|
float: right;
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-actions button {
|
|
|
|
outline: 0;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
2018-06-04 14:27:37 +02:00
|
|
|
margin-right: 4px;
|
2017-09-29 13:54:22 +02:00
|
|
|
}
|
|
|
|
|
2018-06-04 14:27:37 +02:00
|
|
|
.session-actions button:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2017-09-29 13:54:22 +02:00
|
|
|
.session-actions button:hover {
|
|
|
|
color: #4d4d4d;
|
|
|
|
}
|
2017-09-30 13:48:40 +02:00
|
|
|
|
2017-10-09 18:48:05 +02:00
|
|
|
.event-list-div {
|
2017-09-30 13:48:40 +02:00
|
|
|
display: inline-block;
|
2018-02-27 14:47:03 +01:00
|
|
|
width: 130px;
|
2018-05-18 12:46:41 +02:00
|
|
|
height: 180px;
|
2017-09-30 13:48:40 +02:00
|
|
|
overflow-y: auto;
|
2017-10-02 15:18:28 +02:00
|
|
|
overflow-x: hidden;
|
2017-09-30 13:48:40 +02:00
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-chip {
|
2017-09-30 13:48:40 +02:00
|
|
|
line-height: 6px;
|
|
|
|
font-size: 9.5px;
|
|
|
|
padding: 6px 9px !important;
|
|
|
|
margin-bottom: 3.5px !important;
|
|
|
|
margin-right: 5px !important;
|
2017-10-02 15:18:28 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2017-09-30 13:48:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-custom::-webkit-scrollbar-track {
|
2017-10-09 18:48:05 +02:00
|
|
|
/*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
|
|
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
|
|
|
|
background-color: #e0e0e0;
|
2017-09-30 13:48:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-custom::-webkit-scrollbar {
|
2018-02-27 14:47:03 +01:00
|
|
|
width: 5px;
|
2017-09-30 13:48:40 +02:00
|
|
|
background-color: #F5F5F5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-custom::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #797979;
|
|
|
|
}
|
2017-10-02 15:18:28 +02:00
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-expansion-panel {
|
2017-10-02 15:18:28 +02:00
|
|
|
background: #e0e0e0 !important;
|
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
|
|
|
|
2017-10-16 17:16:14 +02:00
|
|
|
mat-expansion-panel-header {
|
2017-10-02 15:18:28 +02:00
|
|
|
font-size: 10.5px !important;
|
|
|
|
padding: 0 7px 0 9px !important;
|
|
|
|
}
|
2017-10-16 15:49:23 +02:00
|
|
|
|
2018-05-18 12:46:41 +02:00
|
|
|
.mat-icon-custom {
|
2018-05-29 18:32:49 +02:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
line-height: 17px;
|
|
|
|
margin-bottom: -4px;
|
2018-05-18 12:46:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mat-icon-custom-ic {
|
2018-05-29 18:32:49 +02:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 18px;
|
2018-05-18 12:46:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.session-btns-div {
|
|
|
|
margin-top: -14px;
|
|
|
|
margin-right: -14px;
|
2018-05-29 18:32:49 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.publisher-btns-div {
|
|
|
|
margin-top: -7px;
|
2018-06-04 14:27:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mat-checkbox {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
mat-checkbox:first-of-type {
|
|
|
|
margin-left: 0;
|
2017-10-16 15:49:23 +02:00
|
|
|
}
|