mashlib 2.1.4-test.2 → 2.1.4-test.4

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/dist/mash.css CHANGED
@@ -1,3 +1,84 @@
1
+ /* Styles extracted from manager.js */
2
+
3
+ .obj {
4
+ margin: 0.2em;
5
+ border: none;
6
+ padding: 0;
7
+ vertical-align: top;
8
+ }
9
+
10
+ .pred, .pred.internal {
11
+ /* Add any specific styles for predicate TDs here */
12
+ }
13
+
14
+ .iconTD {
15
+ margin: 0.2em;
16
+ border: none;
17
+ padding: 0;
18
+ vertical-align: top;
19
+ width: 0px;
20
+ }
21
+
22
+ .labelTD {
23
+ width: 100%;
24
+ }
25
+
26
+ .paneIconTray {
27
+ display: flex;
28
+ justify-content: flex-start;
29
+ align-items: center;
30
+ }
31
+
32
+ .paneShown {
33
+ width: 24px;
34
+ border-radius: 0.5em;
35
+ border-top: solid #222 1px;
36
+ border-left: solid #222 0.1em;
37
+ border-bottom: solid #eee 0.1em;
38
+ border-right: solid #eee 0.1em;
39
+ margin-left: 1em;
40
+ padding: 3px;
41
+ background-color: #ffd;
42
+ }
43
+
44
+ .paneHidden {
45
+ width: 24px;
46
+ border-radius: 0.5em;
47
+ margin-left: 1em;
48
+ padding: 3px;
49
+ }
50
+
51
+ .header {
52
+ display: flex;
53
+ justify-content: flex-start;
54
+ align-items: center;
55
+ flex-wrap: wrap;
56
+ }
57
+
58
+ .strongHeader {
59
+ font-size: 150%;
60
+ margin: 0 0.6em 0 0;
61
+ padding: 0.1em 0.4em;
62
+ }
63
+
64
+ .tableFullWidth {
65
+ width: 100%;
66
+ }
67
+
68
+ .placeholderTable {
69
+ width: 100%;
70
+ }
71
+
72
+ .tdFlex {
73
+ margin: 0.2em;
74
+ border: none;
75
+ padding: 0;
76
+ vertical-align: top;
77
+ display: flex;
78
+ justify-content: space-between;
79
+ flex-direction: row;
80
+ }
81
+
1
82
  /* CVCard.css */
2
83
  /* Note: Uses utilities: .section-title for cvOrg styling */
3
84
 
@@ -152,10 +233,6 @@
152
233
  /* ProfileView.css */
153
234
  /* Uses utilities: .section-bg, .text-center */
154
235
 
155
- .profileSection {
156
-
157
- }
158
-
159
236
  /* Horizontal layout for cards */
160
237
  .profile-grid .profileSection {
161
238
  width: 100%;
@@ -167,7 +244,7 @@
167
244
  }
168
245
 
169
246
  @media (min-width: 900px) {
170
- .profileSection {
247
+ .profile-grid .profileSection {
171
248
  margin-bottom: 0;
172
249
  }
173
250
  }
@@ -612,6 +689,11 @@
612
689
  background-color: transparent;
613
690
  }
614
691
 
692
+ /* this overrides a style coming from contacts-pane*/
693
+ .profile-form .individualPane {
694
+ box-shadow: none !important;
695
+ }
696
+
615
697
  /* Vertically center autocomplete input in .formFieldValue */
616
698
  .profile-form .formFieldValue > div[style*="flex-direction: row"] {
617
699
  align-items: center;