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

268 lines
4 KiB
SCSS
Raw Normal View History

2015-01-15 01:42:58 -05:00
/**
* Note Form
*/
2016-03-31 11:56:22 -04:00
.comment-btn {
@extend .btn-create;
}
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);
2015-01-15 01:42:58 -05:00
}
}
2015-01-15 01:42:58 -05:00
.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;
}
.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-04-13 04:08:34 -04:00
display: block;
2016-03-30 05:19:58 -04:00
padding: 10px 0;
color: $gl-gray;
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-04-04 06:00:29 -04:00
border: 1px solid $note-form-border-color;
2016-03-30 05:00:43 -04:00
border-radius: $border-radius-base;
transition: border-color ease-in-out 0.15s,
box-shadow ease-in-out 0.15s;
2016-03-30 05:19:58 -04:00
&.is-focused {
@extend .form-control:focus;
2016-03-30 05:19:58 -04:00
.comment-toolbar,
.nav-links {
2016-04-04 06:00:29 -04:00
border-color: $focus-border-color;
2016-03-30 05:19:58 -04:00
}
}
2016-04-11 11:00:45 -04:00
2016-04-13 04:08:34 -04:00
&.is-dropzone-hover {
border-color: $gl-success;
2016-04-13 04:09:10 -04:00
box-shadow: 0 0 2px $black-transparent,
2016-04-13 13:14:01 -04:00
0 0 4px $gl-success-focus;
2016-04-13 04:08:34 -04:00
.comment-toolbar,
.nav-links {
border-color: $gl-success;
}
}
2016-03-30 05:00:43 -04:00
}
2015-01-15 01:42:58 -05:00
}
.md-header .nav-links {
display: flex;
display: -webkit-flex;
flex-flow: row wrap;
-webkit-flex-flow: row wrap;
width: 100%;
.pull-right {
// Flexbox quirk to make sure right-aligned items stay right-aligned.
margin-left: auto;
}
}
.confidential-issue-warning {
background-color: $gray-normal;
border-radius: 3px;
padding: 3px 12px;
margin: auto;
margin-top: 0;
text-align: center;
font-size: 13px;
2016-12-01 00:27:58 -05:00
@media (max-width: $screen-sm-max) {
// On smaller devices the warning becomes the fourth item in the list,
// rather than centering, and grows to span the full width of the
// comment area.
order: 4;
-webkit-order: 4;
margin: 6px auto;
width: 100%;
}
}
2016-03-30 08:39:41 -04:00
.discussion-form {
padding: $gl-padding-top $gl-padding;
2016-04-11 11:00:45 -04:00
background-color: $white-light;
2016-03-30 08:39:41 -04:00
}
2015-01-15 01:42:58 -05:00
.note-edit-form {
display: none;
2016-12-02 14:43:33 -05:00
font-size: 14px;
2015-01-15 01:42:58 -05:00
.md-area {
2016-11-30 08:25:25 -05:00
background-color: $white-light;
2015-01-15 01:42:58 -05:00
}
}
.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 {
padding: 10px 15px;
}
.discussion-reply-holder {
2016-03-31 11:56:22 -04:00
background-color: $white-light;
padding: 10px 16px;
}
}
.discussion-with-resolve-btn {
display: table;
width: 100%;
border-collapse: separate;
table-layout: auto;
.btn-group {
display: table-cell;
float: none;
width: 1%;
&:first-child {
width: 100%;
padding-right: 5px;
}
&:last-child {
padding-left: 5px;
}
2015-01-15 01:42:58 -05:00
}
.btn {
width: 100%;
}
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
}
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;
2016-04-04 06:00:29 -04:00
color: $note-toolbar-color;
2016-03-30 05:00:43 -04:00
border-top: 1px solid $border-color;
}
2016-05-26 10:47:36 -04:00
.md-helper {
padding-top: 10px;
}
2016-03-30 05:00:43 -04:00
.toolbar-button {
padding: 0;
background: none;
border: 0;
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 {
font-size: 14px;
line-height: 16px;
2016-03-30 05:19:58 -04:00
@media (min-width: $screen-md-min) {
float: left;
}
}
2016-06-20 03:47:38 -04:00
.note-form-actions {
@media (max-width: $screen-xs-max) {
.btn {
float: none;
width: 100%;
&:not(:last-child) {
margin-bottom: 10px;
}
}
}
}