kahuna/public/js/components/gr-my-uploads/gr-my-uploads.css (49 lines of code) (raw):
.my-uploads-container {
display: flex;
align-items: center;
height: 50px;
padding-left: 12px;
padding-right: 12px;
fill: #ccc;
}
.my-uploads-container:hover {
color: white;
}
.custom-checkbox {
cursor: pointer;
}
.label-wrapper {
display: flex;
align-items: center;
padding-bottom: 22px;
}
.custom-checkbox input {
visibility: hidden;
width: 0;
height: 0;
margin: 0;
padding: 0;
}
.custom-checkbox .label-wrapper .custom-span {
height: 14px;
width: 14px;
border: 1px solid grey;
display: inline-block;
background: white;
margin-right: 7px;
}
.custom-label-short {
display: none;
}
[type=checkbox]:checked + .label-wrapper .custom-span {
background: #4eaae8;
content: url('data:image/svg+xml,<svg width="18px" height="18px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" points="3.7 14.3 9.6 19 20.3 5" stroke="white" stroke-width="3"/></svg>');
}
@media screen and (max-width: 880px) {
.custom-label {
display: none;
}
.custom-label-short {
display: inline;
}
}