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,
|
2016-12-06 04:09:03 +08:00
|
|
|
.center {
|
2016-05-21 00:29:55 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left,
|
2016-12-06 04:09:03 +08:00
|
|
|
.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;
|
2016-12-06 04:17:31 +08:00
|
|
|
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
|
|
|
|
2016-12-06 02:54:20 +08:00
|
|
|
.btnWithNotificationDot {
|
2016-10-12 01:36:28 +08:00
|
|
|
position: relative;
|
2016-12-06 02:54:20 +08:00
|
|
|
|
|
|
|
&: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
|
|
|
}
|
|
|
|
|
2016-12-06 02:58:40 +08:00
|
|
|
.btn {
|
2016-12-06 03:16:52 +08:00
|
|
|
margin: 0;
|
2016-12-06 02:58:40 +08:00
|
|
|
|
2016-10-05 03:23:43 +08:00
|
|
|
span {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2016-12-06 21:39:48 +08:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
span {
|
|
|
|
background-color: transparent !important;
|
|
|
|
color: $color-white !important;
|
|
|
|
opacity: .75;
|
|
|
|
}
|
|
|
|
}
|
2016-10-05 03:23:43 +08:00
|
|
|
}
|
|
|
|
|
2016-12-06 03:16:52 +08:00
|
|
|
.btnSettings {
|
2016-09-08 03:17:15 +08:00
|
|
|
transform: rotate(90deg);
|
2016-11-07 23:52:39 +08:00
|
|
|
}
|
2016-12-06 03:26:08 +08:00
|
|
|
|
|
|
|
.dropdownBreakout {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|