style.css
2.2 KB
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
.notification-bar {
display: block;
}
.notification:hover {
opacity: 0.8;
}
#notification-manager {
overflow: auto;
}
.notification .notification-close {
background: url(public/images/close.png) no-repeat;
background-position: center;
width: 20px;
height: 20px;
}
.warningnotification,
.informationnotification,
.successnotification,
.dangernotification {
margin-bottom: 10px;
padding: 7px 10px;
border-radius: 5px;
border: 1px solid blue;
font-size: 16px;
color: white;
overflow: auto;
}
.warningnotification p,
.informationnotification p,
.successnotification p,
.dangernotification p {
margin: 0px;
}
.warningnotification {
background: #EEA236;
border: 1px solid #EEA236;
}
.informationnotification {
background: #5BC0DE;
border: 1px solid #46B8DA;
}
.successnotification {
background: #5CB85C;
border: 1px solid #4CAE4C;
}
.dangernotification {
background: #C9302C;
border: 1px solid #AC2925;
}
a.button.icon-deactivate {
background: url(public/images/hide.png) no-repeat;
background-position: center;
}
a.button.icon-activate {
background: url(public/images/show.png) no-repeat;
background-position: center;
}
.notification-line {
display: inline;
padding-top: 10px;
vertical-align: middle;
border-bottom: 1px solid #ccc;
}
.notification-title-bar {
float: left;
width: 100%;
font-style: 14px;
font-weight: 700;
border-bottom: 2px solid black;
padding: 9px 0;
}
.notification-title {
width: 80%;
float: left;
text-align: center;
}
.action-title {
width: 20%;
float: left;
text-align: center;
}
.notification-action {
width: 18%;
float: left;
height: 30px;
padding-top: 9px;
}
.main-bar .button,
.notification-action .button {
border-radius: 3px;
}
.notification-message {
width: 82%;
float: left;
}
.new-notification {
float: right;
width: auto;
}
.back-button {
float: left;
}
.main-bar {
display: inline;
width: 100%;
}
.notification-bar .notification .notification-message {
width: 90%;
float: left;
}
.notification-bar .notification .notification-close {
background: url(public/images/close.png) no-repeat;
background-position: center;
width: 20px;
height: 20px;
float: right;
cursor: pointer;
}