blob: a93f38ba2f3044647e8a65876d8e9abf5348d065 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandolo42e3fe22016-05-27 14:52:37 -070019@import '../../../../style/sass/lib/_variables.scss';
20
21#xosSynchronizerNotifier {
22
23 float: left;
24
25 .alert {
26 margin-bottom: 0px !important;
27 }
28
29 .sync-status-container {
30 position: relative;
Matteo Scandoloe0afc4e2016-06-01 10:58:25 -070031 z-index: 200;
Matteo Scandolo42e3fe22016-05-27 14:52:37 -070032 }
33
34 .notification-panel {
35 position: absolute;
36 width: 200px;
37 }
38
39 sync-status {
40 .badge {
41 &.success {
42 background-color: $brand-success;
43 }
44
Matteo Scandolo99ac4ae2016-06-01 08:35:15 -070045 &.warning {
46 background-color: $brand-warning;
Matteo Scandolo42e3fe22016-05-27 14:52:37 -070047 }
48 }
49 }
50}