OpenSlides/client/src/app/shared/components/head-bar/head-bar.component.scss

54 lines
985 B
SCSS
Raw Normal View History

2018-11-06 15:35:51 +01:00
.head-button {
position: fixed;
z-index: 10; // should always be in top of everything else
2018-11-06 15:35:51 +01:00
right: 25px;
bottom: 25px;
}
2018-11-06 15:35:51 +01:00
.sticky-toolbar {
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
2018-11-06 15:35:51 +01:00
position: sticky;
top: 0px;
z-index: 5;
2018-11-06 15:35:51 +01:00
}
2018-11-06 15:35:51 +01:00
.toolbar-left {
display: contents;
.toolbar-left-text {
2018-11-06 15:35:51 +01:00
margin-left: 10px;
width: 100%;
overflow: hidden;
::ng-deep .title-slot {
h2 {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
}
2018-11-05 17:40:32 +01:00
.toolbar-centered {
margin: auto;
vertical-align: baseline;
}
.toolbar-right {
2018-11-06 15:35:51 +01:00
display: contents;
}
.extra-controls-wrapper {
display: contents;
::ng-deep .extra-controls-slot {
display: flex;
}
2018-09-19 15:18:57 +02:00
}
2018-11-05 17:40:32 +01:00
mat-toolbar.multi-select {
background-color: #757575 !important;
2018-11-05 17:40:32 +01:00
}