@provoly/dashboard 0.19.8 → 0.19.10

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.
@@ -2,19 +2,39 @@
2
2
 
3
3
  /* Organism - pry-presentation */
4
4
 
5
- .o-manifest-layout__toolbox {
6
- height: toRem(84);
5
+ .o-manifest-layout {
6
+ &__toolbox {
7
+ div:first-child {
8
+ margin-left: auto;
9
+ }
10
+
11
+ &.-u-hidden {
12
+ display: none;
13
+ }
14
+
15
+ &__search {
16
+ position: relative;
17
+
18
+ .a-form-field {
19
+ min-height: 10px;
20
+ }
7
21
 
8
- div:first-child {
9
- margin-left: auto;
22
+ .a-icon {
23
+ position: absolute;
24
+ right: 0.6875rem;
25
+ top: toRem(5);
26
+ opacity: 0.5;
27
+ pointer-events: none;
28
+ }
29
+ }
10
30
  }
11
- }
12
31
 
13
- .o-manifest-layout__content {
14
- height: 100%;
32
+ &__content {
33
+ height: 100%;
15
34
 
16
- .pointer {
17
- cursor: pointer;
35
+ .pointer {
36
+ cursor: pointer;
37
+ }
18
38
  }
19
39
  }
20
40
 
@@ -47,6 +67,17 @@
47
67
  flex-direction: column;
48
68
  align-items: stretch;
49
69
 
70
+ &:hover {
71
+ cursor: pointer;
72
+
73
+ .o-presentation__item__footer {
74
+ pry-icon {
75
+ visibility: visible;
76
+ opacity: 1;
77
+ }
78
+ }
79
+ }
80
+
50
81
  .a-tooltip {
51
82
  align-items: center;
52
83
  width: 100%;
@@ -105,6 +136,18 @@
105
136
  display: flex;
106
137
  align-content: center;
107
138
  justify-content: center;
139
+ font-size: toRem(14);
140
+
141
+ .a-btn {
142
+ margin-left: toRem(20); // needed for centering the footer text
143
+ }
144
+
145
+ pry-icon {
146
+ visibility: hidden;
147
+ opacity: 0;
148
+ transition: visibility 100ms linear , opacity 100ms linear;
149
+ margin-left: toRem(3);
150
+ }
108
151
  }
109
152
  }
110
153
  }
@@ -214,3 +257,7 @@ h1.a-presentation-title {
214
257
  top: toRem(6);
215
258
  right: toRem(10);
216
259
  }
260
+
261
+ .m-context-menu {
262
+ position: absolute;
263
+ }
@@ -25,12 +25,8 @@
25
25
  &__footer {
26
26
  border-top: 1px themed($theme-map, 'color', 'primary', 300) solid;
27
27
 
28
- .a-btn {
29
- &:hover,
30
- &:active {
31
- color: themed($theme-map, 'color', 'accent', 400);
32
- transition: color 100ms linear;
33
- }
28
+ pry-icon {
29
+ color: themed($theme-map, 'color', 'accent', 400);
34
30
  }
35
31
  }
36
32
  }