Blame view

babylon-vue-4.0.0/src/assets/sass/layout/_topbar.scss 12.3 KB
0f94839d   함상기   babylon client fo...
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
  .layout-wrapper {
      .layout-topbar {
          position: fixed;
          height: 60px;
          top: 0;
          left: 250px;
          right: 0;
          z-index: 997;
          padding: 8px 25px;
          background-color: $topbarBgColor;
          @include clearfix();
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  
          .layout-topbar-logo {
              display: none;
  
              img {
                  margin-top: 7px;
                  height: 30px;
              }
          }
  
          .layout-menu-button {
              cursor: pointer;
              float: left;
              width: 44px;
              height: 44px;
              line-height: 44px;
              text-align: center;
              color: $topbarIconColor;
              border-radius: 50%;
              transition: background-color $transitionDuration;
  
              i {
                  line-height: inherit;
                  font-size: 24px;
              }
  
              &:hover {
                  background-color: $topbarIconHoverBgColor;
              }
  
              &:focus {
                  box-shadow: none;
              }
          }
  
          #topbar-menu-button {
              cursor: pointer;
              font-size: 28px;
              width: 44px;
              height: 44px;
              line-height: 44px;
              display: none;
              float: right;
              text-align: center;
              border-radius: 50%;
              color: $topbarIconColor;
              transition: background-color $transitionDuration;
  
              i {
                  line-height: inherit;
                  font-size: 24px;
              }
  
              &:hover {
                  background-color: $topbarIconHoverBgColor;
              }
  
              &:focus {
                  box-shadow: none;
              }
          }
  
          .topbar-menu {
              float: right;
              padding: 0;
              margin: 0;
              list-style-type: none;
  
              > li {
                  float: right;
                  position: relative;
                  margin-left: 14px;
  
                  > button {
                      cursor: pointer;
                      position: relative;
                      display: block;
                      width: 44px;
                      height: 44px;
                      line-height: 44px;
                      text-align: center;
                      border-radius: 50%;
                      transition: background-color $transitionDuration;
  
                      .topbar-icon {
                          color: $topbarIconColor;
                          line-height: inherit;
                          font-size: 24px;
                      }
  
                      > img {
                          width: 36px;
                          margin-top: 4px;
                      }
  
                      &:hover {
                          background-color: $topbarIconHoverBgColor;
                      }
  
                      &:focus {
                          box-shadow: none;
                      }
  
                      .topbar-item-name {
                          display: none;
                      }
  
                      .topbar-badge {
                          position: absolute;
                          right: 4px;
                          top: 4px;
                          background-color: #e0284f;
                          color: #ffffff;
                          text-align: center;
                          line-height: 16px;
                          min-width: 16px;
                          min-height: 16px;
                          display: block;
                          font-size: 12px;
                          border-radius: 100%;
                      }
                  }
  
                  > ul {
                      position: absolute;
                      border: 1px solid $topbarMenuBorderColor;
                      top: 55px;
                      right: -18px;
                      margin: 0;
                      display: none;
                      min-width: 250px;
                      padding: 8px 12px;
                      list-style-type: none;
                      background-color: $topbarMenuBgColor;
                      animation-duration: $transitionDuration;
                      border-radius: $borderRadius;
                      box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
  
                      &.layout-submenu-container-enter,
                      &.layout-submenu-container-leave-to {
                          max-height: 0;
                          display: none;
                      }
  
                      &.layout-submenu-container-enter-to,
                      &.layout-submenu-container-leave {
                          max-height: 500px;
                      }
  
                      &:before, &:after {
                          bottom: 100%;
                          border: solid transparent;
                          content: " ";
                          height: 0;
                          width: 0;
                          position: absolute;
                          pointer-events: none;
                          left: 210px;
                      }
  
                      &:before {
                          border-color: rgba(216, 216, 220, 0);
                          border-bottom-color: $topbarMenuBorderColor;
                          border-width: 10px;
                          margin-left: -10px;
                      }
  
                      &:after {
                          border-color: rgba(244, 244, 249, 0);
                          border-bottom-color: $topbarMenuBgColor;
                          border-width: 9px;
                          margin-left: -9px;
                      }
  
                      button {
                          box-sizing: border-box;
                          padding: 8px 12px;
                          text-align: left;
                          display: block;
                          width: 100%;
                          color: $menuitemTextColor;
                          position: relative;
                          border-radius: $borderRadius;
                          transition: background-color $transitionDuration;
  
                          i {
                              margin-right: 8px;
                              color: $menuitemIconColor;
                          }
  
                          img {
                              margin-right: 8px;
                              width: 24px;
                          }
  
                          i,img,span {
                              vertical-align: middle;
                          }
  
                          .topbar-submenuitem-badge {
                              background-color: $topbarBadgeBgColor;
                              color: $topbarBadgeTextColor;
                              text-align: center;
                              line-height: 16px;
                              min-width: 16px;
                              height: 16px;
                              font-size: 12px;
                              border-radius: 100%;
                              display: inline-block;
                              margin-left: 8px;
                          }
  
                          &:hover {
                              background-color: $menuitemHoverBgColor;
                          }
                      }
                  }
  
                  &.active-topmenuitem {
                      > ul {
                          display: block;
                      }
                  }
              }
          }
      }
  }
  
  @media screen and (max-width: 896px) {
      .layout-wrapper {
          .layout-topbar {
              text-align: center;
  
              .layout-topbar-logo {
                  display: inline-block;
              }
  
              #topbar-menu-button {
                  display: block;
              }
  
              .topbar-menu {
                  background-color: $topbarMenuBgColor;
                  border: 1px solid $topbarMenuBorderColor;
                  position: absolute;
                  top: 70px;
                  right: 25px;
                  width: 250px;
                  animation-duration: $transitionDuration;
                  display: none;
                  list-style-type: none;
                  margin: 0;
                  padding: 8px 12px;
                  box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
  
                  &:before, &:after {
                      bottom: 100%;
                      border: solid transparent;
                      content: " ";
                      height: 0;
                      width: 0;
                      position: absolute;
                      pointer-events: none;
                      left: 225px;
                  }
  
                  &:before {
                      border-color: rgba(216, 216, 220, 0);
                      border-bottom-color: $topbarMenuBorderColor;
                      border-width: 10px;
                      margin-left: -10px;
                  }
  
                  &:after {
                      border-color: rgba(244, 244, 249, 0);
                      border-bottom-color: $topbarMenuBgColor;
                      border-width: 9px;
                      margin-left: -9px;
                  }
  
                  &.topbar-menu-visible {
                      display: block;
                  }
  
                  > li {
                      width: 100%;
                      margin: 0;
                      float: none;
  
                      &.active-topmenuitem {
                          > ul {
                              display: block;
                          }
                      }
  
                      &.user-profile {
                          > button {
                              img {
                                  margin-right: 8px;
                                  margin-top: 0;
                                  width: 24px;
                                  vertical-align: middle;
                              }
                          }
                      }
  
                      button {
                          box-sizing: border-box;
                          height: auto;
                          line-height: 1;
                          width: 100%;
                          display: block;
                          padding: 8px 12px;
                          position: relative;
                          text-align: left;
                          border-radius: $borderRadius;
                          transition: background-color $transitionDuration;
  
                          .topbar-icon {
                              display: inline-block;
                              vertical-align: middle;
                              margin-right: 8px;
                              font-size: 16px;
                              color: $menuitemIconColor;
                          }
  
                          &:hover {
                              background-color: $menuitemHoverBgColor;
                              color: $textColor;
                          }
  
                          .topbar-item-name {
                              display: inline-block;
                              vertical-align: middle;
                              color: $menuitemTextColor;
                          }
  
                          .topbar-badge {
                              background-color: $topbarBadgeBgColor;
                              color: $topbarBadgeTextColor;
                              text-align: center;
                              line-height: 16px;
                              min-width: 16px;
                              height: 16px;
                              font-size: 12px;
                              border-radius: 100%;
                              display: inline-block;
                              position: static;
                              margin-left: 8px;
                          }
                      }
  
                      > ul {
                          display: none;
                          list-style-type: none;
                          padding: 0 0 0 0;
                          margin: 0;
                          position: static;
                          top: auto;
                          left: auto;
                          width: 100%;
                          min-width: auto;
                          border: 0 none;
                          box-shadow: none;
  
                          &:before, &:after {
                              display: none;
                          }
  
                          li {
                              button {
                                  padding-left: 28px;
  
                                  img {
                                      margin-right: 8px;
                                  }
                              }
                          }
                      }
                  }
              }
          }
      }
  }