-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjquery.gpopover.css
43 lines (40 loc) · 1007 Bytes
/
jquery.gpopover.css
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
/*
* jquery-gpopover-plugin
* https://github.com/markembling/jquery-gpopover-plugin
*
* A simple jQuery plugin for creating popover elements similar to Google's
* apps launcher/switcher.
*
* Copyright (c) 2013-2019 Mark Embling (markembling.info)
* Licensed under the BSD (3 clause) license.
*/
.gpopover {
background-color: #FFF;
border: 1px solid #CCC;
border-color: rgba(0, 0, 0, 0.2);
border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
display: none;
padding: 12px;
position: absolute;
z-index: 998;
}
.gpopover .gpopover-arrow {
border: 8px solid transparent;
border-bottom-color: #FFF;
border-top-width: 0;
height: 0;
position: absolute;
width: 0;
z-index: 999;
}
.gpopover .gpopover-arrow-shadow {
border: 8px solid transparent;
border-bottom-color: #C0C0C0;
border-bottom-color: rgba(0, 0, 0, 0.275);
border-top-width: 0;
height: 0;
position: absolute;
width: 0;
z-index: 997;
}