gitlab-org--gitlab-foss/app/assets/stylesheets/pages/note_form.scss

187 lines
2.6 KiB
SCSS
Raw Normal View History

2015-01-15 01:42:58 -05:00
/**
* Note Form
*/
.reply-btn {
@extend .btn-primary;
margin: 10px $gl-padding;
2015-01-15 01:42:58 -05:00
}
.diff-file .diff-content {
tr.line_holder:hover > td .line_note_link {
opacity: 1.0;
filter: alpha(opacity=100);
}
}
.diff-file,
.discussion {
2016-03-29 13:17:31 -04:00
.new-note {
2015-01-15 01:42:58 -05:00
margin: 0;
border: none;
}
}
2016-03-29 13:17:31 -04:00
.new-note {
2015-01-15 01:42:58 -05:00
display: none;
}
2016-03-29 13:17:31 -04:00
.new-note, .note-edit-form {
.note-form-actions {
margin-top: $gl-padding;
2015-01-15 01:42:58 -05:00
}
.note-preview-holder {
> p {
overflow-x: auto;
}
}
img {
max-width: 100%;
}
2015-01-15 01:42:58 -05:00
}
2016-03-30 03:28:06 -04:00
.note-textarea {
2016-03-30 05:19:58 -04:00
padding: 10px 0;
2016-03-30 03:28:06 -04:00
font-family: $regular_font;
2016-03-30 05:00:43 -04:00
border: 0;
2016-03-30 03:28:06 -04:00
&:focus {
outline: 0;
}
2015-01-15 01:42:58 -05:00
}
.note-image-attach {
@extend .col-md-4;
margin-left: 45px;
float: none;
}
.common-note-form {
2016-03-30 05:00:43 -04:00
.md-area {
padding: $gl-padding-top $gl-padding;
2016-03-30 05:19:58 -04:00
border: 1px solid #e5e5e5;
2016-03-30 05:00:43 -04:00
border-radius: $border-radius-base;
2016-03-30 05:19:58 -04:00
&.is-focused {
border-color: #3b99fc;
2016-03-30 09:03:14 -04:00
box-shadow: 0 0 2px rgba(#000, .2),
0 0 4px rgba(#3b99fc, .5);
2016-03-30 05:19:58 -04:00
.comment-toolbar,
.nav-links {
border-color: #3b99fc;
}
}
2016-03-30 05:00:43 -04:00
}
2015-01-15 01:42:58 -05:00
}
2016-03-30 08:39:41 -04:00
.discussion-form {
padding: $gl-padding-top $gl-padding;
background-color: #fff;
}
2015-01-15 01:42:58 -05:00
.note-edit-form {
display: none;
font-size: 15px;
2015-01-15 01:42:58 -05:00
.form-actions {
padding-left: 20px;
.btn-save {
float: left;
}
.note-form-option {
float: left;
padding: 2px 0 0 25px;
}
}
}
.js-note-attachment-delete {
display: none;
}
.parallel-comment {
padding: 6px;
}
.error-alert > .alert {
margin-top: 5px;
margin-bottom: 5px;
}
.discussion-body,
.diff-file {
.notes .note {
border-color: #ddd;
padding: 10px 15px;
}
.discussion-reply-holder {
background: $background-color;
border-top: 1px solid $border-color;
2015-01-15 01:42:58 -05:00
}
}
.discussion-notes-count {
font-size: 16px;
}
.edit_note {
.markdown-area {
min-height: 140px;
max-height: 500px;
2015-01-15 01:42:58 -05:00
}
.note-form-actions {
background: transparent;
2015-01-15 01:42:58 -05:00
}
}
2016-03-30 05:00:43 -04:00
.comment-toolbar {
padding-top: $gl-padding-top;
border-top: 1px solid $border-color;
}
.toolbar-button {
padding: 0;
background: none;
border: 0;
color: #959494;
font-size: 14px;
line-height: 16px;
&:hover,
&:focus {
color: $gl-link-color;
outline: 0;
}
2016-03-30 05:19:58 -04:00
@media (min-width: $screen-md-min) {
float: left;
margin-right: $gl-padding;
&:last-child {
float: right;
margin-right: 0;
}
2016-03-30 05:00:43 -04:00
}
}
.toolbar-button-icon {
position: relative;
top: 1px;
margin-right: 3px;
color: inherit;
font-size: 16px;
}
.toolbar-text {
color: #959494;
font-size: 14px;
line-height: 16px;
2016-03-30 05:19:58 -04:00
@media (min-width: $screen-md-min) {
float: left;
}
}