2015-03-17 03:14:33 +08:00
|
|
|
.directory {
|
|
|
|
margin-bottom: 100px;
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2021-06-08 01:34:01 +08:00
|
|
|
.directory-table-container {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2021-06-29 04:10:38 +08:00
|
|
|
.directory-table-top-scroll {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2020-03-31 16:12:52 +08:00
|
|
|
&.users-directory {
|
2021-06-09 02:20:08 +08:00
|
|
|
.directory-group-selector {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-03-31 16:12:52 +08:00
|
|
|
}
|
|
|
|
|
2016-03-25 01:05:09 +08:00
|
|
|
.user-info {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2015-03-17 03:14:33 +08:00
|
|
|
.spinner {
|
|
|
|
clear: both;
|
|
|
|
}
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2020-03-31 02:27:49 +08:00
|
|
|
.directory-controls {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2020-08-26 22:14:20 +08:00
|
|
|
.total-rows {
|
|
|
|
color: var(--primary-medium);
|
2021-09-09 23:01:56 +08:00
|
|
|
font-weight: normal;
|
2020-03-31 02:27:49 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-31 16:12:52 +08:00
|
|
|
|
2020-03-31 02:27:49 +08:00
|
|
|
.directory-last-updated {
|
|
|
|
margin-bottom: 0.5em;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2020-03-31 16:12:52 +08:00
|
|
|
font-size: $font-down-1;
|
2020-03-31 02:27:49 +08:00
|
|
|
}
|
|
|
|
|
2015-03-17 03:14:33 +08:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 1em;
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
td,
|
|
|
|
th {
|
2015-03-17 03:14:33 +08:00
|
|
|
padding: 0.5em;
|
|
|
|
text-align: left;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-bottom: 1px solid var(--primary-low);
|
2018-04-26 00:00:35 +08:00
|
|
|
@media screen and (max-width: $small-width) {
|
2018-06-08 17:49:31 +08:00
|
|
|
padding: 0.5em 0.25em;
|
2018-04-26 00:00:35 +08:00
|
|
|
}
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.number,
|
|
|
|
.time-read {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-3;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2018-04-26 00:00:35 +08:00
|
|
|
@media screen and (max-width: $small-width) {
|
2018-06-08 17:49:31 +08:00
|
|
|
font-size: $font-up-1;
|
|
|
|
}
|
2015-03-20 04:50:01 +08:00
|
|
|
}
|
2018-01-30 02:31:06 +08:00
|
|
|
.time-read {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-06-08 01:34:01 +08:00
|
|
|
.user-field-value {
|
|
|
|
font-size: var(--font-up-1);
|
|
|
|
color: var(--primary-medium);
|
|
|
|
@media screen and (max-width: $small-width) {
|
|
|
|
font-size: $font-0;
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 03:14:33 +08:00
|
|
|
}
|
2018-03-29 14:57:10 +08:00
|
|
|
|
2015-03-17 03:14:33 +08:00
|
|
|
th.sortable {
|
|
|
|
width: 13%;
|
2017-11-24 00:14:51 +08:00
|
|
|
.d-icon-heart {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--love);
|
2019-02-27 10:40:17 +08:00
|
|
|
margin: 0 0.25em 0 0;
|
2015-03-17 03:14:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-24 10:41:40 +08:00
|
|
|
.me {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--highlight-low-or-medium);
|
2018-06-08 17:49:31 +08:00
|
|
|
.username a,
|
2021-03-12 00:25:14 +08:00
|
|
|
.name a,
|
2018-06-08 17:49:31 +08:00
|
|
|
.title,
|
|
|
|
.number,
|
|
|
|
.time-read {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2018-02-24 10:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
2015-03-17 03:14:33 +08:00
|
|
|
}
|
2021-06-08 01:34:01 +08:00
|
|
|
|
|
|
|
.edit-user-directory-columns-modal {
|
|
|
|
.edit-directory-columns-container {
|
|
|
|
.edit-directory-column {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 12px 0;
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
|
|
|
|
|
|
|
.column-name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.d-icon-heart {
|
|
|
|
color: var(--love);
|
|
|
|
margin: 0 0.25em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.move-column-up {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-content,
|
|
|
|
.right-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.modal-footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.reset-to-default {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-user-directory-columns-modal .modal-inner-container {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|