wiki-plugin-wmap 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/wmap.css CHANGED
@@ -1,34 +1,31 @@
1
1
  .wmap {
2
-
3
2
  position: relative;
3
+ }
4
+ .wmap .actions {
5
+ background-color: #fff;
6
+ opacity: 0;
7
+ transition: all 300ms;
8
+ position: absolute;
9
+ bottom: 0;
10
+ right: 0;
11
+ padding: 0 2px;
12
+ }
13
+ .wmap .actions img {
14
+ height: 18px;
15
+ width: 18px;
16
+ }
17
+ .wmap menu {
18
+ list-style: none;
19
+ padding: 0;
20
+ }
21
+ .wmap menu li { display: inline-block; }
22
+ .wmap:hover .actions {
23
+ opacity: 1;
24
+ }
25
+ .wmap img {
26
+ width: 100%;
27
+ }
4
28
 
5
- .actions {
6
- background-color: #fff;
7
- opacity: 0;
8
- transition: all 300ms;
9
- position: absolute;
10
- bottom: 0;
11
- right: 0;
12
- padding: 0 2px;
13
-
14
- img {
15
- height: 18px;
16
- width: 18px;
17
- }
18
- }
19
-
20
- menu {
21
- list-style: none;
22
- padding: 0;
23
-
24
- li { display: inline-block; }
25
- }
26
-
27
- &:hover .actions {
28
- opacity: 1;
29
- }
30
-
31
- img {
32
- width: 100%;
33
- }
29
+ .wardley-map.thumbnail text:nth-of-type(n + 7) {
30
+ cursor: pointer;
34
31
  }