BREAKING CHANGE: Pre-design-tokens theming is no longer supported. Co-authored-by: Diana Olarte <diana.olarte@edunext.co>
27 lines
581 B
SCSS
27 lines
581 B
SCSS
.content-tools {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
.trigger {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: relative;
|
|
z-index: 2;
|
|
background-color: #f1f1f1 !important;
|
|
border: solid 1px #ddd !important;
|
|
border-bottom: none;
|
|
border-top-left-radius: .3rem;
|
|
border-top-right-radius: .3rem;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
padding-left: .75rem;
|
|
white-space: nowrap;
|
|
&:before {
|
|
border-radius: .5rem;
|
|
}
|
|
}
|
|
}
|