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 {
|
|
|
|
margin-bottom: 10px;
|
2019-11-12 18:32:43 +08:00
|
|
|
|
2019-11-12 18:26:18 +08:00
|
|
|
.inline-editing-container {
|
|
|
|
.view-mode {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-field {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
.input-field {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.form-group {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
& > :first-child {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.disabled) span.fas {
|
|
|
|
color: transparent !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|