@urbanos/react-discovery-ui 2.1.57 → 2.1.58
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.
|
@@ -56,6 +56,11 @@ api-example {
|
|
|
56
56
|
white-space: nowrap;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
.example-parameters {
|
|
60
|
+
max-height: 50vh;
|
|
61
|
+
overflow: auto;
|
|
62
|
+
}
|
|
63
|
+
|
|
59
64
|
.example-table {
|
|
60
65
|
border-collapse: collapse;
|
|
61
66
|
width: 100%
|
|
@@ -81,4 +86,4 @@ api-example {
|
|
|
81
86
|
.required-marker {
|
|
82
87
|
text-align: center;
|
|
83
88
|
}
|
|
84
|
-
}
|
|
89
|
+
}
|
|
@@ -131,7 +131,7 @@ var _default = exports.default = /*#__PURE__*/function (_Component) {
|
|
|
131
131
|
}, /*#__PURE__*/_react.default.createElement(_reactTabs.TabList, {
|
|
132
132
|
className: "header"
|
|
133
133
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
134
|
-
className: "tab-area"
|
|
134
|
+
className: "tab-area header-tabs"
|
|
135
135
|
}, /*#__PURE__*/_react.default.createElement(_reactTabs.Tab, {
|
|
136
136
|
"data-testid": "dataset-details"
|
|
137
137
|
}, "Dataset Details"), /*#__PURE__*/_react.default.createElement(_reactTabs.Tab, {
|
|
@@ -105,6 +105,10 @@ dataset-view {
|
|
|
105
105
|
justify-content: space-between;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
.header-tabs {
|
|
109
|
+
display: none !important;
|
|
110
|
+
}
|
|
111
|
+
|
|
108
112
|
.tab-area {
|
|
109
113
|
font-size: small;
|
|
110
114
|
}
|
|
@@ -127,8 +131,8 @@ dataset-view {
|
|
|
127
131
|
|
|
128
132
|
.mobile-tab-dropdown {
|
|
129
133
|
position: absolute;
|
|
130
|
-
top: calc(100%
|
|
131
|
-
left:
|
|
134
|
+
top: calc(100% - 28px);
|
|
135
|
+
left: 34px;
|
|
132
136
|
z-index: 20;
|
|
133
137
|
background: white;
|
|
134
138
|
border: 1px solid $light-grey;
|
|
@@ -143,5 +147,10 @@ dataset-view {
|
|
|
143
147
|
border: 0;
|
|
144
148
|
background: white;
|
|
145
149
|
}
|
|
150
|
+
|
|
151
|
+
.mobile-tab-dropdown button:hover {
|
|
152
|
+
background: $super-light-gray;
|
|
153
|
+
cursor: pointer;
|
|
154
|
+
}
|
|
146
155
|
}
|
|
147
156
|
}
|