|
@@ -0,0 +1,89 @@
|
|
1
|
+.navbar-version {
|
|
2
|
+ font-size: 10px;
|
|
3
|
+ color: #ccc;
|
|
4
|
+}
|
|
5
|
+
|
|
6
|
+.jh-navbar {
|
|
7
|
+ background-color: #353d47;
|
|
8
|
+ padding: 0.2em 1em;
|
|
9
|
+ .profile-image {
|
|
10
|
+ margin: -10px 0px;
|
|
11
|
+ height: 40px;
|
|
12
|
+ width: 40px;
|
|
13
|
+ border-radius: 50%;
|
|
14
|
+ }
|
|
15
|
+ .dropdown-item.active,
|
|
16
|
+ .dropdown-item.active:focus,
|
|
17
|
+ .dropdown-item.active:hover {
|
|
18
|
+ background-color: #353d47;
|
|
19
|
+ }
|
|
20
|
+ .dropdown-toggle::after {
|
|
21
|
+ margin-left: 0.15em;
|
|
22
|
+ }
|
|
23
|
+ ul.navbar-nav {
|
|
24
|
+ padding: 0.5em;
|
|
25
|
+ .nav-item {
|
|
26
|
+ margin-left: 1.5rem;
|
|
27
|
+ }
|
|
28
|
+ }
|
|
29
|
+ a.nav-link {
|
|
30
|
+ font-weight: 400;
|
|
31
|
+ }
|
|
32
|
+ .jh-navbar-toggler {
|
|
33
|
+ color: #ccc;
|
|
34
|
+ font-size: 1.5em;
|
|
35
|
+ padding: 10px;
|
|
36
|
+ &:hover {
|
|
37
|
+ color: #fff;
|
|
38
|
+ }
|
|
39
|
+ }
|
|
40
|
+}
|
|
41
|
+
|
|
42
|
+@media screen and (min-width: 768px) {
|
|
43
|
+ .jh-navbar-toggler {
|
|
44
|
+ display: none;
|
|
45
|
+ }
|
|
46
|
+}
|
|
47
|
+
|
|
48
|
+@media screen and (max-width: 992px) {
|
|
49
|
+ .jh-logo-container {
|
|
50
|
+ width: 100%;
|
|
51
|
+ }
|
|
52
|
+}
|
|
53
|
+
|
|
54
|
+.navbar-title {
|
|
55
|
+ display: inline-block;
|
|
56
|
+ vertical-align: middle;
|
|
57
|
+}
|
|
58
|
+
|
|
59
|
+/* ==========================================================================
|
|
60
|
+Logo styles
|
|
61
|
+========================================================================== */
|
|
62
|
+.navbar-brand {
|
|
63
|
+ &.logo {
|
|
64
|
+ padding: 5px 15px;
|
|
65
|
+ .logo-img {
|
|
66
|
+ height: 45px;
|
|
67
|
+ width: 70px;
|
|
68
|
+ display: inline-block;
|
|
69
|
+ vertical-align: middle;
|
|
70
|
+ background: url('../../../content/images/logo-jhipster.png') no-repeat center center;
|
|
71
|
+ background-size: contain;
|
|
72
|
+ }
|
|
73
|
+ }
|
|
74
|
+}
|
|
75
|
+
|
|
76
|
+.search {
|
|
77
|
+ width: 10px;
|
|
78
|
+}
|
|
79
|
+
|
|
80
|
+input[type='text'] {
|
|
81
|
+ padding: 5px 15px;
|
|
82
|
+ outline: 0px;
|
|
83
|
+}
|
|
84
|
+
|
|
85
|
+#search {
|
|
86
|
+ font-size: 17px;
|
|
87
|
+ margin-left: -4px;
|
|
88
|
+ padding: 2px 5px;
|
|
89
|
+}
|