bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/nav-bar/styles.scss

82 lines
1.1 KiB
SCSS
Raw Normal View History

2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2016-05-21 00:29:55 +08:00
.navbar {
display: flex;
2016-07-28 05:50:35 +08:00
flex-direction: row;
2016-05-21 00:29:55 +08:00
}
.left,
.right,
.center {
2016-05-21 00:29:55 +08:00
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.left,
.right {
2016-05-21 00:29:55 +08:00
flex: 0;
}
.center {
2016-06-24 22:48:09 +08:00
width:70%;
2016-07-28 05:50:35 +08:00
flex: 1;
2016-05-21 00:29:55 +08:00
}
2016-07-28 05:50:35 +08:00
.presentationTitle {
2016-05-21 00:29:55 +08:00
font-weight: 200;
color: $color-white;
font-size: $font-size-base;
2016-05-21 00:29:55 +08:00
margin: 0;
2016-07-28 05:50:35 +08:00
padding: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2016-12-06 03:26:08 +08:00
> [class^="icon-bbb-"] {
font-size: 75%;
}
2016-07-28 05:50:35 +08:00
}
2016-06-07 22:33:22 +08:00
.btnWithNotificationDot {
2016-10-12 01:36:28 +08:00
position: relative;
&:after {
content: '';
position: absolute;
border-radius: 50%;
width: 10px;
height: 10px;
bottom: 0;
right: 0;
background-color: $color-danger;
}
2016-10-12 01:36:28 +08:00
}
.btn {
margin: 0;
span {
border: none;
box-shadow: none;
}
&:hover,
&:focus {
span {
background-color: transparent !important;
color: $color-white !important;
opacity: .75;
}
}
}
.btnSettings {
transform: rotate(90deg);
}
2016-12-06 03:26:08 +08:00
.dropdownBreakout {
cursor: pointer;
}