lila/ui/lobby/css/app/_hook-list.scss

81 lines
1.4 KiB
SCSS
Raw Normal View History

2019-02-27 18:55:28 -07:00
.hooks__list {
width: 100%;
2019-02-28 04:43:28 -07:00
tr {
&.disabled {
opacity: 0.4;
td {
cursor: default;
background: transparent;
border-color: transparent;
}
}
&.cancel td {
background: fade-out($c-secondary, .6);
}
&.join:hover td {
2019-05-10 10:35:18 -06:00
background: fade-out($c-accent, .5);
2019-02-28 04:43:28 -07:00
color: #fff;
}
&:not(.disabled):hover ::before {
opacity: 1;
}
&.variants td {
text-align: center;
padding: 3px 0;
background: none;
text-transform: uppercase;
letter-spacing: 3px;
cursor: default;
2019-02-28 04:43:28 -07:00
}
2019-02-27 18:55:28 -07:00
}
2019-02-28 04:43:28 -07:00
th {
@extend %roboto;
padding: 1em;
&.sortable {
cursor: pointer;
}
&.sortable:hover,
&.sort {
font-weight: normal;
}
&.sort .is:before {
opacity: 0.7;
margin-right: 3px;
content: "R";
}
&.player {
width: 110px;
}
2019-02-27 18:55:28 -07:00
}
td {
2019-02-28 04:43:28 -07:00
@extend %nowrap-hidden;
padding: .5em .7em;
border-bottom: $border;
2019-02-27 18:55:28 -07:00
cursor: pointer;
2019-02-28 04:43:28 -07:00
background: fade-out($c-bg-box, .5);
&:first-child {
width: 16px;
}
&:first-child ::before {
font-size: 1.2em;
line-height: 1.3;
}
&:last-child ::before {
margin-right: 8px;
line-height: 0.9;
font-size: 1.6em;
}
::before {
opacity: 0.6;
}
2019-02-27 18:55:28 -07:00
}
tbody.stepping {
opacity: 0.7;
}
}
2019-02-28 20:51:48 -07:00
.lseeks .create {
margin-top: 20px;
text-align: center;
}