source: main/trunk/greenstone3/web/interfaces/therin/js/poshytip-1.1/src/tip-skyblue/tip-skyblue.css@ 28644

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

A new interface created using a CSS template by luiszuno.com. Based on the default interface.

File size: 1.4 KB
Line 
1.tip-skyblue {
2 z-index:1000;
3 text-align:left;
4 padding:8px 10px;
5 min-width:50px;
6 max-width:300px;
7 color:#37356c;
8 background-color:#b9f3f8;
9 background-image:url(tip-skyblue.png); /* bgImageFrameSize == 9 works fine */
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-skyblue .tip-inner {
18 font:bold 13px/15px 'trebuchet ms',arial,helvetica,sans-serif;
19 padding:0 3px 1px 3px;
20}
21
22/* Configure an arrow image - the script will automatically position it on the correct side of the tip */
23.tip-skyblue .tip-arrow-top {
24 margin-top:-12px;
25 margin-left:0;
26 top:0;
27 left:0;
28 width:11px;
29 height:19px;
30 background:url(tip-skyblue_arrows.png) no-repeat;
31}
32.tip-skyblue .tip-arrow-right {
33 margin-top:0;
34 margin-left:-7px;
35 top:0;
36 left:100%;
37 width:18px;
38 height:13px;
39 background:url(tip-skyblue_arrows.png) no-repeat -20px 0;
40}
41.tip-skyblue .tip-arrow-bottom {
42 margin-top:-8px;
43 margin-left:0;
44 top:100%;
45 left:0;
46 width:11px;
47 height:20px;
48 background:url(tip-skyblue_arrows.png) no-repeat -40px 0;
49}
50.tip-skyblue .tip-arrow-left {
51 margin-top:0;
52 margin-left:-11px;
53 top:0;
54 left:0;
55 width:18px;
56 height:13px;
57 background:url(tip-skyblue_arrows.png) no-repeat -60px 0;
58}
Note: See TracBrowser for help on using the repository browser.