28 lines
343 B
SCSS
28 lines
343 B
SCSS
|
table.policies {
|
||
|
tr {
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover td {
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
a {
|
||
|
color: black;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.number-expired {
|
||
|
color: $red;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.edit-policy {
|
||
|
.policy-editor {
|
||
|
max-height: 600px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.input {
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
}
|