blob: 2a7b816925f271bef930415102c77a6215512131 [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;
Dixsie Wolmers30f11f82020-11-10 16:07:56 -06006 display: inline-flex;
7 align-items: center;
8 justify-content: space-around;
9 svg {
10 margin-right: $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
Dixsie Wolmers30f11f82020-11-10 16:07:56 -060063// Icon only buttons
64.btn-icon-only svg {
65 margin-right: 0;
66}
67
68// Datepicker, clear search and Password toggle buttons
69.input-action-btn,
70.btn-datepicker {
SurenNewaredc618a82020-08-17 18:42:20 +053071 position: absolute;
72 right: 0;
Dixsie Wolmers30f11f82020-11-10 16:07:56 -060073 top: 0;
SurenNewaredc618a82020-08-17 18:42:20 +053074 z-index: $zindex-dropdown + 1;
Dixsie Wolmers30f11f82020-11-10 16:07:56 -060075}
76
77// Contain input buttons within input
78.btn-datepicker .dropdown-toggle,
79.input-action-btn {
80 padding: 7px;
81 margin: 1px;
Yoshie Muranaka996d2d52019-12-30 09:06:45 -080082}