2016-08-15 17:04:36 +00:00
|
|
|
@import '../constants/dimensions';
|
|
|
|
@import '../constants/colors';
|
|
|
|
|
|
|
|
.cookie-editor.modal__body {
|
|
|
|
overflow: visible;
|
|
|
|
display: grid;
|
2016-09-20 20:53:34 +00:00
|
|
|
grid-template-rows: auto minmax(0, 1fr);
|
2016-08-15 17:04:36 +00:00
|
|
|
|
|
|
|
table {
|
|
|
|
input:not([type="checkbox"]) {
|
2016-08-29 17:58:59 +00:00
|
|
|
padding: @padding-xs @padding-xxs;
|
2016-08-15 17:04:36 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
margin: 0;
|
2016-08-29 17:58:59 +00:00
|
|
|
padding: 0 @padding-sm;
|
|
|
|
height: @line-height-xs;
|
2016-08-15 17:04:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cookie-editor__editor {
|
2016-08-29 17:58:59 +00:00
|
|
|
padding: 0 @padding-md @padding-md @padding-md;
|
2016-08-15 17:04:36 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|