2019-11-12 18:31:26 +08:00
|
|
|
// scss-lint:disable SelectorDepth SelectorFormat
|
|
|
|
// scss-lint:disable NestingDepth ImportantRule
|
|
|
|
|
2019-11-12 18:26:18 +08:00
|
|
|
@import "constants";
|
|
|
|
@import "mixins";
|
|
|
|
|
2019-11-12 18:32:43 +08:00
|
|
|
.team-settings-pane {
|
2019-11-12 18:26:18 +08:00
|
|
|
.settings-team-name {
|
2020-02-11 20:18:33 +08:00
|
|
|
line-height: 32px;
|
2020-07-08 19:02:47 +08:00
|
|
|
margin-bottom: 25px;
|
2020-02-11 20:18:33 +08:00
|
|
|
margin-top: 0;
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.team-metadata {
|
2019-11-22 17:46:44 +08:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
|
|
|
|
grid-gap: 20px;
|
2019-11-12 18:26:18 +08:00
|
|
|
font-size: 14px;
|
2019-11-22 17:46:44 +08:00
|
|
|
margin-bottom: 20px;
|
2019-11-12 18:26:18 +08:00
|
|
|
|
2019-11-22 17:46:44 +08:00
|
|
|
.grid-block {
|
2019-11-12 18:26:18 +08:00
|
|
|
|
|
|
|
.fas {
|
|
|
|
color: $color-silver;
|
2019-11-22 17:46:44 +08:00
|
|
|
margin-right: 5px;
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.created-by {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.team-description {
|
|
|
|
display: inline-block;
|
2019-11-19 18:21:03 +08:00
|
|
|
margin-top: 20px;
|
2019-11-12 18:26:18 +08:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
|
2019-11-19 18:21:03 +08:00
|
|
|
.view-mode {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
float: left;
|
|
|
|
min-height: 100px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&.disable-select {
|
|
|
|
cursor: default;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty:not(:focus)::before {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-field {
|
|
|
|
border: 1px solid $color-silver;
|
2023-07-05 17:48:22 +08:00
|
|
|
border-radius: $border-radius-default;
|
2019-11-19 18:21:03 +08:00
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
min-height: 100px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background: transparent;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
+ .button-container {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: -20px;
|
|
|
|
|
|
|
|
.inline-field-button {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 20px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .input-field,
|
|
|
|
&:hover .view-mode:not(.disable-select) {
|
|
|
|
border: 1px solid $color-silver;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
border: 1px solid $color-gainsboro;
|
|
|
|
}
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.users-datatable {
|
|
|
|
.table-header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.add-new-team-members {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-table,
|
|
|
|
.display-limit {
|
|
|
|
flex-shrink: 0;
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-new-team-members,
|
|
|
|
.filter-table {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-footer {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.page-info,
|
|
|
|
.page-selector {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-selector {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-teams-user {
|
|
|
|
.dropdown-menu li.user-team-role {
|
2019-11-19 18:21:03 +08:00
|
|
|
> :first-child {
|
2019-11-12 18:26:18 +08:00
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.disabled) span.fas {
|
|
|
|
color: transparent !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-29 19:46:02 +08:00
|
|
|
|
|
|
|
.modal-invite-users {
|
|
|
|
.user-selector {
|
|
|
|
.fa-search {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.open {
|
|
|
|
.input-field {
|
|
|
|
border: 1px solid $brand-focus;
|
2023-07-05 17:48:22 +08:00
|
|
|
border-radius: $border-radius-default;
|
2021-06-29 19:46:02 +08:00
|
|
|
|
|
|
|
.fa-search {
|
|
|
|
color: $brand-focus;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-field {
|
2022-08-29 20:01:31 +08:00
|
|
|
padding: 3px 40px 3px 3px;
|
2021-06-29 19:46:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 21:42:26 +08:00
|
|
|
.dropdown-option.users-dropdown-list {
|
2021-06-29 19:46:02 +08:00
|
|
|
border-top: 1px solid $color-gainsboro;
|
2021-07-19 21:42:26 +08:00
|
|
|
padding: 8px 10px;
|
2021-06-29 19:46:02 +08:00
|
|
|
|
|
|
|
.item-avatar {
|
|
|
|
border-radius: 50%;
|
2021-07-19 21:42:26 +08:00
|
|
|
height: 32px;
|
|
|
|
margin: 0 16px 0 0;
|
|
|
|
width: 32px;
|
2021-06-29 19:46:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.item-email {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|