Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/pages/issuable.scss')
-rw-r--r--app/assets/stylesheets/pages/issuable.scss33
1 files changed, 24 insertions, 9 deletions
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index f3182af3047..51f964a4b70 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -176,11 +176,16 @@
}
.gutter-toggle {
+ display: flex;
+ align-items: center;
margin-left: 20px;
- padding-left: 10px;
+ padding: 4px;
+ border-radius: 4px;
+ height: 24px;
&:hover {
color: $gl-text-color;
+ background: $gray-50;
}
&:hover,
@@ -291,7 +296,7 @@
@include media-breakpoint-up(lg) {
padding: 0;
- form {
+ .issuable-context-form {
--initial-top: calc(#{$header-height} + #{$mr-tabs-height});
--top: var(--initial-top);
@@ -338,7 +343,6 @@
}
.gutter-toggle {
- border-left: 1px solid $border-gray-normal;
text-align: center;
}
@@ -405,8 +409,8 @@
width: 100%;
height: $sidebar-toggle-height;
margin-left: 0;
- padding-left: 0;
border-bottom: 1px solid $border-white-normal;
+ border-radius: 0;
}
a.gutter-toggle {
@@ -709,10 +713,6 @@
line-height: 20px;
padding: 0;
}
-
- .issue-updated-at {
- line-height: 20px;
- }
}
@include media-breakpoint-down(xs) {
@@ -736,7 +736,7 @@
.issuable-milestone,
.issuable-info,
.task-status,
- .issuable-updated-at {
+ .issuable-timestamp {
font-weight: $gl-font-weight-normal;
color: $gl-text-color-secondary;
@@ -991,4 +991,19 @@
bottom: -10%;
}
}
+
+ &.timeline-event-note-form {
+ &::before {
+ top: -15% !important; // Override default positioning
+ height: 20%;
+ }
+
+ &::after {
+ content: none;
+ }
+ }
+}
+
+.timeline-event-note-form {
+ padding-left: 20px;
}