FIX: email summary expansion button should use theme colors

This commit is contained in:
Kris 2018-08-06 11:44:37 -04:00
parent c301111461
commit 97af6e070f

View File

@ -61,16 +61,16 @@ details .lazyYT-container {
box-sizing: border-box;
margin: 0;
padding: 0;
color: #aaa;
background: #f1f1f1;
border: 1px solid #ddd;
width: 21px;
line-height: 12px;
color: $primary-medium;
background: $primary-low;
border: 1px solid $primary-low-mid;
width: 1.5em;
line-height: 1;
}
summary:hover {
color: #222;
background: #d8d8d8;
border-color: #cdcdcd;
color: $primary;
background: $primary-low-mid;
border-color: currentColor;
}
}