1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,151 +0,0 @@ |
1 |
-/*! formstone v0.8.35 [tooltip.css] 2015-12-28 | MIT License | formstone.it */ |
|
2 |
- |
|
3 |
-/** |
|
4 |
- * @class |
|
5 |
- * @name .fs-tooltip-element |
|
6 |
- * @type element |
|
7 |
- * @description Target elmement |
|
8 |
- */ |
|
9 |
-/** |
|
10 |
- * @class |
|
11 |
- * @name .fs-tooltip |
|
12 |
- * @type element |
|
13 |
- * @description Base widget class |
|
14 |
- */ |
|
15 |
-/** |
|
16 |
- * @class |
|
17 |
- * @name .fs-tooltip.fs-tooltip-visible |
|
18 |
- * @type modifier |
|
19 |
- * @description Inidcates visible state |
|
20 |
- */ |
|
21 |
-/** |
|
22 |
- * @class |
|
23 |
- * @name .fs-tooltip.fs-tooltip-right |
|
24 |
- * @type modifier |
|
25 |
- * @description Inidcates right side display |
|
26 |
- */ |
|
27 |
-/** |
|
28 |
- * @class |
|
29 |
- * @name .fs-tooltip.fs-tooltip-left |
|
30 |
- * @type modifier |
|
31 |
- * @description Inidcates left side display |
|
32 |
- */ |
|
33 |
-/** |
|
34 |
- * @class |
|
35 |
- * @name .fs-tooltip.fs-tooltip-top |
|
36 |
- * @type modifier |
|
37 |
- * @description Inidcates top display |
|
38 |
- */ |
|
39 |
-/** |
|
40 |
- * @class |
|
41 |
- * @name .fs-tooltip.fs-tooltip-bottom |
|
42 |
- * @type modifier |
|
43 |
- * @description Inidcates bottom display |
|
44 |
- */ |
|
45 |
-.fs-tooltip { |
|
46 |
- width: 1px; |
|
47 |
- height: 1px; |
|
48 |
- position: absolute; |
|
49 |
- top: -999px; |
|
50 |
- left: -999px; |
|
51 |
- z-index: 10; |
|
52 |
- opacity: 0; |
|
53 |
- pointer-events: none; |
|
54 |
- -webkit-transition: opacity 0.15s linear; |
|
55 |
- transition: opacity 0.15s linear; |
|
56 |
- /** |
|
57 |
- * @class |
|
58 |
- * @name .fs-tooltip-content |
|
59 |
- * @type element |
|
60 |
- * @description Tooltip content wrapper |
|
61 |
- */ |
|
62 |
- /** |
|
63 |
- * @class |
|
64 |
- * @name .fs-tooltip-caret |
|
65 |
- * @type element |
|
66 |
- * @description Tooltip caret |
|
67 |
- */ |
|
68 |
-} |
|
69 |
-.fs-tooltip, |
|
70 |
-.fs-tooltip:after, |
|
71 |
-.fs-tooltip:before, |
|
72 |
-.fs-tooltip *, |
|
73 |
-.fs-tooltip *:after, |
|
74 |
-.fs-tooltip *:before { |
|
75 |
- box-sizing: border-box; |
|
76 |
- -webkit-transition: none; |
|
77 |
- transition: none; |
|
78 |
- -webkit-user-select: none !important; |
|
79 |
- -moz-user-select: none !important; |
|
80 |
- -ms-user-select: none !important; |
|
81 |
- user-select: none !important; |
|
82 |
-} |
|
83 |
-.fs-tooltip-visible { |
|
84 |
- opacity: 1; |
|
85 |
-} |
|
86 |
-.fs-tooltip-content { |
|
87 |
- background: #111111; |
|
88 |
- border-radius: 3px; |
|
89 |
- color: #ffffff; |
|
90 |
- display: block; |
|
91 |
- float: left; |
|
92 |
- font-size: 12px; |
|
93 |
- margin: 0; |
|
94 |
- padding: 10px 15px; |
|
95 |
- position: relative; |
|
96 |
- white-space: nowrap; |
|
97 |
-} |
|
98 |
-.fs-tooltip-caret { |
|
99 |
- width: 0; |
|
100 |
- height: 0; |
|
101 |
- content: ''; |
|
102 |
- display: block; |
|
103 |
- margin: 0; |
|
104 |
- position: absolute; |
|
105 |
-} |
|
106 |
-.fs-tooltip-right .fs-tooltip-content { |
|
107 |
- box-shadow: 1px 0 5px rgba(0, 0, 0, 0.35); |
|
108 |
-} |
|
109 |
-.fs-tooltip-right .fs-tooltip-caret { |
|
110 |
- top: 0; |
|
111 |
- left: -5px; |
|
112 |
- border-top: 5px solid transparent; |
|
113 |
- border-bottom: 5px solid transparent; |
|
114 |
- border-right: 5px solid #111111; |
|
115 |
-} |
|
116 |
-.fs-tooltip-left .fs-tooltip-content { |
|
117 |
- box-shadow: -1px 0 5px rgba(0, 0, 0, 0.35); |
|
118 |
-} |
|
119 |
-.fs-tooltip-left .fs-tooltip-caret { |
|
120 |
- top: 0; |
|
121 |
- right: -5px; |
|
122 |
- border-top: 5px solid transparent; |
|
123 |
- border-bottom: 5px solid transparent; |
|
124 |
- border-left: 5px solid #111111; |
|
125 |
-} |
|
126 |
-.fs-tooltip-top .fs-tooltip-caret, |
|
127 |
-.fs-tooltip-bottom .fs-tooltip-caret { |
|
128 |
- display: block; |
|
129 |
- float: none; |
|
130 |
- margin: 0 auto; |
|
131 |
-} |
|
132 |
-.fs-tooltip-top .fs-tooltip-content { |
|
133 |
- box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35); |
|
134 |
-} |
|
135 |
-.fs-tooltip-top .fs-tooltip-caret { |
|
136 |
- bottom: -5px; |
|
137 |
- left: 0; |
|
138 |
- border-left: 5px solid transparent; |
|
139 |
- border-right: 5px solid transparent; |
|
140 |
- border-top: 5px solid #111111; |
|
141 |
-} |
|
142 |
-.fs-tooltip-bottom .fs-tooltip-content { |
|
143 |
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35); |
|
144 |
-} |
|
145 |
-.fs-tooltip-bottom .fs-tooltip-caret { |
|
146 |
- top: -5px; |
|
147 |
- left: 0; |
|
148 |
- border-left: 5px solid transparent; |
|
149 |
- border-right: 5px solid transparent; |
|
150 |
- border-bottom: 5px solid #111111; |
|
151 |
-} |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,151 @@ |
1 |
+/*! formstone v0.8.35 [tooltip.css] 2015-12-28 | MIT License | formstone.it */ |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * @class |
|
5 |
+ * @name .fs-tooltip-element |
|
6 |
+ * @type element |
|
7 |
+ * @description Target elmement |
|
8 |
+ */ |
|
9 |
+/** |
|
10 |
+ * @class |
|
11 |
+ * @name .fs-tooltip |
|
12 |
+ * @type element |
|
13 |
+ * @description Base widget class |
|
14 |
+ */ |
|
15 |
+/** |
|
16 |
+ * @class |
|
17 |
+ * @name .fs-tooltip.fs-tooltip-visible |
|
18 |
+ * @type modifier |
|
19 |
+ * @description Inidcates visible state |
|
20 |
+ */ |
|
21 |
+/** |
|
22 |
+ * @class |
|
23 |
+ * @name .fs-tooltip.fs-tooltip-right |
|
24 |
+ * @type modifier |
|
25 |
+ * @description Inidcates right side display |
|
26 |
+ */ |
|
27 |
+/** |
|
28 |
+ * @class |
|
29 |
+ * @name .fs-tooltip.fs-tooltip-left |
|
30 |
+ * @type modifier |
|
31 |
+ * @description Inidcates left side display |
|
32 |
+ */ |
|
33 |
+/** |
|
34 |
+ * @class |
|
35 |
+ * @name .fs-tooltip.fs-tooltip-top |
|
36 |
+ * @type modifier |
|
37 |
+ * @description Inidcates top display |
|
38 |
+ */ |
|
39 |
+/** |
|
40 |
+ * @class |
|
41 |
+ * @name .fs-tooltip.fs-tooltip-bottom |
|
42 |
+ * @type modifier |
|
43 |
+ * @description Inidcates bottom display |
|
44 |
+ */ |
|
45 |
+.fs-tooltip { |
|
46 |
+ width: 1px; |
|
47 |
+ height: 1px; |
|
48 |
+ position: absolute; |
|
49 |
+ top: -999px; |
|
50 |
+ left: -999px; |
|
51 |
+ z-index: 10; |
|
52 |
+ opacity: 0; |
|
53 |
+ pointer-events: none; |
|
54 |
+ -webkit-transition: opacity 0.15s linear; |
|
55 |
+ transition: opacity 0.15s linear; |
|
56 |
+ /** |
|
57 |
+ * @class |
|
58 |
+ * @name .fs-tooltip-content |
|
59 |
+ * @type element |
|
60 |
+ * @description Tooltip content wrapper |
|
61 |
+ */ |
|
62 |
+ /** |
|
63 |
+ * @class |
|
64 |
+ * @name .fs-tooltip-caret |
|
65 |
+ * @type element |
|
66 |
+ * @description Tooltip caret |
|
67 |
+ */ |
|
68 |
+} |
|
69 |
+.fs-tooltip, |
|
70 |
+.fs-tooltip:after, |
|
71 |
+.fs-tooltip:before, |
|
72 |
+.fs-tooltip *, |
|
73 |
+.fs-tooltip *:after, |
|
74 |
+.fs-tooltip *:before { |
|
75 |
+ box-sizing: border-box; |
|
76 |
+ -webkit-transition: none; |
|
77 |
+ transition: none; |
|
78 |
+ -webkit-user-select: none !important; |
|
79 |
+ -moz-user-select: none !important; |
|
80 |
+ -ms-user-select: none !important; |
|
81 |
+ user-select: none !important; |
|
82 |
+} |
|
83 |
+.fs-tooltip-visible { |
|
84 |
+ opacity: 1; |
|
85 |
+} |
|
86 |
+.fs-tooltip-content { |
|
87 |
+ background: #111111; |
|
88 |
+ border-radius: 3px; |
|
89 |
+ color: #ffffff; |
|
90 |
+ display: block; |
|
91 |
+ float: left; |
|
92 |
+ font-size: 12px; |
|
93 |
+ margin: 0; |
|
94 |
+ padding: 10px 15px; |
|
95 |
+ position: relative; |
|
96 |
+ white-space: nowrap; |
|
97 |
+} |
|
98 |
+.fs-tooltip-caret { |
|
99 |
+ width: 0; |
|
100 |
+ height: 0; |
|
101 |
+ content: ''; |
|
102 |
+ display: block; |
|
103 |
+ margin: 0; |
|
104 |
+ position: absolute; |
|
105 |
+} |
|
106 |
+.fs-tooltip-right .fs-tooltip-content { |
|
107 |
+ box-shadow: 1px 0 5px rgba(0, 0, 0, 0.35); |
|
108 |
+} |
|
109 |
+.fs-tooltip-right .fs-tooltip-caret { |
|
110 |
+ top: 0; |
|
111 |
+ left: -5px; |
|
112 |
+ border-top: 5px solid transparent; |
|
113 |
+ border-bottom: 5px solid transparent; |
|
114 |
+ border-right: 5px solid #111111; |
|
115 |
+} |
|
116 |
+.fs-tooltip-left .fs-tooltip-content { |
|
117 |
+ box-shadow: -1px 0 5px rgba(0, 0, 0, 0.35); |
|
118 |
+} |
|
119 |
+.fs-tooltip-left .fs-tooltip-caret { |
|
120 |
+ top: 0; |
|
121 |
+ right: -5px; |
|
122 |
+ border-top: 5px solid transparent; |
|
123 |
+ border-bottom: 5px solid transparent; |
|
124 |
+ border-left: 5px solid #111111; |
|
125 |
+} |
|
126 |
+.fs-tooltip-top .fs-tooltip-caret, |
|
127 |
+.fs-tooltip-bottom .fs-tooltip-caret { |
|
128 |
+ display: block; |
|
129 |
+ float: none; |
|
130 |
+ margin: 0 auto; |
|
131 |
+} |
|
132 |
+.fs-tooltip-top .fs-tooltip-content { |
|
133 |
+ box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35); |
|
134 |
+} |
|
135 |
+.fs-tooltip-top .fs-tooltip-caret { |
|
136 |
+ bottom: -5px; |
|
137 |
+ left: 0; |
|
138 |
+ border-left: 5px solid transparent; |
|
139 |
+ border-right: 5px solid transparent; |
|
140 |
+ border-top: 5px solid #111111; |
|
141 |
+} |
|
142 |
+.fs-tooltip-bottom .fs-tooltip-content { |
|
143 |
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35); |
|
144 |
+} |
|
145 |
+.fs-tooltip-bottom .fs-tooltip-caret { |
|
146 |
+ top: -5px; |
|
147 |
+ left: 0; |
|
148 |
+ border-left: 5px solid transparent; |
|
149 |
+ border-right: 5px solid transparent; |
|
150 |
+ border-bottom: 5px solid #111111; |
|
151 |
+} |