summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/js/components/Button/Button.scss
blob: c6001e19da760f68a27558a5a3a9333c280946de (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
.stp_button {
  cursor: pointer;
  display: inline-block;
  margin: 12px 0;

  &:hover {
    text-decoration: none;
  }

  &.stp_button_text {
    color: #0060DF;
    font-size: 0.95rem;
    line-height: 1.2rem;
    font-style: normal;
    font-weight: 600;

    &:focus {
      text-decoration: underline;
    }

    &:hover {
      color: #0250BB;
      text-decoration: none;
    }

    &:active {
      color: #054096;
    }

    @include theme_dark {
      color: #00DDFF;
    }
  }

  &.stp_button_primary {
    align-items: center;
    background: #0060DF;
    border-radius: 4px;
    color: #FBFBFE;
    font-size: 0.85rem;
    line-height: 1rem;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
    padding: 6px 12px;

    &:focus {
      text-decoration: none;
      background: #0060DF;
      outline: 2px solid #0060df;
      outline-offset: 2px;
    }

    &:hover {
      background: #0250BB;
    }

    &:active {
      background: #054096;
    }

    @include theme_dark {
      background: #00DDFF;
      color: #15141A;

      &:hover {
        background: #80ebfe;
      }

      &:focus {
        outline: 2px solid #00DDFF;
      }
    }
  }

  &.stp_button_secondary {
    align-items: center;
    background: #F0F0F4;
    border-radius: 4px;
    color: #15141A;
    font-size: 0.85rem;
    line-height: 1rem;
    font-style: normal;
    font-weight: 600;
    padding: 6px 12px;

    &:focus {
      text-decoration: none;
      background: #F0F0F4;
      outline: 2px solid #0060df;
      outline-offset: 2px;
    }

    &:hover {
      background: #E0E0E6;
    }

    &:active {
      background: #CFCFD8;
    }

    @include theme_dark {
      background: #2B2A33;
      color: #FBFBFE;

      &:focus {
        outline: 2px solid #00DDFF;
      }

      &:hover {
        background: #53535d;
      }
    }
  }
}

.stp_button_wide {
  .stp_button {
    display: block;
    margin: 12px 0;
    text-align: center;
    padding: 8px 12px;

    &.stp_button_primary {
      font-size: 1.1rem;
      line-height: 1.35rem;
    }

    &.stp_button_secondary {
      font-size: 0.85rem;
      line-height: 1rem;
    }
  }
}

.stp_button_wide {
  .stp_button {
    display: block;
    margin: 12px 0;
    text-align: center;
  }
}