tweak close icon

This commit is contained in:
Matthias Kretschmann 2017-05-12 18:04:42 +02:00
parent a9624b84ef
commit da31f32e1c
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
1 changed files with 14 additions and 3 deletions

View File

@ -103,6 +103,7 @@
display: none;
}
/* The close icon */
.tabs_nav .tabs_list .tab_icon {
z-index: 2;
right: auto;
@ -110,19 +111,29 @@
top: 11px;
color: var(--tab-text-color);
border-radius: 3px;
padding: 4px;
background-color: transparent;
filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .15));
}
.tabs_nav .tabs_list .tab_icon:hover {
color: var(--tab-text-color);
padding: 4px;
background-color: #676767;
background-color: rgba(0, 0, 0, .12);
filter: none;
}
.tabs_nav .tabs_list .tab_active .tab_icon:hover {
background-color: rgba(0, 0, 0, .15);
}
.tabs_nav .tabs_list .tab_icon:active {
filter: none;
transition: none;
background-color: #5e5e5e;
background-color: rgba(0, 0, 0, .2);
}
.tabs_nav .tabs_list .tab_active .tab_icon:active {
background-color: rgba(0, 0, 0, .22);
}
.terms_terms {