debian-mirror-gitlab/app/assets/stylesheets/framework/markdown_area.scss

91 lines
1.6 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.div-dropzone-wrapper {
.div-dropzone {
position: relative;
padding: 0;
border: 0;
margin-bottom: 5px;
.div-dropzone-focus {
border-color: #66afe9 !important;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
outline: 0 !important;
}
.div-dropzone-hover {
position: absolute;
top: 50%;
left: 50%;
margin-top: -0.5em;
margin-left: -0.6em;
opacity: 0;
font-size: 50px;
transition: opacity 200ms ease-in-out;
2015-04-26 12:48:37 +05:30
pointer-events: none;
2014-09-02 18:07:02 +05:30
}
.div-dropzone-spinner {
position: absolute;
top: 100%;
left: 100%;
margin-top: -1.1em;
margin-left: -1.1em;
opacity: 0;
font-size: 30px;
transition: opacity 200ms ease-in-out;
}
.div-dropzone-icon {
display: block;
text-align: center;
font-size: inherit;
}
2015-09-11 14:41:01 +05:30
.div-dropzone-progress {
position: absolute;
top: 7px;
left: -40px;
width: 35px;
font-size: 13px;
text-align: right;
}
2014-09-02 18:07:02 +05:30
.dz-preview {
display: none;
}
}
}
.div-dropzone-alert {
margin-top: 5px;
margin-bottom: 0;
transition: opacity 200ms ease-in-out;
}
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
.md-area {
position: relative;
}
.referenced-users {
2015-12-23 02:04:40 +05:30
color: #4c4e54;
padding-top: 10px;
2015-09-11 14:41:01 +05:30
}
2015-04-26 12:48:37 +05:30
.md-preview-holder {
background: #FFF;
border: 1px solid #ddd;
2015-09-25 12:07:36 +05:30
min-height: 169px;
2015-04-26 12:48:37 +05:30
padding: 5px;
box-shadow: none;
}
.markdown-area {
2015-11-26 14:37:03 +05:30
@include border-radius(0);
2015-04-26 12:48:37 +05:30
background: #FFF;
border: 1px solid #ddd;
2015-09-25 12:07:36 +05:30
min-height: 140px;
max-height: 430px;
2015-04-26 12:48:37 +05:30
padding: 5px;
box-shadow: none;
width: 100%;
}