fleet/frontend/pages/admin/TeamManagementPage/_styles.scss
Noah Talerman 124d272b38
Update the columns and elements the Fleet UI shows/hides at breakpoints (#5186)
* Revisions to the specification in the "Make table behavior in the Fleet UI consistent down to 768px" issue: #3052
2022-04-18 13:36:25 -04:00

132 lines
2.2 KiB
SCSS

.team-management {
padding: 0;
&__page-description {
font-size: $x-small;
color: $core-fleet-black;
@include sticky-settings-description;
padding-bottom: $pad-medium;
}
.data-table-block {
.data-table__table {
thead {
.name__header {
width: $col-md;
}
.host_count__header {
width: $col-md;
border-right: none;
}
.actions__header {
width: auto;
}
@media (min-width: $break-990) {
.host_count__header {
border-right: 1px solid $ui-fleet-blue-15;
}
}
}
tbody {
.name__cell {
max-width: $col-md;
}
.host_count__cell {
max-width: $col-md;
}
.actions__cell {
width: auto;
}
}
}
}
}
.no-teams {
display: flex;
flex-direction: column;
align-items: center;
margin-top: $pad-xxxlarge;
a {
font-size: $x-small;
color: $core-vibrant-blue;
font-weight: $bold;
text-decoration: none;
img {
width: 12px;
height: 12px;
margin-left: 7px;
}
}
h1 {
font-size: $large;
font-weight: $regular;
line-height: normal;
letter-spacing: normal;
color: $core-fleet-black;
}
h2 {
font-size: $small;
font-weight: $bold;
margin: 0 0 $pad-large;
line-height: 20px;
color: $core-fleet-black;
}
ul {
margin: 0;
padding: 0;
color: $core-fleet-black;
list-style: none;
li {
&::before {
content: "";
color: $core-vibrant-blue;
margin-right: $pad-medium;
}
}
}
&__inner {
display: flex;
flex-direction: row;
h1 {
font-size: $small;
font-weight: $bold;
margin-bottom: $pad-medium;
}
img {
width: 176px;
margin-right: $pad-xlarge;
}
p {
color: $core-fleet-black;
font-weight: $regular;
font-size: $x-small;
margin: 0;
margin-bottom: $pad-large;
}
.no-filter-results {
display: flex;
flex-direction: column;
width: 350px;
}
}
&__inner-text {
width: 350px;
}
}