|
55 | 55 | ========================================================================== */ |
56 | 56 |
|
57 | 57 | .top-bar { |
58 | | - background: linear-gradient(to bottom, rgb(104 145 196 / 100%) 0%, rgb(69 114 181 / 100%) 50%, rgb(65 90 149 / 100%) 100%); |
59 | | - background-color: #5070a6; |
60 | | - box-shadow: 0 4px 10px rgb(100 100 100 / 40%); |
61 | | - border-bottom: 1px solid #fff; |
62 | | - position: fixed; |
63 | | - width: 100%; |
64 | | - z-index: 2; |
65 | | - top: 0; |
| 58 | + background: linear-gradient( |
| 59 | + to bottom, |
| 60 | + rgb(104 145 196 / 100%) 0%, |
| 61 | + rgb(69 114 181 / 100%) 50%, |
| 62 | + rgb(65 90 149 / 100%) 100% |
| 63 | + ); |
| 64 | + background-color: #5070a6; |
| 65 | + box-shadow: 0 4px 10px rgb(100 100 100 / 40%); |
| 66 | + border-bottom: 1px solid #fff; |
| 67 | + position: fixed; |
| 68 | + width: 100%; |
| 69 | + z-index: 2; |
| 70 | + top: 0; |
66 | 71 | } |
67 | 72 |
|
68 | 73 | .top-bar-inner { |
69 | | - display: flex; |
70 | | - height: 40px; |
71 | | - padding-left: 20px; |
72 | | - padding-right: 20px; |
73 | | - justify-content: space-between; |
| 74 | + display: flex; |
| 75 | + height: 40px; |
| 76 | + padding-left: 20px; |
| 77 | + padding-right: 20px; |
| 78 | + justify-content: space-between; |
74 | 79 |
|
75 | 80 | @media (--viewport-large) { |
76 | 81 | padding-left: 0; |
|
79 | 84 | } |
80 | 85 |
|
81 | 86 | .top-bar-left { |
82 | | - display: flex; |
83 | | - align-items: center; |
| 87 | + display: flex; |
| 88 | + align-items: center; |
84 | 89 | } |
85 | 90 |
|
86 | 91 | .top-bar-logo { |
87 | | - display: block; |
88 | | - width: 54px; |
89 | | - margin-right: 30px; |
| 92 | + display: block; |
| 93 | + width: 54px; |
| 94 | + margin-right: 30px; |
90 | 95 | } |
91 | 96 |
|
92 | 97 | .top-bar-usage { |
93 | | - display: none; |
| 98 | + display: none; |
94 | 99 |
|
95 | | - @media (--viewport-small) { |
96 | | - display: block; |
97 | | - } |
| 100 | + @media (--viewport-small) { |
| 101 | + display: block; |
| 102 | + } |
98 | 103 | } |
99 | 104 |
|
100 | 105 | .top-bar-usage-inner { |
101 | | - display: flex; |
102 | | - color: #fff; |
103 | | - text-shadow: 1px 1px rgb(0 0 0 / 25%); |
104 | | - font-weight: 500; |
| 106 | + display: flex; |
| 107 | + color: #fff; |
| 108 | + text-shadow: 1px 1px rgb(0 0 0 / 25%); |
| 109 | + font-weight: 500; |
105 | 110 | } |
106 | 111 |
|
107 | 112 | .top-bar-usage-item { |
108 | | - margin-right: 11px; |
| 113 | + margin-right: 11px; |
109 | 114 |
|
110 | | - &:last-child { |
111 | | - margin-right: 0; |
112 | | - } |
| 115 | + &:last-child { |
| 116 | + margin-right: 0; |
| 117 | + } |
113 | 118 |
|
114 | | - & .fas { |
115 | | - margin-right: 3px; |
116 | | - } |
| 119 | + & .fas { |
| 120 | + margin-right: 3px; |
| 121 | + } |
117 | 122 | } |
118 | 123 |
|
119 | 124 | .top-bar-right { |
120 | | - display: flex; |
| 125 | + display: flex; |
121 | 126 | } |
122 | 127 |
|
123 | 128 | .top-bar-notifications { |
124 | | - display: flex; |
125 | | - position: relative; |
| 129 | + display: flex; |
| 130 | + position: relative; |
126 | 131 | } |
127 | 132 |
|
128 | 133 | .top-bar-nav { |
129 | | - display: flex; |
130 | | - position: relative; |
| 134 | + display: flex; |
| 135 | + position: relative; |
131 | 136 | } |
132 | 137 |
|
133 | 138 | .top-bar-nav-list { |
134 | | - display: none; |
135 | | - background-color: #4673b6; |
136 | | - box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%); |
137 | | - position: absolute; |
138 | | - top: 100%; |
139 | | - right: 0; |
| 139 | + display: none; |
| 140 | + background-color: #4673b6; |
| 141 | + box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%); |
| 142 | + position: absolute; |
| 143 | + top: 100%; |
| 144 | + right: 0; |
140 | 145 |
|
141 | | - @media (--viewport-medium) { |
142 | | - display: flex !important; /* NOTE: Overrides inline style set by JS */ |
143 | | - background-color: transparent; |
144 | | - box-shadow: none; |
145 | | - position: static; |
146 | | - } |
| 146 | + @media (--viewport-medium) { |
| 147 | + display: flex !important; /* NOTE: Overrides inline style set by JS */ |
| 148 | + background-color: transparent; |
| 149 | + box-shadow: none; |
| 150 | + position: static; |
| 151 | + } |
147 | 152 | } |
148 | 153 |
|
149 | 154 | .top-bar-nav-item { |
150 | | - @media (--viewport-medium) { |
151 | | - display: flex; |
152 | | - } |
| 155 | + @media (--viewport-medium) { |
| 156 | + display: flex; |
| 157 | + } |
153 | 158 | } |
154 | 159 |
|
155 | 160 | .top-bar-nav-link { |
156 | | - color: #f7f7f7; |
157 | | - display: flex; |
158 | | - align-items: center; |
159 | | - font-size: 0.8rem; |
160 | | - font-weight: 600; |
161 | | - text-shadow: 1px 1px rgb(0 0 0 / 25%); |
162 | | - background-color: transparent; |
163 | | - border: 0; |
164 | | - border-left: 1px solid transparent; |
165 | | - border-right: 1px solid transparent; |
166 | | - padding: 10px; |
| 161 | + color: #f7f7f7; |
| 162 | + display: flex; |
| 163 | + align-items: center; |
| 164 | + font-size: 0.8rem; |
| 165 | + font-weight: 600; |
| 166 | + text-shadow: 1px 1px rgb(0 0 0 / 25%); |
| 167 | + background-color: transparent; |
| 168 | + border: 0; |
| 169 | + border-left: 1px solid transparent; |
| 170 | + border-right: 1px solid transparent; |
| 171 | + padding: 10px; |
167 | 172 |
|
168 | 173 | &:hover { |
169 | 174 | box-shadow: inset 0 0 6px rgb(255 255 255 / 60%); |
|
218 | 223 | } |
219 | 224 |
|
220 | 225 | .top-bar-nav-link-label { |
221 | | - margin-left: 6px; |
222 | | - white-space: nowrap; |
| 226 | + margin-left: 6px; |
| 227 | + white-space: nowrap; |
223 | 228 |
|
224 | | - @media (--viewport-medium) { |
225 | | - display: none; |
226 | | - } |
| 229 | + @media (--viewport-medium) { |
| 230 | + display: none; |
| 231 | + } |
227 | 232 | } |
228 | 233 |
|
229 | 234 | .l-center { |
|
233 | 238 | } |
234 | 239 |
|
235 | 240 | .notification-container { |
236 | | - background-color: #fff; |
237 | | - box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%); |
238 | | - max-height: 500px; |
239 | | - overflow-y: auto; |
240 | | - position: absolute; |
241 | | - top: 100%; |
242 | | - right: 0; |
243 | | - width: 300px; |
244 | | - z-index: 1; |
245 | | - font-size: 0.8rem; |
246 | | - color: #6f6f6f; |
247 | | - border-bottom-left-radius: 6px; |
248 | | - border-bottom-right-radius: 6px; |
249 | | - border: 1px solid #fff; |
250 | | - border-top: none; |
251 | | - |
252 | | - @media (--viewport-medium) { |
253 | | - width: 400px; |
254 | | - } |
| 241 | + background-color: #fff; |
| 242 | + box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%); |
| 243 | + max-height: 500px; |
| 244 | + overflow-y: auto; |
| 245 | + position: absolute; |
| 246 | + top: 100%; |
| 247 | + right: 0; |
| 248 | + width: 300px; |
| 249 | + z-index: 1; |
| 250 | + font-size: 0.8rem; |
| 251 | + color: #6f6f6f; |
| 252 | + border-bottom-left-radius: 6px; |
| 253 | + border-bottom-right-radius: 6px; |
| 254 | + border: 1px solid #fff; |
| 255 | + border-top: none; |
| 256 | + |
| 257 | + @media (--viewport-medium) { |
| 258 | + width: 400px; |
| 259 | + } |
255 | 260 | } |
256 | 261 |
|
257 | 262 | .notification-container .empty { |
@@ -2136,7 +2141,7 @@ body.mobile .l-unit-toolbar__col--right { |
2136 | 2141 | } |
2137 | 2142 |
|
2138 | 2143 | .l-content { |
2139 | | - padding-top: 40px; |
| 2144 | + padding-top: 40px; |
2140 | 2145 | } |
2141 | 2146 |
|
2142 | 2147 | .console-output { |
|
0 commit comments