Files
agent/src/components/popover/tab/mouse/mouse-tab.component.scss
Nejc Zdovc baaec669e0 Structural refactoring (#68)
* Moved html in scss to separate files
* Moved components to designated folders
* Moved logic from html to ts
2016-07-15 19:23:24 +02:00

47 lines
1.0 KiB
SCSS

:host {
display: flex;
.mouse-action {
ul {
border-right: 1px solid #ccc;
li {
a {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
&.active {
a:after {
content: '';
display: block;
position: absolute;
width: 0;
height: 0;
top: 0;
right: -4rem;
border-color: transparent transparent transparent #337ab7;
border-style: solid;
border-width: 2rem;
}
}
}
}
}
.help-text--mouse-speed {
margin-bottom: 2rem;
font-size: 0.9em;
color: #666;
p {
margin: 0;
}
}
.details {
.btn-placeholder {
visibility: hidden;
}
}
}