summaryrefslogtreecommitdiffstats
path: root/packages/excalidraw/components/CheckboxItem.scss
blob: 6aaf0aab69573c7d311be5a7f027dd33069bbb97 (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
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
@import "../css/variables.module.scss";

.excalidraw {
  .Checkbox {
    margin: 4px 0.3em;
    display: flex;
    align-items: center;

    cursor: pointer;
    user-select: none;

    -webkit-tap-highlight-color: transparent;

    &:hover:not(.is-checked) .Checkbox-box:not(:focus) {
      box-shadow: 0 0 0 2px #{$oc-blue-4};
    }

    &:hover:not(.is-checked) .Checkbox-box:not(:focus) {
      svg {
        display: block;
        opacity: 0.3;
      }
    }

    &:active {
      .Checkbox-box {
        box-shadow: 0 0 2px 1px inset #{$oc-blue-7} !important;
      }
    }

    &:hover {
      .Checkbox-box {
        background-color: fade-out($oc-blue-1, 0.8);
      }
    }

    &.is-checked {
      .Checkbox-box {
        background-color: #{$oc-blue-1};
        svg {
          display: block;
        }
      }
      &:hover .Checkbox-box {
        background-color: #{$oc-blue-2};
      }
    }

    .Checkbox-box {
      width: 22px;
      height: 22px;
      padding: 0;
      flex: 0 0 auto;

      margin: 0 1em;

      display: flex;
      align-items: center;
      justify-content: center;

      box-shadow: 0 0 0 2px #{$oc-blue-7};
      background-color: transparent;
      border-radius: 4px;

      color: #{$oc-blue-7};

      border: 0;

      &:focus {
        box-shadow: 0 0 0 3px #{$oc-blue-7};
      }

      svg {
        display: none;
        width: 16px;
        height: 16px;
        stroke-width: 3px;
      }
    }

    .Checkbox-label {
      display: flex;
      align-items: center;
    }

    .excalidraw-tooltip-icon {
      width: 1em;
      height: 1em;
    }
  }
}