scinote-web/app/assets/stylesheets/marvinjs.scss

70 lines
1.1 KiB
SCSS
Raw Normal View History

2019-04-27 00:24:21 +08:00
@import "constants";
@import "mixins";
// MarvinJs modal
.modal-marvin-js {
background: transparent;
font-size: $font-size-large;
padding: 0 !important;
.preview-close {
background: transparent;
border: 0;
color: $color-white;
display: inline-block;
float: right;
}
.modal-dialog {
height: 100%;
margin: 0;
padding: 0;
width: auto;
}
.modal-content {
background: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
color: $color-white;
height: 100%;
width: auto;
}
.modal-header {
background: $color-black;
border: 0;
height: 60px;
text-align: center;
.file-name {
float: left;
}
}
.modal-body {
height: calc(100% - 60px);
padding: 0;
#marvinjs-editor {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
#marvinjs-sketch {
overflow: hidden;
min-width: 500px;
min-height: 450px;
}
}
}
.file-save-link {
color: $color-white;
display: inline-block;
float: right;
margin-right: 20px;
}
}