This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/components/list.scss

124 lines
1.6 KiB
SCSS
Raw Normal View History

.card.is-fullwidth {
2019-09-09 17:55:43 +00:00
margin-bottom: 1rem;
.add-form {
margin: 1rem;
}
.content {
padding: 0;
}
.table {
2019-09-09 17:55:43 +00:00
border-top: 1px solid darken(#fff, 15%);
border-radius: 4px;
overflow: hidden;
2019-09-09 17:55:43 +00:00
td {
2019-09-09 17:55:43 +00:00
vertical-align: middle;
}
td.type, td.actions {
2019-09-09 17:55:43 +00:00
width: 250px;
}
td.actions {
2019-09-09 17:55:43 +00:00
text-align: right;
}
}
}
.sharables-list, .sharables-namespace {
2019-09-09 17:55:43 +00:00
padding: 0 !important;
2020-01-22 20:00:41 +00:00
}
.task-add .button {
padding: 10px 1em;
height: 40px;
}
.list-title {
display: flex;
align-items: center;
h1 {
margin: 0;
}
.icon {
color: $grey-dark;
margin-left: 1rem;
height: 1rem;
width: 1rem;
}
}
.edit-list {
padding-bottom: 1em;
}
.filter-container {
text-align: right;
width: 100%;
min-width: 400px;
max-width: 180px;
position: absolute;
right: 1.5em;
margin-top: -58px;
z-index: 99;
.items {
display: flex;
justify-content: flex-end;
.button:not(:last-child) {
margin-right: .5em;
}
}
.button {
height: $switch-view-height;
}
.card {
text-align: left;
margin-top: calc(1rem - 1px);
float: right;
}
.fancycheckbox {
display: block;
}
.search {
display: flex;
align-items: center;
justify-content: space-between;
margin-right: .5em;
.button, .input {
height: $switch-view-height;
}
.field {
transition: width $transition;
width: 100%;
&.hidden {
width: 0;
height: 0;
margin: 0;
overflow: hidden;
}
.button {
height: 100%;
}
}
}
.filters input {
font-size: .9em;
}
}