Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

release-notes.scss 1.2 KB

You have to be logged in to leave a comment. Sign In
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  1. ul.release-notes-list li.release-notes-list-item {
  2. font-size: 15px !important;
  3. &::marker {
  4. // `• `
  5. content: "\2022\00a0\00a0\00a0\00a0";
  6. font-size: 1.6em;
  7. color: var(--color-auto-gray-4);
  8. }
  9. &.list-style-none::marker {
  10. content: "";
  11. }
  12. }
  13. .release-notes-section-heading {
  14. font-size: 15px !important;
  15. scroll-margin-top: 280px !important;
  16. @include breakpoint(sm) {
  17. scroll-margin-top: 200px !important;
  18. }
  19. }
  20. details[open].release-notes-version-picker
  21. summary
  22. .octicon.octicon-chevron-down {
  23. transform: rotate(180deg);
  24. }
  25. .js-release-notes-patch-link {
  26. &.selected {
  27. background-color: var(--color-auto-blue-1);
  28. }
  29. }
  30. $colors-list: (
  31. features: var(--color-auto-green-5),
  32. bugs: var(--color-auto-yellow-5),
  33. known_issues: var(--color-auto-blue-5),
  34. security_fixes: var(--color-auto-pink-5),
  35. changes: var(--color-auto-green-5),
  36. deprecations: var(--color-auto-purple-5),
  37. backups: var(--color-auto-orange-5),
  38. );
  39. @each $key, $val in $colors-list {
  40. .release-notes-section-#{$key} {
  41. .release-notes-section-label {
  42. background-color: #{$val};
  43. }
  44. .release-notes-section-heading {
  45. color: #{$val};
  46. }
  47. }
  48. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...