@use "@styles/abstracts/functions" as fun; @use "@styles/abstracts/variables" as var; @use "@styles/abstracts/placeholders"; .wrapper { --toolbar-size: #{fun.convert-px(75)}; display: flex; flex-flow: row wrap; align-items: center; gap: var(--spacing-sm); width: 100%; height: var(--toolbar-size); position: relative; background: var(--color-bg); border-top: fun.convert-px(4) solid; border-image: radial-gradient( ellipse at top, var(--color-primary-lighter) 20%, var(--color-primary) 100% ) 1; box-shadow: 0 fun.convert-px(-2) fun.convert-px(3) fun.convert-px(-1) var(--color-shadow-dark); :global { animation: slide-in-from-bottom 0.8s ease-in-out 0s 1; @media screen and (min-width: #{var.get-breakpoint("sm")}) { animation: slide-in-from-top 0.8s ease-in-out 0s 1; } } @media screen and (max-width: #{var.get-breakpoint("sm")}) { justify-content: space-around; position: fixed; bottom: 0; left: 0; z-index: 5; .modal { width: 100%; position: fixed; top: unset; left: 0; bottom: calc(var(--toolbar-size) - #{fun.convert-px(4)}); max-height: calc(100vh - var(--toolbar-size)); } } @media screen and (max-height: #{var.get-breakpoint("2xs")}) { --toolbar-size: #{fun.convert-px(70)}; } @media screen and (min-width: #{var.get-breakpoint("sm")}) { .modal { &--search, &--settings { min-width: fun.convert-px(380); } } } } ogtreecommitdiffstats
path: root/public/prism/prism-sass.js
blob: ae562b9cc2b042dc77f7602c8196a1e8e9470aa5 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
(function (Prism) {
  Prism.languages.sass = Prism.languages.extend('css', {
    // Sass comments don't need to be closed, only indented
    comment: {
      pattern: /^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t].+)*/m,
      lookbehind: true,
      greedy: true,
    },
  });

  Prism.languages.insertBefore('sass', 'atrule', {
    // We want to consume the whole line
    'atrule-line': {
      // Includes support for = and + shortcuts
      pattern: /^(?:[ \t]*)[@+=].+/m,
      greedy: true,
      inside: {
        atrule: /(?:@[\w-]+|[+=])/,
      },
    },
  });
  delete Prism.languages.sass.atrule;

  var variable = /\$[-\w]+|#\{\$[-\w]+\}/;
  var operator = [
    /[+*\/%]|[=!]=|<=?|>=?|\b(?:and|not|or)\b/,
    {
      pattern: /(\s)-(?=\s)/,
      lookbehind: true,
    },
  ];

  Prism.languages.insertBefore('sass', 'property', {
    // We want to consume the whole line
    'variable-line': {
      pattern: /^[ \t]*\$.+/m,
      greedy: true,
      inside: {
        punctuation: /:/,
        variable: variable,
        operator: operator,
      },
    },
    // We want to consume the whole line
    'property-line': {
      pattern: /^[ \t]*(?:[^:\s]+ *:.*|:[^:\s].*)/m,
      greedy: true,
      inside: {
        property: [
          /[^:\s]+(?=\s*:)/,
          {
            pattern: /(:)[^:\s]+/,
            lookbehind: true,
          },
        ],
        punctuation: /:/,
        variable: variable,
        operator: operator,
        important: Prism.languages.sass.important,
      },
    },
  });
  delete Prism.languages.sass.property;
  delete Prism.languages.sass.important;

  // Now that whole lines for other patterns are consumed,
  // what's left should be selectors
  Prism.languages.insertBefore('sass', 'punctuation', {
    selector: {
      pattern:
        /^([ \t]*)\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*)*/m,
      lookbehind: true,
      greedy: true,
    },
  });
})(Prism);