Skip to content

Commit f4938e1

Browse files
committed
Merge branch 'TMS-1164' into stage
2 parents e544dc5 + 82b6355 commit f4938e1

File tree

5 files changed

+43
-17
lines changed

5 files changed

+43
-17
lines changed

assets/styles/helpers/_button.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,10 @@ $button-transition-speed: $speed !default;
106106
&,
107107
&:active,
108108
&.is-active {
109-
background-color: $button-background-primary;
110-
border-color: $button-border-primary;
111-
color: $button-text-primary;
109+
text-decoration: underline;
110+
// background-color: $button-background-primary;
111+
// border-color: $button-border-primary;
112+
// color: $button-text-primary;
112113

113114
.icon {
114115
fill: currentColor !important;

assets/styles/themes/_theme-haive-overrides.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,13 @@
245245
}
246246

247247
.button.is-primary {
248-
color: $black !important;
249-
border-color: $black !important;
248+
&,
249+
&:hover,
250+
&:focus,
251+
&:active {
252+
color: $black !important;
253+
border-color: $black !important;
254+
}
250255
}
251256
}
252257

assets/styles/themes/_theme-paahde-overrides.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,13 @@
248248
}
249249

250250
.button.is-primary {
251-
color: $black !important;
252-
border-color: $black !important;
251+
&,
252+
&:hover,
253+
&:focus,
254+
&:active {
255+
color: $black !important;
256+
border-color: $black !important;
257+
}
253258
}
254259
}
255260

assets/styles/ui-components/_pill.scss

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,25 @@ $pill-hover-shadow-color: rgba(0, 0, 0, .15) !default;
7373
}
7474

7575
&.is-primary {
76-
color: $primary-invert;
77-
background-color: $primary;
78-
border-color: $primary;
76+
&,
77+
&:hover,
78+
&:focus,
79+
&:active {
80+
color: $primary-invert;
81+
background-color: $primary;
82+
border-color: $primary;
83+
}
7984

8085
&-invert,
8186
&.is-inverted {
82-
color: $primary;
83-
background-color: $primary-invert;
84-
border-color: $primary;
87+
&,
88+
&:hover,
89+
&:focus,
90+
&:active {
91+
color: $primary;
92+
background-color: $primary-invert;
93+
border-color: $primary;
94+
}
8595
}
8696
}
8797

@@ -99,8 +109,13 @@ $pill-hover-shadow-color: rgba(0, 0, 0, .15) !default;
99109
}
100110

101111
&.is-outlined {
102-
color: $pill-outlined-color;
103-
background-color: $pill-outlined-background-color;
104-
border-color: $pill-outlined-border-color;
112+
&,
113+
&:hover,
114+
&:focus,
115+
&:active {
116+
color: $pill-outlined-color;
117+
background-color: $pill-outlined-background-color;
118+
border-color: $pill-outlined-border-color;
119+
}
105120
}
106121
}

assets/styles/ui-components/header/_primary-nav.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ $navbar-item-navbar-active-bg-color: rgba($navbar-item-navbar-link-color, .05) !
108108
}
109109

110110
.icon {
111-
fill: $navbar-item-dropdown-accent-color !important;
111+
fill: $navbar-item-dropdown-accent-color;
112112
}
113113
}
114114

0 commit comments

Comments
 (0)