misuzu/assets/less/permissions.less

79 lines
1.6 KiB
Text
Raw Normal View History

2018-07-08 19:24:59 +00:00
.permissions {
display: flex;
flex-direction: column;
margin-bottom: 4px;
&__line {
display: flex;
font-size: .9em;
2018-10-27 14:50:46 +00:00
line-height: 1.7em;
2018-07-08 19:24:59 +00:00
&--header {
font-size: 1.2em;
line-height: 1.4em;
2019-06-09 22:10:59 +00:00
border-bottom: 1px solid fade(#fff, 10%);
2018-07-08 19:24:59 +00:00
padding-bottom: 1px;
2018-10-27 14:50:46 +00:00
font-weight: 700;
2018-07-08 19:24:59 +00:00
&:not(:first-child) {
margin-top: 4px;
}
}
@media (max-width: @site-mobile-width) {
flex-wrap: wrap;
justify-content: right;
2019-06-09 22:10:59 +00:00
border-bottom: 1px solid fade(#fff, 10%);
}
2018-07-08 19:24:59 +00:00
}
&__title {
flex: 1 1 auto;
padding: 4px;
}
&__line:not(&__line--header) &__title {
2019-06-09 22:10:59 +00:00
border-bottom: 1px solid fade(#fff, 10%);
@media (max-width: @site-mobile-width) {
width: 100%;
border-bottom-width: 0;
}
}
2018-07-08 19:24:59 +00:00
&__choice {
width: 100px;
text-align: center;
padding: 4px;
@media (max-width: @site-mobile-width) {
border-left-width: 0;
padding: 10px;
}
2018-07-08 19:24:59 +00:00
&--radio {
2018-10-27 14:50:46 +00:00
justify-content: center;
2018-07-08 19:24:59 +00:00
}
&--yes {
2018-10-27 14:50:46 +00:00
--accent-colour: #0a0;
@media (max-width: @site-mobile-width) {
border-left-width: 0;
}
2018-07-08 19:24:59 +00:00
}
2018-10-27 14:50:46 +00:00
&--no {
--accent-colour: #a00;
}
&--never {
--accent-colour: #400;
2018-07-08 19:24:59 +00:00
}
2018-10-27 14:50:46 +00:00
&__wrapper {
2019-06-09 22:10:59 +00:00
border-left: 1px solid fade(#fff, 10%);
2018-07-08 19:24:59 +00:00
}
}
}