update mode link colors

This commit is contained in:
Adam Bradley
2015-12-05 11:25:48 -06:00
parent 5ae94e6559
commit a22e2cfdd7
3 changed files with 44 additions and 23 deletions

View File

@@ -3,6 +3,11 @@
// iOS App
// --------------------------------------------------
a {
color: $link-ios-color;
}
hr {
border-width: 0;
height: 1px;
@@ -12,3 +17,21 @@ hr {
&.hairlines hr {
height: 0.55px;
}
@each $color-name, $color-value in $colors-ios {
h1, h2, h3, h4, h5, h6,
p,
span,
a:not([button]),
small,
b,
i,
strong,
em,
sub,
sup {
&[#{$color-name}] {
color: $color-value !important;
}
}
}

View File

@@ -4,9 +4,30 @@
// --------------------------------------------------
a {
color: $link-md-color;
}
hr {
border-width: 0;
height: 1px;
background-color: rgba(0, 0, 0, 0.08);
}
@each $color-name, $color-value in $colors-md {
h1, h2, h3, h4, h5, h6,
p,
span,
a:not([button]),
small,
b,
i,
strong,
em,
sub,
sup {
&[#{$color-name}] {
color: $color-value !important;
}
}
}

View File

@@ -10,10 +10,6 @@ ion-content {
background-color: $background-ios-color;
}
a {
color: $link-ios-color;
}
.outer-content {
background: $outer-content-ios-background-color;
}
@@ -22,22 +18,3 @@ ion-nav.has-views,
ion-tab.has-views {
background: #000;
}
@each $color-name, $color-value in $colors-ios {
h1, h2, h3, h4, h5, h6,
p,
span,
a:not([button]),
small,
b,
i,
u,
strong,
em,
sub,
sup {
&[#{$color-name}] {
color: $color-value !important;
}
}
}