summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/icon-button.css
blob: 6fe95fccf581dfb61a98833fbf37418452171325 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[data-component="icon-button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-decoration: none;
  user-select: none;
  aspect-ratio: 1;

  &:disabled {
    background-color: var(--icon-strong-disabled);
    color: var(--icon-invert-base);
    cursor: not-allowed;
  }

  &:focus {
    outline: none;
  }

  &[data-variant="primary"] {
    background-color: var(--icon-strong-base);

    [data-slot="icon"] {
      /* color: var(--icon-weak-base); */
      color: var(--icon-invert-base);

      /* &:hover:not(:disabled) { */
      /*   color: var(--icon-weak-hover); */
      /* } */
      /* &:active:not(:disabled) { */
      /*   color: var(--icon-string-active); */
      /* } */
    }

    &:hover:not(:disabled) {
      background-color: var(--icon-strong-hover);
    }
    &:active:not(:disabled) {
      background-color: var(--icon-string-active);
    }
    &:focus:not(:disabled) {
      background-color: var(--icon-strong-focus);
    }
    &:disabled {
      background-color: var(--icon-strong-disabled);

      [data-slot="icon"] {
        color: var(--icon-invert-base);
      }
    }
  }

  &[data-variant="secondary"] {
    background-color: var(--button-secondary-base);
    color: var(--text-strong);

    &:hover:not(:disabled) {
      background-color: var(--surface-hover);
    }
    &:active:not(:disabled) {
      background-color: var(--surface-active);
    }
    &:focus:not(:disabled) {
      background-color: var(--surface-focus);
    }
  }

  &[data-variant="ghost"] {
    background-color: transparent;

    [data-slot="icon"] {
      color: var(--icon-weak-base);

      &:hover:not(:disabled) {
        color: var(--icon-weak-hover);
      }
      &:active:not(:disabled) {
        color: var(--icon-string-active);
      }
    }

    /* color: var(--text-strong); */
    /**/
    /* &:hover:not(:disabled) { */
    /*   background-color: var(--surface-hover); */
    /* } */
    /* &:active:not(:disabled) { */
    /*   background-color: var(--surface-active); */
    /* } */
    /* &:focus:not(:disabled) { */
    /*   background-color: var(--surface-focus); */
    /* } */
  }

  &[data-size="normal"] {
    width: 24px;
    height: 24px;

    font-size: var(--font-size-small);
    line-height: var(--line-height-large);
    gap: calc(var(--spacing) * 0.5);
  }

  &[data-size="large"] {
    height: 32px;
    padding: 0 8px 0 6px;
    gap: 8px;

    /* text-12-medium */
    font-family: var(--font-family-sans);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-large); /* 166.667% */
    letter-spacing: var(--letter-spacing-normal);
  }
}