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/page_bundles/issues_show.scss')
-rw-r--r--app/assets/stylesheets/page_bundles/issues_show.scss28
1 files changed, 3 insertions, 25 deletions
diff --git a/app/assets/stylesheets/page_bundles/issues_show.scss b/app/assets/stylesheets/page_bundles/issues_show.scss
index ade649faaae..c664e0a734e 100644
--- a/app/assets/stylesheets/page_bundles/issues_show.scss
+++ b/app/assets/stylesheets/page_bundles/issues_show.scss
@@ -24,8 +24,9 @@
/* The inside bullet aligns itself to the bottom, which we see when text to the right of
* a multi-line list item wraps. We fix this by aligning it to the top, and excluding
- * other elements adversely affected by this. Targeting ::marker doesn't seem to work. */
- > *:not(code):not(input):not(.gl-label) {
+ * other elements. Targeting ::marker doesn't seem to work, instead we exclude custom elements
+ * or anything with a class */
+ > *:not(gl-emoji, code, [class]) {
vertical-align: top;
}
@@ -75,29 +76,6 @@
}
}
-.description.work-items-enabled {
- ul.task-list {
- > li.task-list-item {
- .js-add-task {
- svg {
- visibility: hidden;
- }
-
- &:focus svg {
- visibility: visible;
- }
- }
-
- &:hover,
- &:focus-within {
- .js-add-task svg {
- visibility: visible;
- }
- }
- }
- }
-}
-
.is-ghost {
opacity: 0.3;
pointer-events: none;