Blame view

framework/admin/thirdparty/jquery-notice/jquery.notice.css 564 Bytes
0084d336   Administrator   Importers CRUD
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
  .notice-wrap {
  	position: fixed;
  	top: 20px;
  	right: 20px;
  	width: 250px;
  	z-index: 9999;
  }
  
  * html .notice-wrap {
  	position: absolute;		
  }
   
  .notice-item {
  	height: 60px;
  	background: #333;
  	-moz-border-radius: 6px;
  	-webkit-border-radius: 6px;
  	color: #eee;
  	padding: 6px 6px 0 6px;
  	font-family: lucida Grande;
  	font-size: 11px;
  	border: 2px solid #999;
  	display: block;
  	position: relative;
  	margin: 0 0 12px 0;
  }
  
  .notice-item-close {
  	position: absolute;
  	font-family: Arial;
  	font-size: 12px;
  	font-weight: bold;
  	right: 6px;
  	top: 6px;
  	cursor: pointer;
  }