|
11 | 11 | }
|
12 | 12 |
|
13 | 13 | #wrapper.toggled {
|
14 |
| - padding-left: 240px; |
| 14 | + padding-left: 265px; |
15 | 15 | overflow: hidden;
|
16 | 16 | }
|
17 | 17 |
|
18 | 18 | #sidebar-wrapper {
|
| 19 | + background: #30426A; |
19 | 20 | z-index: 1000;
|
20 | 21 | position: fixed;
|
21 |
| - left: 240px; |
| 22 | + left: 265px; |
22 | 23 | width: 0;
|
23 | 24 | height: 100%;
|
24 |
| - margin-left: -240px; |
| 25 | + margin-left: -265px; |
25 | 26 | overflow-y: auto;
|
26 |
| - background: #30426A; |
27 | 27 | -webkit-transition: all 0.5s ease;
|
28 | 28 | -moz-transition: all 0.5s ease;
|
29 | 29 | -o-transition: all 0.5s ease;
|
30 | 30 | transition: all 0.5s ease;
|
31 | 31 | }
|
32 | 32 |
|
33 | 33 | #wrapper.toggled #sidebar-wrapper {
|
34 |
| - width: 240px; |
| 34 | + width: 265px; |
35 | 35 | }
|
36 | 36 |
|
| 37 | + |
| 38 | + |
37 | 39 | #page-content-wrapper {
|
38 | 40 | position: absolute;
|
39 | 41 | padding: 15px;
|
|
54 | 56 | width: auto;
|
55 | 57 | }
|
56 | 58 |
|
57 |
| -/* Sidebar Styles */ |
| 59 | +.breadcrumb { |
| 60 | + background-color: transparent !important; |
| 61 | +} |
58 | 62 |
|
59 | 63 | .sidebar-nav {
|
60 | 64 | position: absolute;
|
61 |
| - top: 0; |
62 |
| - width: 70px; |
| 65 | + top: 70px; |
| 66 | + width: 265px; |
63 | 67 | margin: 0;
|
64 | 68 | padding: 0;
|
65 |
| - background-color: #273759 !important; |
66 | 69 | list-style: none;
|
67 | 70 | }
|
68 | 71 |
|
| 72 | +.sidebar-nav .sidebar-group.active .sidebar-group-link .title, |
| 73 | +.sidebar-nav .sidebar-group.active .sidebar-group-link .icon { |
| 74 | + font-weight: 600; |
| 75 | + color: #2BBF98; |
| 76 | +} |
| 77 | + |
| 78 | +.sidebar-nav .sidebar-addon .sidebar-addon-link { |
| 79 | + font-weight: 400; |
| 80 | + font-family: 'Poppins'; |
| 81 | + font-size: 16px; |
| 82 | + padding-right:20px; |
| 83 | + justify-content: space-between; |
| 84 | +} |
| 85 | + |
| 86 | +.sidebar-nav .sidebar-addon.active .sidebar-addon-link { |
| 87 | + color: #fff!important; |
| 88 | + font-weight: 600; |
| 89 | +} |
| 90 | + |
| 91 | +.sidebar-nav .sidebar-sublist { |
| 92 | + margin-left: 45px; |
| 93 | +} |
| 94 | + |
| 95 | +.sidebar-nav .sidebar-sublist ul { |
| 96 | + padding:0; |
| 97 | +} |
| 98 | + |
| 99 | +#wrapper.toggled-2 .title, |
| 100 | +#wrapper.toggled-2 .navbar-form, |
| 101 | +#wrapper.toggled-2 .group-sublist{ |
| 102 | + display: none; |
| 103 | +} |
| 104 | + |
| 105 | +.sidebar-nav .sidebar-addon a { |
| 106 | + display: flex; |
| 107 | + align-items: center; |
| 108 | +} |
| 109 | + |
| 110 | +.sidebar-nav .sidebar-addon i { |
| 111 | + font-size: 8px; |
| 112 | + margin-right: 10px; |
| 113 | +} |
| 114 | + |
| 115 | +.sidebar-nav .sidebar-sublist .sub-item.active { |
| 116 | + margin-left: -74px; |
| 117 | + padding-left: 74px; |
| 118 | + background-color: #2B3C61 !important; |
| 119 | +} |
| 120 | + |
| 121 | +.sidebar-nav .sidebar-sublist .sub-item.active a{ |
| 122 | + color: #BFD3E9 !important; |
| 123 | +} |
| 124 | + |
69 | 125 | .sidebar-nav .fa-stack {
|
70 | 126 | font-size: 22px;
|
71 | 127 | color: #BFD3E9;
|
72 | 128 | line-height: 39px;
|
73 | 129 | }
|
74 | 130 |
|
75 | 131 | .sidebar-nav .sidebar-items {
|
76 |
| - position: absolute; |
77 |
| - width: 170px; |
78 | 132 | top: 0;
|
79 |
| - margin-left: 67px; |
80 | 133 | background-color: transparent !important;
|
81 | 134 | padding-left: 0;
|
82 | 135 | }
|
83 | 136 |
|
84 |
| -.sidebar-nav .sidebar-items li.active { |
85 |
| - background-color: #273759 !important; |
| 137 | +.sidebar-nav .sidebar-group .sidebar-group-link { |
| 138 | + text-align: left; |
| 139 | + float: left; |
| 140 | + font-size: 18px; |
| 141 | + font-weight: 400; |
| 142 | + font-family: 'Poppins'; |
| 143 | + width: 265px; |
| 144 | + justify-content: space-between; |
| 145 | + display: flex; |
| 146 | + padding-right: 26px; |
| 147 | + align-items: center; |
86 | 148 | }
|
87 | 149 |
|
88 |
| -.sidebar-nav .sidebar-icon { |
89 |
| - text-align: center; |
90 |
| - float: left; |
91 |
| - font-size: 22px; |
92 |
| - width: 70px; |
| 150 | +.sidebar-nav .sidebar-group .sidebar-group-link .chevron { |
| 151 | + font-size: 13px; |
93 | 152 | }
|
94 | 153 |
|
95 |
| -.sidebar-nav .sidebar-title { |
96 |
| - padding-left: 20px; |
| 154 | +.sidebar-nav .sidebar-group .sidebar-group-link .title, |
| 155 | +.sidebar-nav .sidebar-group .sidebar-group-link .icon { |
97 | 156 | font-size: 18px;
|
| 157 | + color: #BFD3E9; |
98 | 158 | font-weight: 400;
|
99 | 159 | }
|
100 | 160 |
|
| 161 | +.sidebar-nav .sidebar-group .sidebar-group-link .icon { |
| 162 | + width: 40px; |
| 163 | + height: 40px; |
| 164 | + display: inline-block; |
| 165 | + text-align: center; |
| 166 | +} |
| 167 | + |
| 168 | +.sidebar-nav .sidebar-group .group-sublist { |
| 169 | + margin-left: 29px; |
| 170 | +} |
| 171 | + |
101 | 172 | .sidebar-nav .sidebar-title.active {
|
102 | 173 | color: #BFD3E9 !important;
|
103 | 174 | }
|
104 | 175 |
|
105 | 176 | .sidebar-nav li {
|
106 | 177 | line-height: 40px;
|
107 | 178 | height: auto;
|
108 |
| - display: flex; |
109 | 179 | }
|
110 | 180 |
|
111 |
| -.sidebar-nav .sidebar-main.active { |
112 |
| - background-color: #30426A !important; |
113 |
| - border-left: 3px solid #4eb6a2 !important; |
114 |
| - padding-right: 3px; |
115 |
| -} |
| 181 | +/*.sidebar-nav .sidebar-main.active {*/ |
| 182 | +/* background: initial !important;*/ |
| 183 | +/* border-left: 3px solid #4eb6a2 !important;*/ |
| 184 | +/* padding-right: 3px;*/ |
| 185 | +/*}*/ |
116 | 186 |
|
117 | 187 | .sidebar-nav li a {
|
118 | 188 | display: block;
|
| 189 | + color: #7285A5 !important; |
119 | 190 | cursor: pointer;
|
120 | 191 | text-decoration: none;
|
121 |
| - color: #788BAA !important; |
122 |
| - background-color: transparent !important; |
| 192 | + padding-left: 15px; |
123 | 193 | }
|
124 | 194 |
|
125 | 195 | .sidebar-nav li a:active,
|
|
147 | 217 | }
|
148 | 218 |
|
149 | 219 | @media (min-width: 768px) {
|
150 |
| - .top-bar { |
151 |
| - width: calc(100% - 240px) !important; |
152 |
| - } |
153 |
| - |
154 | 220 | .web-sidebar-btn {
|
155 | 221 | display: inline-block !important;
|
156 | 222 | }
|
|
160 | 226 | }
|
161 | 227 |
|
162 | 228 | #wrapper {
|
163 |
| - padding-left: 240px; |
| 229 | + padding-left: 265px; |
164 | 230 | }
|
165 | 231 |
|
166 | 232 | .fixed-brand {
|
167 |
| - width: 240px; |
| 233 | + width: 265px; |
168 | 234 | }
|
169 | 235 |
|
170 | 236 | #wrapper.toggled {
|
171 | 237 | padding-left: 0;
|
172 | 238 | }
|
173 | 239 |
|
174 | 240 | #sidebar-wrapper {
|
175 |
| - width: 240px; |
| 241 | + width: 265px; |
176 | 242 | }
|
177 | 243 |
|
178 | 244 | #wrapper.toggled #sidebar-wrapper {
|
179 |
| - width: 240px; |
| 245 | + width: 265px; |
180 | 246 | }
|
181 | 247 |
|
182 |
| - #wrapper.toggled-2 #sidebar-wrapper { |
| 248 | + #wrapper .logo-bar-table { |
| 249 | + width: 265px; |
| 250 | + } |
| 251 | + |
| 252 | + #wrapper.toggled-2 #sidebar-wrapper, |
| 253 | + #wrapper.toggled-2 .logo-bar{ |
183 | 254 | width: 70px;
|
184 | 255 | }
|
185 | 256 |
|
186 |
| - #wrapper.toggled-2 #sidebar-wrapper:hover { |
187 |
| - width: 240px; |
| 257 | + .logo-bar { |
| 258 | + background: #30426A; |
| 259 | + z-index: 1000; |
| 260 | + position: fixed; |
| 261 | + left: 265px; |
| 262 | + width: 265px; |
| 263 | + height: 100%; |
| 264 | + margin-left: -265px; |
| 265 | + overflow-y: hidden; |
| 266 | + -webkit-transition: all 0.5s ease; |
| 267 | + -moz-transition: all 0.5s ease; |
| 268 | + -o-transition: all 0.5s ease; |
| 269 | + transition: all 0.5s ease; |
188 | 270 | }
|
189 | 271 |
|
190 | 272 |
|
| 273 | + |
191 | 274 | #page-content-wrapper {
|
192 | 275 | padding: 20px;
|
193 | 276 | position: relative;
|
|
200 | 283 | #wrapper.toggled #page-content-wrapper {
|
201 | 284 | position: relative;
|
202 | 285 | margin-right: 0;
|
203 |
| - padding-left: 240px; |
| 286 | + padding-left: 265px; |
204 | 287 | }
|
205 | 288 |
|
206 | 289 | #wrapper.toggled-2 #page-content-wrapper {
|
|
220 | 303 | }
|
221 | 304 | }
|
222 | 305 |
|
223 |
| -.logo-bar { |
224 |
| - height: 61px; |
225 |
| -} |
226 |
| - |
227 | 306 | .logo-bar .logo-bar-cell {
|
228 | 307 | width: 50px;
|
229 | 308 | padding-top: 8px;
|
|
250 | 329 |
|
251 | 330 | .top-bar {
|
252 | 331 | height: 61px;
|
| 332 | + width: calc(100% - 265px); |
| 333 | + right: initial; |
| 334 | + -webkit-transition: all 0.5s ease; |
| 335 | + -moz-transition: all 0.5s ease; |
| 336 | + -o-transition: all 0.5s ease; |
| 337 | + transition: all 0.5s ease; |
| 338 | +} |
| 339 | + |
| 340 | +.wide-top-bar { |
253 | 341 | width: calc(100% - 70px);
|
| 342 | + -webkit-transition: all 0.5s ease; |
| 343 | + -moz-transition: all 0.5s ease; |
| 344 | + -o-transition: all 0.5s ease; |
| 345 | + transition: all 0.5s ease; |
254 | 346 | }
|
255 | 347 |
|
256 | 348 | .sidebar-nav .sub-item {
|
|
266 | 358 | padding-left: 8px;
|
267 | 359 | }
|
268 | 360 |
|
269 |
| -.sidebar-nav .nav-item:hover,.sidebar-nav .nav-item:focus,.sidebar-nav .nav-item:active,.sidebar-nav .nav-item:focus-visible { |
270 |
| - background: #273759 !important; |
271 |
| -} |
272 |
| - |
273 | 361 |
|
274 | 362 | .sidebar-nav .sub-item .sidebar-title {
|
275 | 363 | padding-left: 0;
|
276 | 364 | }
|
277 | 365 |
|
278 | 366 | .nav-stacked .nav-item + .nav-item {
|
279 |
| - margin-top:0; |
| 367 | + margin-top: 0; |
| 368 | +} |
| 369 | + |
| 370 | + |
| 371 | +li.active { |
| 372 | + background: initial !important; |
| 373 | + color: initial !important; |
| 374 | +} |
| 375 | + |
| 376 | + |
| 377 | +#sidebar-wrapper .navbar-form { |
| 378 | + width: 265px; |
| 379 | + position: absolute; |
| 380 | + display: flex; |
| 381 | + justify-content: center; |
| 382 | + margin-top: 13px; |
| 383 | + border-bottom: 1px solid #3B4C72; |
| 384 | + padding-bottom: 10px; |
| 385 | +} |
| 386 | + |
| 387 | +#sidebar-wrapper .navbar-form input { |
| 388 | + width: 230px; |
| 389 | + background-color: rgba(255,255,255,0.2) !important; |
| 390 | +} |
| 391 | + |
| 392 | +#sidebar-wrapper .navbar-form button { |
| 393 | + position: absolute; |
| 394 | + right: 28px; |
| 395 | +} |
| 396 | + |
| 397 | +.logo-bar-table { |
| 398 | + background-color: #30426a !important; |
280 | 399 | }
|
0 commit comments