salix/front/core/components/chip/style.scss

53 lines
1.0 KiB
SCSS
Raw Normal View History

2019-02-06 10:24:29 +00:00
@import "variables";
2018-09-04 09:49:00 +00:00
vn-chip {
2019-10-18 19:36:30 +00:00
border-radius: 16px;
background-color: $color-bg;
2018-09-14 07:10:30 +00:00
margin: 0 0.5em 0.5em 0;
2019-10-18 19:36:30 +00:00
color: $color-font;
font-size: 14px;
margin: .25em;
display: inline-flex;
align-items: center;
text-overflow: ellipsis;
white-space: nowrap;
height: 28px;
padding: 0 .7em;
overflow: hidden;
2018-09-14 07:10:30 +00:00
2019-10-18 19:36:30 +00:00
&.colored {
background-color: $color-main;
color: $color-font-dark;
2018-09-07 10:20:57 +00:00
}
2019-10-18 19:36:30 +00:00
& > div {
display: flex;
align-items: center;
max-width: 100%;
height: 100%;
2018-09-07 10:20:57 +00:00
2019-10-18 19:36:30 +00:00
& > vn-avatar {
margin-left: -0.7em;
margin-right: .4em;
}
2018-09-04 09:49:00 +00:00
}
2019-10-18 19:36:30 +00:00
& > vn-icon {
margin-left: .2em;
margin-right: -0.3em;
vertical-align: middle;
opacity: .6;
cursor: pointer;
transition: opacity 250ms ease-out;
2018-09-14 07:10:30 +00:00
2019-10-18 19:36:30 +00:00
&:hover,
&:focus {
opacity: 1;
}
2018-09-14 07:10:30 +00:00
}
2019-10-18 19:36:30 +00:00
}
vn-avatar {
display: inline-block;
height: 28px;
width: 28px;
border-radius: 50%;
2018-09-04 09:49:00 +00:00
}