2021-03-30 15:14:02 +02:00
|
|
|
/** Select **/
|
|
|
|
|
2016-12-17 16:57:27 +01:00
|
|
|
.truncate {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-01-04 00:29:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-23 09:13:38 +01:00
|
|
|
.fullwidth {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-02-09 10:14:04 +01:00
|
|
|
.sectionPadding {
|
|
|
|
padding: 0 16px;
|
|
|
|
}
|
|
|
|
|
2017-01-30 22:15:35 +01:00
|
|
|
.horisontalScroll {
|
2017-01-26 11:53:07 +01:00
|
|
|
overflow-x: scroll;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
2017-01-30 22:15:35 +01:00
|
|
|
.horisontalScroll::-webkit-scrollbar {
|
2017-01-26 11:53:07 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-02-04 19:30:06 +01:00
|
|
|
.listLink {
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: normal;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listLink:hover {
|
2023-05-09 15:02:32 +02:00
|
|
|
text-decoration: underline;
|
2017-02-04 19:30:06 +01:00
|
|
|
}
|
|
|
|
|
2017-01-23 09:13:38 +01:00
|
|
|
@media (max-width: 920px) {
|
|
|
|
.hideLt920 {
|
2017-01-04 00:29:27 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2017-01-26 11:53:07 +01:00
|
|
|
|
2021-10-11 22:45:59 +02:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
.hideLt600 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-26 11:53:07 +01:00
|
|
|
.dataTableHeader {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.titleText {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 20px;
|
2021-03-30 15:14:02 +02:00
|
|
|
line-height: 24px;
|
2017-01-26 11:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.switchWithLabel {
|
2017-02-02 16:31:22 +01:00
|
|
|
display: flex;
|
2021-03-30 15:14:02 +02:00
|
|
|
|
2017-01-26 11:53:07 +01:00
|
|
|
.label {
|
|
|
|
padding-right: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.switch {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2017-01-30 22:15:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.emptyState {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
min-height: 200px;
|
2017-02-04 19:30:06 +01:00
|
|
|
}
|
|
|
|
|
2020-08-07 10:08:23 +02:00
|
|
|
.toggleName {
|
|
|
|
color: #37474f !important;
|
2021-08-11 13:34:39 +02:00
|
|
|
font-weight: 700;
|
2020-09-24 19:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 24px 16px 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButton {
|
|
|
|
position: absolute;
|
|
|
|
top: 56px;
|
|
|
|
right: 24px;
|
|
|
|
z-index: 2;
|
2021-02-05 14:24:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
color: #d50000;
|
2021-03-30 15:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.headerTitle {
|
|
|
|
font-size: var(--h1-size);
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listItem {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section {
|
|
|
|
padding: 8px 16px 8px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contentPadding {
|
|
|
|
padding: var(--card-padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
.contentSpacing > * {
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchField {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|