| 1 |
/* |
| 2 |
* jquery-gpopover |
| 3 |
* http://github.com/markembling/jquery-gpopover |
| 4 |
* |
| 5 |
* A simple jQuery plugin for creating popover elements similar to Google's |
| 6 |
* new 'apps' launcher/switcher. |
| 7 |
* |
| 8 |
* Copyright (c) 2013 Mark Embling (markembling.info) |
| 9 |
* Licensed under the BSD (3 clause) license. |
| 10 |
*/ |
| 11 |
|
| 12 |
.gpopover { |
| 13 |
background-color: #FFF; |
| 14 |
border: 1px solid #CCC; |
| 15 |
border-color: rgba(0, 0, 0, 0.2); |
| 16 |
border-radius: 2px; |
| 17 |
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); |
| 18 |
display: none; |
| 19 |
padding: 12px; |
| 20 |
position: absolute; |
| 21 |
z-index: 998; |
| 22 |
} |
| 23 |
|
| 24 |
.gpopover .gpopover-arrow { |
| 25 |
border: 8px solid transparent; |
| 26 |
border-bottom-color: #FFF; |
| 27 |
border-top-width: 0; |
| 28 |
height: 0; |
| 29 |
position: absolute; |
| 30 |
width: 0; |
| 31 |
z-index: 999; |
| 32 |
} |
| 33 |
|
| 34 |
.gpopover .gpopover-arrow-shadow { |
| 35 |
border: 8px solid transparent; |
| 36 |
border-bottom-color: #C0C0C0; |
| 37 |
border-bottom-color: rgba(0, 0, 0, 0.275); |
| 38 |
border-top-width: 0; |
| 39 |
height: 0; |
| 40 |
position: absolute; |
| 41 |
width: 0; |
| 42 |
z-index: 997; |
| 43 |
} |
| 44 |
|