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

456 lines
6.9 KiB
SCSS
Raw Normal View History

2015-01-15 06:42:58 +00:00
/**
* Note Form
*/
.diff-file .diff-content {
tr.line_holder:hover > td .line_note_link {
opacity: 1;
filter: alpha(opacity = 100);
2015-01-15 06:42:58 +00:00
}
}
2015-01-15 06:42:58 +00:00
.diff-file,
.discussion {
2016-03-29 17:17:31 +00:00
.new-note {
2015-01-15 06:42:58 +00:00
margin: 0;
2017-11-02 23:59:51 +00:00
border: 0;
2015-01-15 06:42:58 +00:00
}
}
2016-03-29 17:17:31 +00:00
.new-note,
.note-edit-form {
.note-form-actions {
position: relative;
margin: $gl-padding 0 0;
2015-01-15 06:42:58 +00:00
}
.note-preview-holder {
> p {
overflow-x: auto;
}
}
img {
max-width: 100%;
}
2015-01-15 06:42:58 +00:00
}
2016-03-30 07:28:06 +00:00
.note-textarea {
2016-04-13 08:08:34 +00:00
display: block;
2016-03-30 09:19:58 +00:00
padding: 10px 0;
2016-12-30 20:18:27 +00:00
color: $gl-text-color;
2018-07-24 21:17:49 +00:00
font-family: $regular-font;
2016-03-30 09:00:43 +00:00
border: 0;
2016-03-30 07:28:06 +00:00
&:focus {
outline: 0;
}
2015-01-15 06:42:58 +00:00
}
.note-image-attach {
2018-04-09 15:26:28 +00:00
@extend .col-lg-4;
2015-01-15 06:42:58 +00:00
margin-left: 45px;
float: none;
}
.common-note-form {
2016-03-30 09:00:43 +00:00
.md-area {
padding: $gl-padding-top $gl-padding;
2016-12-12 22:26:21 +00:00
border: 1px solid $border-color;
2016-03-30 09:00:43 +00:00
border-radius: $border-radius-base;
transition: border-color ease-in-out 0.15s,
box-shadow ease-in-out 0.15s;
background-color: $white;
2016-03-30 09:19:58 +00:00
&.is-focused {
border-color: $input-focus-border-color;
box-shadow: $input-focus-box-shadow;
2016-03-30 09:19:58 +00:00
.comment-toolbar,
.nav-links {
border-color: $blue-300;
2016-03-30 09:19:58 +00:00
}
}
2016-04-11 15:00:45 +00:00
2016-04-13 08:08:34 +00:00
&.is-dropzone-hover {
border-color: $green-500;
2016-04-13 08:09:10 +00:00
box-shadow: 0 0 2px $black-transparent,
0 0 4px $green-500-focus;
2016-04-13 08:08:34 +00:00
.comment-toolbar,
.nav-links {
border-color: $green-500;
2016-04-13 08:08:34 +00:00
}
}
2016-03-30 09:00:43 +00:00
}
2015-01-15 06:42:58 +00:00
}
.md-header .nav-links {
display: flex;
flex-flow: row wrap;
width: 100%;
2018-04-09 15:26:28 +00:00
.float-right {
// Flexbox quirk to make sure right-aligned items stay right-aligned.
margin-left: auto;
}
}
2017-09-14 11:01:07 +00:00
.issuable-note-warning {
2017-08-07 23:56:16 +00:00
color: $orange-600;
background-color: $orange-50;
2017-08-07 23:56:16 +00:00
border-radius: $border-radius-default $border-radius-default 0 0;
border: 1px solid $border-gray-normal;
2017-11-02 23:59:51 +00:00
border-bottom: 0;
2017-06-20 13:58:30 +00:00
padding: 3px 12px;
margin: auto;
align-items: center;
2017-10-06 11:32:39 +00:00
a {
color: $orange-600;
text-decoration: underline;
}
2017-11-05 23:13:11 +00:00
.icon {
margin-right: $issuable-warning-icon-margin;
vertical-align: text-bottom;
fill: $orange-600;
2017-11-05 23:13:11 +00:00
}
2017-07-12 09:50:26 +00:00
+ .md-area {
border-top-left-radius: 0;
border-top-right-radius: 0;
2017-09-27 14:46:09 +00:00
}
2017-11-05 23:13:11 +00:00
.disabled-comment {
2017-11-06 23:51:23 +00:00
border: 0;
2017-11-05 23:13:11 +00:00
border-radius: $label-border-radius;
padding-top: $gl-vert-padding;
padding-bottom: $gl-vert-padding;
.icon svg {
position: relative;
top: 2px;
margin-right: $btn-margin-5;
2017-11-05 23:13:11 +00:00
width: $gl-font-size;
height: $gl-font-size;
fill: $orange-600;
}
}
2017-09-27 14:46:09 +00:00
}
.sidebar-item-icon {
border-radius: $border-radius-default;
margin: 0 5px 0 0;
vertical-align: text-bottom;
&.is-active {
fill: $orange-600;
2017-06-20 13:58:30 +00:00
}
.sidebar-collapsed-icon & {
margin: 0;
}
.sidebar-item-value & {
fill: $gray-500;
}
}
2017-09-14 11:01:07 +00:00
.sidebar-item-warning-message {
2017-08-07 23:56:16 +00:00
line-height: 1.5;
padding: 16px;
2017-09-15 09:19:43 +00:00
.text {
2017-09-14 11:01:07 +00:00
color: $text-color;
}
.sidebar-item-warning-message-actions {
2017-08-07 23:56:16 +00:00
display: flex;
2017-09-15 09:19:43 +00:00
.btn {
2017-08-07 23:56:16 +00:00
flex-grow: 1;
}
2017-06-20 13:58:30 +00:00
}
}
2016-03-30 12:39:41 +00:00
.discussion-form {
background-color: $white;
@include media-breakpoint-down(xs) {
.user-avatar-link {
display: none;
}
.note-edit-form {
margin-left: 0;
}
}
}
2018-11-13 20:53:10 +00:00
table {
.discussion-form-container {
2018-11-16 17:05:34 +00:00
padding: $gl-padding;
2018-11-13 20:53:10 +00:00
}
2017-10-07 04:25:17 +00:00
}
.discussion-notes .disabled-comment {
padding: 6px 0;
}
.notes.notes-form > li.timeline-entry {
2018-04-16 17:28:52 +00:00
@include notes-media('max', map-get($grid-breakpoints, md) - 1) {
padding: 0;
}
.timeline-content {
2018-04-16 17:28:52 +00:00
@include notes-media('max', map-get($grid-breakpoints, md) - 1) {
margin: 0;
}
}
.timeline-entry-inner {
border: 0;
}
}
2015-01-15 06:42:58 +00:00
.note-edit-form {
display: none;
2016-12-02 19:43:33 +00:00
font-size: 14px;
2015-01-15 06:42:58 +00:00
.md-area {
background-color: $white;
2015-01-15 06:42:58 +00:00
}
}
.js-note-attachment-delete {
display: none;
}
.error-alert > .alert {
margin-top: 5px;
margin-bottom: 5px;
&.alert-dismissable {
.close {
color: $white;
opacity: 0.85;
font-weight: $gl-font-weight-normal;
&:hover {
opacity: 1;
}
}
}
2015-01-15 06:42:58 +00:00
}
2018-11-16 17:05:34 +00:00
.discussion-body,
2018-11-20 10:22:08 +00:00
.diff-file,
2018-11-16 17:05:34 +00:00
.commit-diff {
2015-01-15 06:42:58 +00:00
.discussion-reply-holder {
background-color: $gray-light;
2018-11-14 17:09:43 +00:00
border-radius: 0 0 3px 3px;
2018-11-16 17:05:34 +00:00
padding: $gl-padding;
border-top: 1px solid $gray-50;
+ .new-note {
background-color: $gray-light;
border-top: 1px solid $gray-50;
}
&.is-replying {
padding-bottom: $gl-padding;
}
.user-avatar-link {
img {
margin-top: -3px;
}
}
}
}
.discussion-with-resolve-btn {
2018-11-08 07:58:45 +00:00
@include media-breakpoint-up(sm) {
display: flex;
}
.discussion-actions {
display: table;
2018-11-08 07:58:45 +00:00
svg {
fill: $gray-500;
}
.btn-group {
display: table-cell;
&:first-child {
padding-right: 0;
}
&:first-child:not(:last-child) > div {
border-right: 0;
}
}
2015-01-15 06:42:58 +00:00
}
2018-12-05 17:03:20 +00:00
@include media-breakpoint-down(xs) {
.btn {
width: 100%;
}
}
2018-11-08 07:58:45 +00:00
.btn-text-field {
@include media-breakpoint-down(xs) {
margin-bottom: $gl-padding-8;
}
}
2015-01-15 06:42:58 +00:00
}
2016-03-30 09:00:43 +00:00
.comment-toolbar {
padding-top: $gl-padding-top;
2016-12-30 20:18:27 +00:00
color: $gl-text-color-secondary;
2016-03-30 09:00:43 +00:00
border-top: 1px solid $border-color;
}
.toolbar-button {
padding: 0;
background: none;
border: 0;
font-size: 14px;
line-height: 16px;
&:hover,
&:focus {
2018-08-14 16:44:08 +00:00
color: $blue-600;
2016-03-30 09:00:43 +00:00
outline: 0;
}
2018-04-09 15:26:28 +00:00
@include media-breakpoint-up(md) {
2016-03-30 09:19:58 +00:00
float: left;
margin-right: $gl-padding;
&:last-child {
float: right;
margin-right: 0;
}
2016-03-30 09:00:43 +00:00
}
}
.toolbar-text {
font-size: 14px;
line-height: 16px;
margin-top: 2px;
2016-03-30 09:19:58 +00:00
2018-04-09 15:26:28 +00:00
@include media-breakpoint-up(md) {
2016-03-30 09:19:58 +00:00
float: left;
}
}
2016-06-20 07:47:38 +00:00
.note-form-actions {
color: $gl-text-color;
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
2016-06-20 07:47:38 +00:00
.btn {
float: none;
width: 100%;
&:not(:last-child) {
margin-bottom: 10px;
}
}
}
}
.note-edit-warning.settings-message {
display: none;
padding: 5px 10px;
position: absolute;
left: 127px;
top: 2px;
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
position: relative;
top: 0;
left: 0;
margin-bottom: 10px;
}
}
2017-04-05 15:58:01 +00:00
.comment-type-dropdown {
.btn-success {
2017-04-07 18:37:12 +00:00
width: auto;
}
.dropdown-toggle {
float: right;
2018-01-16 19:31:17 +00:00
i {
color: $white;
padding-right: 2px;
2017-04-07 18:37:12 +00:00
margin-top: 2px;
}
2018-01-16 19:31:17 +00:00
&[disabled] {
i {
color: $gl-text-color-disabled;
}
}
2017-04-05 15:58:01 +00:00
}
.dropdown-menu {
top: initial;
bottom: 100%;
2017-04-06 14:56:51 +00:00
width: 298px;
2017-04-05 15:58:01 +00:00
}
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
2017-04-07 18:37:12 +00:00
display: flex;
width: 100%;
margin-bottom: 10px;
2017-04-07 18:37:12 +00:00
.btn-success {
2017-04-07 18:37:12 +00:00
flex-grow: 1;
flex-shrink: 0;
width: auto;
}
.dropdown-toggle {
flex-grow: 0;
flex-shrink: 1;
width: auto;
}
}
2017-04-05 15:58:01 +00:00
}
.uploading-container {
float: right;
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
float: left;
margin-top: 5px;
}
}
.uploading-error-icon,
.uploading-error-message {
2018-08-14 16:44:08 +00:00
color: $red-500;
}
.uploading-error-message {
2018-04-09 15:26:28 +00:00
@include media-breakpoint-down(xs) {
&::after {
content: '\a';
white-space: pre;
}
}
}
.uploading-progress {
margin-right: 5px;
}
.markdown-selector {
2018-08-14 16:44:08 +00:00
color: $blue-600;
}