|
1 |
| -/*! angular-flash - v2.2.0 - 2016-02-06 |
| 1 | +/*! angular-flash - v2.2.0 - 2016-02-10 |
2 | 2 | * https://github.com/sachinchoolur/angular-flash
|
3 | 3 | * Copyright (c) 2016 Sachin; Licensed MIT */
|
4 |
| -.alert { |
5 |
| - padding: 15px; |
6 |
| - margin-bottom: 20px; |
7 |
| - border: 1px solid transparent; |
8 |
| - border-radius: 4px; |
9 |
| -} |
10 |
| -.alert h4 { |
11 |
| - margin-top: 0; |
12 |
| - color: inherit; |
13 |
| -} |
14 |
| -.alert .alert-link { |
15 |
| - font-weight: bold; |
16 |
| -} |
17 |
| -.alert > p, |
18 |
| -.alert > ul { |
19 |
| - margin-bottom: 0; |
20 |
| -} |
21 |
| -.alert > p + p { |
22 |
| - margin-top: 5px; |
23 |
| -} |
24 |
| -.alert-dismissable, |
25 |
| -.alert-dismissible { |
26 |
| - padding-right: 35px; |
27 |
| -} |
28 |
| -.alert-dismissable .close, |
29 |
| -.alert-dismissible .close { |
30 |
| - position: relative; |
31 |
| - top: -2px; |
32 |
| - right: -21px; |
33 |
| - color: inherit; |
34 |
| -} |
35 |
| -.alert-success { |
36 |
| - color: #3c763d; |
37 |
| - background-color: #dff0d8; |
38 |
| - border-color: #d6e9c6; |
39 |
| -} |
40 |
| -.alert-success hr { |
41 |
| - border-top-color: #c9e2b3; |
42 |
| -} |
43 |
| -.alert-success .alert-link { |
44 |
| - color: #2b542c; |
45 |
| -} |
46 |
| -.alert-info { |
47 |
| - color: #31708f; |
48 |
| - background-color: #d9edf7; |
49 |
| - border-color: #bce8f1; |
50 |
| -} |
51 |
| -.alert-info hr { |
52 |
| - border-top-color: #a6e1ec; |
53 |
| -} |
54 |
| -.alert-info .alert-link { |
55 |
| - color: #245269; |
56 |
| -} |
57 |
| -.alert-warning { |
58 |
| - color: #8a6d3b; |
59 |
| - background-color: #fcf8e3; |
60 |
| - border-color: #faebcc; |
61 |
| -} |
62 |
| -.alert-warning hr { |
63 |
| - border-top-color: #f7e1b5; |
64 |
| -} |
65 |
| -.alert-warning .alert-link { |
66 |
| - color: #66512c; |
67 |
| -} |
68 |
| -.alert-danger { |
69 |
| - color: #a94442; |
70 |
| - background-color: #f2dede; |
71 |
| - border-color: #ebccd1; |
72 |
| -} |
73 |
| -.alert-danger hr { |
74 |
| - border-top-color: #e4b9c0; |
75 |
| -} |
76 |
| -.alert-danger .alert-link { |
77 |
| - color: #843534; |
78 |
| -} |
79 |
| - |
80 |
| -.close { |
81 |
| - float: right; |
82 |
| - font-size: 21px; |
83 |
| - font-weight: bold; |
84 |
| - line-height: 1; |
85 |
| - color: #000; |
86 |
| - text-shadow: 0 1px 0 #fff; |
87 |
| - filter: alpha(opacity=20); |
88 |
| - opacity: .2; |
89 |
| -} |
90 |
| -.close:hover, |
91 |
| -.close:focus { |
92 |
| - color: #000; |
93 |
| - text-decoration: none; |
94 |
| - cursor: pointer; |
95 |
| - filter: alpha(opacity=50); |
96 |
| - opacity: .5; |
97 |
| -} |
98 |
| -div.close { |
99 |
| - -webkit-appearance: none; |
100 |
| - padding: 0; |
101 |
| - cursor: pointer; |
102 |
| - background: transparent; |
103 |
| - font-size: 1.7em; |
104 |
| -} |
105 |
| -.sr-only { |
106 |
| - position: absolute; |
107 |
| - width: 1px; |
108 |
| - height: 1px; |
109 |
| - padding: 0; |
110 |
| - margin: -1px; |
111 |
| - overflow: hidden; |
112 |
| - clip: rect(0, 0, 0, 0); |
113 |
| - border: 0; |
114 |
| -} |
| 4 | +.alert { |
| 5 | + padding: 15px; |
| 6 | + margin-bottom: 20px; |
| 7 | + border: 1px solid transparent; |
| 8 | + border-radius: 4px; |
| 9 | +} |
| 10 | +.alert h4 { |
| 11 | + margin-top: 0; |
| 12 | + color: inherit; |
| 13 | +} |
| 14 | +.alert .alert-link { |
| 15 | + font-weight: bold; |
| 16 | +} |
| 17 | +.alert > p, |
| 18 | +.alert > ul { |
| 19 | + margin-bottom: 0; |
| 20 | +} |
| 21 | +.alert > p + p { |
| 22 | + margin-top: 5px; |
| 23 | +} |
| 24 | +.alert-dismissable, |
| 25 | +.alert-dismissible { |
| 26 | + padding-right: 35px; |
| 27 | +} |
| 28 | +.alert-dismissable .close, |
| 29 | +.alert-dismissible .close { |
| 30 | + position: relative; |
| 31 | + top: -2px; |
| 32 | + right: -21px; |
| 33 | + color: inherit; |
| 34 | +} |
| 35 | +.alert-success { |
| 36 | + color: #3c763d; |
| 37 | + background-color: #dff0d8; |
| 38 | + border-color: #d6e9c6; |
| 39 | +} |
| 40 | +.alert-success hr { |
| 41 | + border-top-color: #c9e2b3; |
| 42 | +} |
| 43 | +.alert-success .alert-link { |
| 44 | + color: #2b542c; |
| 45 | +} |
| 46 | +.alert-info { |
| 47 | + color: #31708f; |
| 48 | + background-color: #d9edf7; |
| 49 | + border-color: #bce8f1; |
| 50 | +} |
| 51 | +.alert-info hr { |
| 52 | + border-top-color: #a6e1ec; |
| 53 | +} |
| 54 | +.alert-info .alert-link { |
| 55 | + color: #245269; |
| 56 | +} |
| 57 | +.alert-warning { |
| 58 | + color: #8a6d3b; |
| 59 | + background-color: #fcf8e3; |
| 60 | + border-color: #faebcc; |
| 61 | +} |
| 62 | +.alert-warning hr { |
| 63 | + border-top-color: #f7e1b5; |
| 64 | +} |
| 65 | +.alert-warning .alert-link { |
| 66 | + color: #66512c; |
| 67 | +} |
| 68 | +.alert-danger { |
| 69 | + color: #a94442; |
| 70 | + background-color: #f2dede; |
| 71 | + border-color: #ebccd1; |
| 72 | +} |
| 73 | +.alert-danger hr { |
| 74 | + border-top-color: #e4b9c0; |
| 75 | +} |
| 76 | +.alert-danger .alert-link { |
| 77 | + color: #843534; |
| 78 | +} |
| 79 | + |
| 80 | +.close { |
| 81 | + float: right; |
| 82 | + font-size: 21px; |
| 83 | + font-weight: bold; |
| 84 | + line-height: 1; |
| 85 | + color: #000; |
| 86 | + text-shadow: 0 1px 0 #fff; |
| 87 | + filter: alpha(opacity=20); |
| 88 | + opacity: .2; |
| 89 | +} |
| 90 | +.close:hover, |
| 91 | +.close:focus { |
| 92 | + color: #000; |
| 93 | + text-decoration: none; |
| 94 | + cursor: pointer; |
| 95 | + filter: alpha(opacity=50); |
| 96 | + opacity: .5; |
| 97 | +} |
| 98 | +div.close { |
| 99 | + -webkit-appearance: none; |
| 100 | + padding: 0; |
| 101 | + cursor: pointer; |
| 102 | + background: transparent; |
| 103 | + border: 0; |
| 104 | + font-size: 1.7em; |
| 105 | +} |
| 106 | +.sr-only { |
| 107 | + position: absolute; |
| 108 | + width: 1px; |
| 109 | + height: 1px; |
| 110 | + padding: 0; |
| 111 | + margin: -1px; |
| 112 | + overflow: hidden; |
| 113 | + clip: rect(0, 0, 0, 0); |
| 114 | + border: 0; |
| 115 | +} |
0 commit comments