- question icon in LayerControl.js - other includes in main.js - support for decorators (.babelrc) - package updates (package.json) - trials with vuejs (webpack.config.js)
60 lines
No EOL
928 B
CSS
60 lines
No EOL
928 B
CSS
.modal-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1001;
|
|
}
|
|
|
|
.modal {
|
|
background: #ffffff;
|
|
box-shadow: 2px 2px 20px 1px;
|
|
overflow-x: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 80%;
|
|
}
|
|
|
|
.modal-header,
|
|
.modal-footer {
|
|
padding: 15px;
|
|
display: flex;
|
|
}
|
|
|
|
.modal-header {
|
|
border-bottom: 1px solid #eeeeee;
|
|
color: #4aae9b;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.modal-footer {
|
|
border-top: 1px solid #eeeeee;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.modal-body {
|
|
position: relative;
|
|
padding: 20px 10px;
|
|
}
|
|
|
|
.btn-close {
|
|
border: none;
|
|
font-size: 20px;
|
|
padding: 20px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
color: #4aae9b;
|
|
background: transparent;
|
|
}
|
|
|
|
.btn-green {
|
|
color: white;
|
|
background: #4aae9b;
|
|
border: 1px solid #4aae9b;
|
|
border-radius: 2px;
|
|
} |