summaryrefslogtreecommitdiff
path: root/source/features/hide-tips.css
blob: 429b4eae4fff98ac2cca1c3f8787e37248c7c62d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Remove the "Styling with Markdown is supported" link when a PR comment is in edit mode */
a.tabnav-extra[href$='mastering-markdown/'] {
	display: none !important;
}

/* Remove annoying "helpful" banner on the issue tracker listing */
.repository-content .mb-4.js-notice {
	display: none !important;
}

/* Remove annoying "helpful" popover on the repo label page */
.labels-list .TutorialPopover {
	display: none !important;
}

/* Remove the useless "Continuous integration has not been set up" message on PRs */
.branch-action-item.marketplace-product-callout {
	display: none;
}

/* Remove "pro tip!" box on profile page (appears when name isn't set) */
.new-user-avatar-cta {
	display: none !important;
}

/* Remove random protip at the bottom of the page */
.protip {
	display: none !important;
}

/* Remove Marketplace marketing box on PRs */
.js-marketplace-callout-container {
	display: none !important;
}