PluginProbe
Internal Link Juicer: SEO Auto Linker for WordPress / trunk
Internal Link Juicer: SEO Auto Linker for WordPress vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.5.2 1.2.0 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.15.1 1.2.16 1.2.17 All 75 releases
internal-links / admin / css / tipso.css

tipso.css in Internal Link Juicer: SEO Auto Linker for WordPress trunk, at admin/css/tipso.css

115 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * ILJ Color Palettes
3 */
4 /* iljtipso Bubble Styles */
5 .iljtipso_bubble, .iljtipso_bubble > .iljtipso_arrow {
6 -webkit-box-sizing: border-box;
7 -moz-box-sizing: border-box;
8 box-sizing: border-box;
9 }
10
11 .iljtipso_bubble {
12 position: absolute;
13 text-align: center;
14 border-radius: 6px;
15 z-index: 99999999 !important;
16 }
17
18 .iljtipso_style {
19 cursor: help;
20 }
21
22 .iljtipso_title {
23 border-radius: 6px 6px 0 0;
24 }
25
26 .iljtipso_content {
27 word-wrap: break-word;
28 padding: 0.3em 0.5em;
29 }
30
31 .iljtipso_content a {
32 color: #f49616;
33 }
34
35 .iljtipso_content hr {
36 margin: 15px 0;
37 border: none;
38 background: #fff;
39 height: 1px;
40 }
41
42 /* iljtipso Bubble size classes - Similar to Foundation's syntax*/
43 .iljtipso_bubble.tiny {
44 font-size: 0.6rem; }
45
46 .iljtipso_bubble.small {
47 font-size: 0.8rem; }
48
49 .iljtipso_bubble.default {
50 font-size: 1rem; }
51
52 .iljtipso_bubble.large {
53 font-size: 1.2rem;
54 width: 100%; }
55
56 /* iljtipso Bubble Div */
57 .iljtipso_bubble > .iljtipso_arrow {
58 position: absolute;
59 width: 0;
60 height: 0;
61 border: 8px solid;
62 pointer-events: none; }
63
64 .iljtipso_bubble.top > .iljtipso_arrow {
65 border-top-color: #000;
66 border-right-color: transparent;
67 border-left-color: transparent;
68 border-bottom-color: transparent;
69 top: 100%;
70 left: 50%;
71 margin-left: -8px; }
72
73 .iljtipso_bubble.bottom > .iljtipso_arrow {
74 border-bottom-color: #000;
75 border-right-color: transparent;
76 border-left-color: transparent;
77 border-top-color: transparent;
78 bottom: 100%;
79 left: 50%;
80 margin-left: -8px; }
81
82 .iljtipso_bubble.left > .iljtipso_arrow {
83 border-left-color: #000;
84 border-top-color: transparent;
85 border-bottom-color: transparent;
86 border-right-color: transparent;
87 top: 50%;
88 left: 100%;
89 margin-top: -8px; }
90
91 .iljtipso_bubble.right > .iljtipso_arrow {
92 border-right-color: #000;
93 border-top-color: transparent;
94 border-bottom-color: transparent;
95 border-left-color: transparent;
96 top: 50%;
97 right: 100%;
98 margin-top: -8px; }
99
100 .iljtipso_bubble .top_right_corner,
101 .iljtipso_bubble.top_right_corner {
102 border-bottom-left-radius: 0; }
103
104 .iljtipso_bubble .bottom_right_corner,
105 .iljtipso_bubble.bottom_right_corner {
106 border-top-left-radius: 0; }
107
108 .iljtipso_bubble .top_left_corner,
109 .iljtipso_bubble.top_left_corner {
110 border-bottom-right-radius: 0; }
111
112 .iljtipso_bubble .bottom_left_corner,
113 .iljtipso_bubble.bottom_left_corner {
114 border-top-right-radius: 0; }
115