summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_navbar.scss
blob: 28ab61ec185d0db5e02f32d6adaaa46876b9ef6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@charset "UTF-8";

#navbar{
	input {
		margin: 0px 5px 0px 2px;
	}
	.navbar-default {
		position: absolute;
		border: none;
		min-height: 45px;
		background: $primary-color;
		.navbar-nav {
			> li {
				> a {
					height: 45px;
					padding: 0 1.3em;
					i {
						line-height: 45px;
					}
				}
			}
		}
		.navbar-toggle {
			width: 43px;
			float: left;
			border-color: transparent;
			border-radius: 0;
			margin: 0;
			padding: 0 10px;
			line-height: 48px;
			height: 44px;
			z-index: 5;
			fill: #fff;
			.icon-bar {
				background: #fff;
				width: 21px;
			}
			.glyphicon-search {
				top: -1px;
			}
			.icon--white {
				color: #fff;
			}
			&:hover, &:active, &:focus {
				background: inherit;
			}
		}
		.navbar-brand {
			padding: 0 0.5em;
			height: 45px;
			line-height: 45px;
			float: none;
			font-size: 16px;
			.heading {
				margin-right: 3px;
				font-weight: 600;
				color: #fff;
			}
			.header-dropdown__icon {
				top: 1px;
			}
			.dropdown-toggle {
				color: #fff;
			}
			.description {
				display: inline-block;
				margin-right: 0.5em;
				color: #fff;
				&.info-popover {
					width: 19px;
					height: 19px;
					background: url("../images/info__icon.png");
					@include background-size(100% 100%);
					vertical-align: middle;
					top: -1px;
					position: relative;
					cursor: pointer;
				}
			}
		}
	}
	.sidebar-channel {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		span {
			white-space: nowrap;
			margin-left: 2px;
		}
	}
	.channel-create-btn {
		margin-right: 15px;
	}
	.more-channel-table {
		width: 100%;
		border: 1px solid #dbdbdc;
		td {
			padding: 7px;
		}
		button {
			width: 110px;
		}
	}
}

.badge-notify {
	background: red;
	position: absolute;
	left: 4px;
	top: 3px;
	z-index: 100;
}