misuzu/assets/less/manage/classes/permissions.less

55 lines
958 B
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: 1.1em;
line-height: 1.4em;
&--header {
font-size: 1.2em;
line-height: 1.5em;
border-bottom: 1px solid #333;
padding-bottom: 1px;
&:not(:first-child) {
margin-top: 4px;
}
}
}
&__title {
flex: 1 1 auto;
padding: 4px;
}
&__input {
cursor: pointer;
}
&__choice {
width: 100px;
text-align: center;
padding: 4px;
&--radio {
cursor: pointer;
border-left: 1px solid #333;
}
&--yes:hover {
background-color: #0a0;
}
&--no:hover {
background-color: #a00;
}
&--never:hover {
background-color: #400;
}
}
}