Keymap clone highlight color (#112)

Adding global styles.

Closes #110
This commit is contained in:
Nejc Zdovc
2016-09-21 19:57:04 +02:00
committed by József Farkas
parent caf7b14122
commit b4a7dbfb20
6 changed files with 16 additions and 5 deletions

View File

@@ -1,3 +1,5 @@
@import '../../../main-app/global-styles';
.keymap {
&__is-default {
@@ -28,7 +30,7 @@
&:hover {
cursor: pointer;
color: #900;
color: $icon-hover;
}
}
}

View File

@@ -1,3 +1,5 @@
@import '../../../main-app/global-styles';
.action--editor {
padding-top: 0;
padding-bottom: 0;
@@ -38,7 +40,7 @@
height: 0;
top: 0;
right: -4rem;
border-color: transparent transparent transparent #337ab7;
border-color: transparent transparent transparent $icon-hover;
border-style: solid;
border-width: 2rem;
}

View File

@@ -1,3 +1,5 @@
@import '../../main-app/global-styles';
:host {
display: flex;
flex-direction: column;
@@ -111,7 +113,7 @@ h1 {
&--link:active,
&--link:hover {
text-decoration: none;
color: #337ab7;
color: $icon-hover;
}
}

View File

@@ -1,3 +1,5 @@
@import '../../../../main-app/global-styles';
:host {
display: flex;
@@ -35,7 +37,7 @@
height: 0;
top: 0;
right: -4rem;
border-color: transparent transparent transparent #337ab7;
border-color: transparent transparent transparent $icon-hover;
border-style: solid;
border-width: 2rem;
}

View File

@@ -1,3 +1,5 @@
@import '../../../../main-app/global-styles';
:host {
display: flex;
align-items: center;
@@ -7,7 +9,7 @@
&--edit {
&:hover {
color: #337ab7;
color: $icon-hover;
cursor: pointer;
}
}

View File

@@ -0,0 +1 @@
$icon-hover: #337ab7;