82 lines
1.1 KiB
SCSS
82 lines
1.1 KiB
SCSS
@import "../../stylesheets/variables/_all";
|
|
|
|
.navbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.left,
|
|
.right,
|
|
.center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.left,
|
|
.right {
|
|
flex: 0;
|
|
}
|
|
|
|
.center {
|
|
width:70%;
|
|
flex: 1;
|
|
}
|
|
|
|
.presentationTitle {
|
|
font-weight: 200;
|
|
color: $color-white;
|
|
font-size: $font-size-base;
|
|
margin: 0;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
> [class^="icon-bbb-"] {
|
|
font-size: 75%;
|
|
}
|
|
}
|
|
|
|
.btnWithNotificationDot {
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
width: 12px;
|
|
height: 12px;
|
|
bottom: 2px;
|
|
right: 3px;
|
|
background-color: $color-danger;
|
|
border: 2px solid;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
margin: 0;
|
|
|
|
span {
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
span {
|
|
background-color: transparent !important;
|
|
color: $color-white !important;
|
|
opacity: .75;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btnSettings {
|
|
}
|
|
|
|
.dropdownBreakout {
|
|
cursor: pointer;
|
|
}
|