@provoly/dashboard 0.19.8 → 0.19.9

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.
@@ -29,6 +29,7 @@ pry-add-edit-presentation {
29
29
  justify-content: space-between;
30
30
  align-items: center;
31
31
  gap: toRem(15);
32
+ padding-top: 0; // needed for pvy-frontend
32
33
 
33
34
  .a-btn {
34
35
  border-radius: 22px;
@@ -85,15 +86,3 @@ pry-add-edit-presentation {
85
86
  .a-presentation-title {
86
87
  padding: 10px;
87
88
  }
88
-
89
- .a-presentation__search {
90
- position: relative;
91
-
92
- .a-icon {
93
- position: absolute;
94
- right: 0.6875rem;
95
- bottom: 0.5625rem;
96
- opacity: 0.5;
97
- pointer-events: none;
98
- }
99
- }
@@ -2,19 +2,35 @@
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
+ &__search {
12
+ position: relative;
7
13
 
8
- div:first-child {
9
- margin-left: auto;
14
+ .a-form-field {
15
+ min-height: 10px;
16
+ }
17
+
18
+ .a-icon {
19
+ position: absolute;
20
+ right: 0.6875rem;
21
+ top: toRem(5);
22
+ opacity: 0.5;
23
+ pointer-events: none;
24
+ }
25
+ }
10
26
  }
11
- }
12
27
 
13
- .o-manifest-layout__content {
14
- height: 100%;
28
+ &__content {
29
+ height: 100%;
15
30
 
16
- .pointer {
17
- cursor: pointer;
31
+ .pointer {
32
+ cursor: pointer;
33
+ }
18
34
  }
19
35
  }
20
36
 
@@ -47,6 +63,17 @@
47
63
  flex-direction: column;
48
64
  align-items: stretch;
49
65
 
66
+ &:hover {
67
+ cursor: pointer;
68
+
69
+ .o-presentation__item__footer {
70
+ pry-icon {
71
+ visibility: visible;
72
+ opacity: 1;
73
+ }
74
+ }
75
+ }
76
+
50
77
  .a-tooltip {
51
78
  align-items: center;
52
79
  width: 100%;
@@ -105,6 +132,18 @@
105
132
  display: flex;
106
133
  align-content: center;
107
134
  justify-content: center;
135
+ font-size: toRem(14);
136
+
137
+ .a-btn {
138
+ margin-left: toRem(20); // needed for centering the footer text
139
+ }
140
+
141
+ pry-icon {
142
+ visibility: hidden;
143
+ opacity: 0;
144
+ transition: visibility 100ms linear , opacity 100ms linear;
145
+ margin-left: toRem(3);
146
+ }
108
147
  }
109
148
  }
110
149
  }
@@ -214,3 +253,7 @@ h1.a-presentation-title {
214
253
  top: toRem(6);
215
254
  right: toRem(10);
216
255
  }
256
+
257
+ .m-context-menu {
258
+ position: absolute;
259
+ }
@@ -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
  }