gitlab-org--gitlab-foss/app/assets/stylesheets/framework/lists.scss

305 lines
4.5 KiB
SCSS

/**
* Well styled list
*
*/
.hover-list {
position: relative;
margin: 0;
padding: 0;
list-style: none;
> li {
padding: 10px 15px;
min-height: 20px;
border-bottom: 1px solid $list-border;
word-wrap: break-word;
&::after {
content: ' ';
display: table;
clear: both;
}
&.disabled {
color: $gl-text-color-tertiary;
}
&:not(.ui-sort-disabled):hover {
background: $blue-50;
}
&.unstyled {
&:hover {
background: none;
}
}
&.smoke { background-color: $gray-light; }
&:last-child {
border-bottom: 0;
&.bottom {
background: $gray-light;
}
}
.list-item-name {
float: left;
position: relative;
top: 3px;
}
p {
padding-top: 1px;
margin: 0;
color: $white-normal;
img {
position: relative;
top: 3px;
}
}
.card.card-body-title {
font-size: $gl-font-size;
line-height: 18px;
}
}
}
/** light list with border-bottom between li **/
ul.bordered-list,
ul.unstyled-list {
@include basic-list;
&.top-list {
li:first-child {
padding-top: 0;
h4,
h5 {
margin-top: 0;
}
}
}
}
ul.unstyled-list > li {
border-bottom: 0;
}
ul.list-items-py-2 {
> li {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
}
// Generic content list
ul.content-list {
@include basic-list;
margin: 0;
padding: 0;
li {
border-color: $white-normal;
font-size: $gl-font-size;
color: $gl-text-color;
word-break: break-word;
&.no-description {
.title {
line-height: $list-text-height;
}
}
.title {
font-weight: $gl-font-weight-bold;
}
a {
color: $gl-text-color;
&.inline-link {
color: $blue-600;
}
}
.description {
@include str-truncated;
}
.controls {
float: right;
> .control-text {
margin-right: $gl-padding-top;
line-height: $list-text-height;
&:last-child {
margin-right: 0;
}
}
> .btn,
> .btn-group,
> .dropdown.inline {
margin-right: $gl-padding-top;
display: inline-block;
margin-top: 3px;
margin-bottom: 4px;
&.btn-ldap-override {
@include media-breakpoint-up(sm) {
margin-bottom: 0;
}
}
&.has-tooltip,
&:last-child {
margin-right: 0;
@include media-breakpoint-down(xs) {
margin: 0 auto;
}
}
}
.no-comments {
opacity: 0.5;
}
}
// When dragging a list item
&.ui-sortable-helper {
border-bottom: 0;
}
&.list-placeholder {
background-color: $gray-light;
border: dotted 1px $white-normal;
margin: 1px 0;
min-height: 52px;
}
}
}
// Content list using flexbox
.flex-list {
.flex-row {
display: flex;
align-items: center;
white-space: nowrap;
// Override style that allows the flex-row text to wrap.
&.allow-wrap {
white-space: normal;
}
}
.row-main-content {
flex: 1 1 auto;
overflow: hidden;
padding-right: 8px;
}
.row-fixed-content {
flex: 0 0 auto;
margin-left: auto;
}
.row-title {
font-weight: $gl-font-weight-bold;
}
.row-second-line {
display: block;
}
.dropdown {
.btn-block {
margin-bottom: 0;
line-height: inherit;
}
}
.badge-secondary {
color: $gl-text-color-secondary;
}
.avatar-cell {
align-self: flex-start;
}
}
.card > .content-list > li {
padding: $gl-padding-top $gl-padding;
}
ul.controls {
float: right;
list-style: none;
display: flex;
align-items: center;
.btn {
padding: 10px 14px;
}
> li {
float: left;
margin-right: 10px;
&:last-child {
margin-right: 0;
}
.author-link {
.avatar-inline {
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
}
}
}
.issuable-pipeline-broken a,
.author-link {
display: flex;
}
}
ul.indent-list {
padding: 10px 0 0 30px;
}
// Specific styles for tree list
@keyframes spin-avatar {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.namespace-title {
.tooltip-inner {
max-width: 350px;
}
}
.horizontal-list {
padding-left: 0;
list-style: none;
> li {
float: left;
}
&.list-items-separated {
> li:not(:last-child)::after {
content: '\00b7';
margin: 0 $gl-padding-4;
}
}
}