blob: e927d244211a5c3630ff775319c31be1575136e0 [file] [log] [blame]
Yoshie Muranaka996d2d52019-12-30 09:06:45 -08001.btn {
Derick Montague3f6710a2020-03-04 00:59:47 -06002 padding-top: $spacer / 2;
3 padding-right: $spacer;
4 padding-bottom: $spacer / 2;
5 padding-left: $spacer;
6
7 // Buttons with SVGs and text expect
8 // text to be wrapped in a span element
9 svg + span {
10 margin-left: $spacer / 4;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080011 }
SurenNewaredc618a82020-08-17 18:42:20 +053012 &:disabled {
13 color: gray("600");
14 fill: currentColor;
15 box-shadow: none !important;
16 &:not(.btn-link) {
17 border-color: gray("400");
18 background-color: gray("400");
19 }
20 }
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080021}
22
23.btn-primary {
Derick Montague7f970a12020-03-02 17:56:09 -060024 fill: currentColor;
SurenNewaredc618a82020-08-17 18:42:20 +053025 &:focus,
26 &:not(:disabled):not(.disabled):active:focus {
27 border-color: $white;
28 box-shadow: inset 0 0 0 3px theme-color('primary'), inset 0 0 0 5px $white;
29 }
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080030}
31
32.btn-secondary {
Derick Montague7f970a12020-03-02 17:56:09 -060033 fill: currentColor;
SurenNewaredc618a82020-08-17 18:42:20 +053034 &:focus,
35 &:not(:disabled):not(.disabled):active:focus {
36 border-color: $white;
37 box-shadow: inset 0 0 0 3px theme-color('secondary'), inset 0 0 0 5px $white;
38 }
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080039}
40
SurenNewaredc618a82020-08-17 18:42:20 +053041// Global style for all button link
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080042.btn-link {
SurenNewaredc618a82020-08-17 18:42:20 +053043 font-weight: $headings-font-weight;
Yoshie Muranaka01da8182020-07-08 15:46:43 -070044 fill: theme-color("primary");
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080045 text-decoration: none !important;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080046 &:hover {
SurenNewaredc618a82020-08-17 18:42:20 +053047 background-color: gray("200");
48 color: theme-color("primary");
49 }
50 &:active {
51 background-color: gray("300");
52 }
53 &:focus {
54 box-shadow: inset 0 0 0 2px theme-color("primary");
55 color: theme-color("primary");
56 outline: none;
57 }
58 &:disabled {
59 box-shadow: $btn-focus-box-shadow;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080060 }
Derick Montague3f6710a2020-03-04 00:59:47 -060061}
62
SurenNewaredc618a82020-08-17 18:42:20 +053063// Datepicker and Password toggle buttons
64.input-action {
65 position: absolute;
66 right: 0;
67}
68.input-action .btn-link,
69.input-action-btn {
70 position: absolute;
71 right: 1px;
72 top: 1px;
73 z-index: $zindex-dropdown + 1;
74 padding: 0;
75 width: 36px;
76 height: 35.8px;
77 svg {
78 vertical-align: sub;
Derick Montague3f6710a2020-03-04 00:59:47 -060079 }
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080080}