AdminLTE/build/scss/_users-list.scss

46 lines
617 B
SCSS
Raw Normal View History

//
// Component: Users List
//
2015-10-31 22:00:16 +01:00
.users-list {
@include list-unstyled;
2015-10-31 22:00:16 +01:00
> li {
float: left;
padding: 10px;
text-align: center;
width: 25%;
2015-10-31 22:00:16 +01:00
img {
@include border-radius(50%);
height: auto;
max-width: 100%;
2015-10-31 22:00:16 +01:00
}
2015-10-31 22:00:16 +01:00
> a:hover {
&,
.users-list-name {
color: #999;
}
}
}
}
.users-list-name,
.users-list-date {
display: block;
}
.users-list-name {
color: $gray-700;
2016-10-22 21:32:28 +02:00
font-size: $font-size-sm;
2015-10-31 22:00:16 +01:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2015-10-31 22:00:16 +01:00
}
.users-list-date {
color: darken($gray-500, 20%);
2015-10-31 22:00:16 +01:00
font-size: 12px;
}