4946b3311d
We're not using proposals at the moment, so it's just in the way.
118 lines
2.0 KiB
SCSS
118 lines
2.0 KiB
SCSS
main section {
|
|
@include media-max(small) {
|
|
&#contributions-unconfirmed, &#contributions-confirmed {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.quick-filter {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 2rem;
|
|
|
|
p {
|
|
padding: 0.2rem 0 0;
|
|
}
|
|
|
|
label {
|
|
&+ label {
|
|
margin-left: 3.6rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.contribution-list {
|
|
clear: both;
|
|
width: 100%;
|
|
list-style: none;
|
|
|
|
li {
|
|
display: grid;
|
|
grid-template-columns: auto 5rem 5rem;
|
|
grid-row-gap: 0.5rem;
|
|
padding: 0.8rem 1.2rem;
|
|
background-color: rgba(255,255,255,0.1);
|
|
font-size: 1.2rem;
|
|
border-bottom: 1px solid rgba(255,255,255,0.2);
|
|
cursor: pointer;
|
|
|
|
&:first-of-type {
|
|
border-top: 1px solid rgba(255,255,255,0.2);
|
|
}
|
|
|
|
&.confirmed {
|
|
grid-template-columns: auto 5rem;
|
|
}
|
|
|
|
&.vetoed {
|
|
grid-template-columns: auto 5rem;
|
|
text-decoration: line-through;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&.selected {
|
|
background-color: rgba(255,255,255,0.2);
|
|
}
|
|
|
|
p {
|
|
align-self: center;
|
|
margin: 0;
|
|
line-height: 2rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
&.kredits-amount, &.voting {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
span {
|
|
&.title {
|
|
a {
|
|
text-decoration: none;
|
|
color: $body-text-color;
|
|
}
|
|
a:hover, a:active {
|
|
color: $primary-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.description {
|
|
line-height: 1.4em;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.category {
|
|
color: $blue;
|
|
padding-right: 0.2rem;
|
|
&.community { color: $red; }
|
|
&.dev { color: $pink; }
|
|
&.design { color: $yellow; }
|
|
&.docs { color: $green; }
|
|
&.ops { color: $purple; }
|
|
}
|
|
|
|
.amount {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.symbol {
|
|
font-size: 0.8rem;
|
|
padding-left: 0.2rem;
|
|
}
|
|
|
|
.recipient {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.votes {
|
|
font-size: 1rem;
|
|
color: $primary-color;
|
|
margin-right: 0.5rem;
|
|
}
|
|
}
|
|
|
|
}
|