gitlab-org--gitlab-foss/app/assets/stylesheets/framework/markdown_area.scss

114 lines
1.9 KiB
SCSS
Raw Normal View History

.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;
pointer-events: none;
}
.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-08-10 07:18:02 +00:00
.div-dropzone-progress {
position: absolute;
top: 7px;
left: -40px;
width: 35px;
font-size: 13px;
text-align: right;
}
.dz-preview {
display: none;
}
}
}
.div-dropzone-alert {
margin-top: 5px;
margin-bottom: 0;
transition: opacity 200ms ease-in-out;
}
.md-area {
position: relative;
}
.md-header {
ul {
float: left;
margin-bottom: 1px;
}
}
.referenced-users {
color: #4c4e54;
padding-top: 10px;
}
.md-preview-holder {
background: #FFF;
border: 1px solid #ddd;
min-height: 169px;
padding: 5px;
box-shadow: none;
}
.new_note,
.edit_note,
.detail-page-description,
.milestone-description,
2014-12-24 14:52:40 +00:00
.wiki-content,
.merge-request-form {
.nav-tabs {
margin-bottom: 0;
border: none;
li a,
li.active a {
border: 1px solid #DDD;
}
}
}
2015-03-08 22:21:28 +00:00
.markdown-area {
@include border-radius(0);
2015-03-08 22:21:28 +00:00
background: #FFF;
border: 1px solid #ddd;
min-height: 140px;
2015-03-08 22:21:28 +00:00
padding: 5px;
box-shadow: none;
width: 100%;
}