source: documentation/trunk/tutorial_sample_files/libraries/althor/js/poshytip-1.1/src/tip-green/tip-green.css@ 28599

Last change on this file since 28599 was 28599, checked in by jlwhisler, 10 years ago

Draft interface for use in Defining Libraries tutorial.

File size: 1.3 KB
Line 
1.tip-green {
2 z-index:1000;
3 text-align:left;
4 border:1px solid #bdde98;
5 padding:7px 10px;
6 min-width:50px;
7 max-width:300px;
8 color:#860404;
9 background-color:#dff6c6;
10 /**
11 * - If you set a background-image, border/padding/background-color will be ingnored.
12 * You can set any padding to .tip-inner instead if you need.
13 * - If you want a tiled background-image and border/padding for the tip,
14 * set the background-image to .tip-inner instead.
15 */
16}
17.tip-green .tip-inner {
18 font:bold 12px/14px arial,helvetica,sans-serif;
19}
20
21/* Configure an arrow image - the script will automatically position it on the correct side of the tip */
22.tip-green .tip-arrow-top {
23 margin-top:-10px;
24 margin-left:6px;
25 top:0;
26 left:0;
27 width:10px;
28 height:10px;
29 background:url(tip-green_arrows.gif) no-repeat;
30}
31.tip-green .tip-arrow-right {
32 margin-top:6px;
33 margin-left:0;
34 top:0;
35 left:100%;
36 width:10px;
37 height:10px;
38 background:url(tip-green_arrows.gif) no-repeat -10px 0;
39}
40.tip-green .tip-arrow-bottom {
41 margin-top:0;
42 margin-left:6px;
43 top:100%;
44 left:0;
45 width:10px;
46 height:10px;
47 background:url(tip-green_arrows.gif) no-repeat -20px 0;
48}
49.tip-green .tip-arrow-left {
50 margin-top:6px;
51 margin-left:-10px;
52 top:0;
53 left:0;
54 width:10px;
55 height:10px;
56 background:url(tip-green_arrows.gif) no-repeat -30px 0;
57}
Note: See TracBrowser for help on using the repository browser.