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

102 lines
1.5 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.div-dropzone-wrapper {
.div-dropzone {
position: relative;
.div-dropzone-hover {
position: absolute;
top: 50%;
left: 50%;
2016-06-02 11:05:42 +05:30
margin-top: -11.5px;
margin-left: -15px;
2014-09-02 18:07:02 +05:30
opacity: 0;
2016-06-02 11:05:42 +05:30
font-size: 30px;
2014-09-02 18:07:02 +05:30
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;
2016-06-02 11:05:42 +05:30
bottom: 10px;
right: 5px;
2014-09-02 18:07:02 +05:30
opacity: 0;
2016-06-02 11:05:42 +05:30
font-size: 20px;
2014-09-02 18:07:02 +05:30
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;
}
2016-06-02 11:05:42 +05:30
.md-header {
.nav-links {
.active {
a {
border-bottom-color: #000;
}
}
a {
padding-top: 0;
line-height: 1;
}
}
}
2015-09-11 14:41:01 +05:30
.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 {
2016-06-02 11:05:42 +05:30
min-height: 167px;
padding: 10px 0;
overflow-x: auto;
2015-04-26 12:48:37 +05:30
}
.markdown-area {
2015-11-26 14:37:03 +05:30
@include border-radius(0);
2016-06-02 11:05:42 +05:30
background: #fff;
2015-04-26 12:48:37 +05:30
border: 1px solid #ddd;
2015-09-25 12:07:36 +05:30
min-height: 140px;
2016-02-05 20:25:01 +05:30
max-height: 500px;
2015-04-26 12:48:37 +05:30
padding: 5px;
box-shadow: none;
width: 100%;
}
2016-06-02 11:05:42 +05:30
.md {
&.md-preview-holder {
code {
white-space: pre-wrap;
word-break: keep-all;
}
}
}