@opensearch-project/oui 1.22.1 → 1.23.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.
@@ -1157,193 +1157,172 @@
1157
1157
  * Modifications Copyright OpenSearch Contributors. See
1158
1158
  * GitHub history for details.
1159
1159
  */
1160
- /*!
1161
- * SPDX-License-Identifier: Apache-2.0
1162
- *
1163
- * The OpenSearch Contributors require contributions made to
1164
- * this file be licensed under the Apache-2.0 license or a
1165
- * compatible open source license.
1166
- *
1167
- * Modifications Copyright OpenSearch Contributors. See
1168
- * GitHub history for details.
1169
- */
1170
- /**
1171
- * Adapted from Eric Meyer's reset (http://meyerweb.com/eric/tools/css/reset/, v2.0 | 20110126).
1172
- *
1173
- */
1174
- *, *:before, *:after {
1175
- box-sizing: border-box;
1176
- }
1177
-
1178
- html, body, div, span, applet, object, iframe,
1179
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
1180
- a, abbr, acronym, address, big, cite, code,
1181
- del, dfn, em, img, ins, kbd, q, s, samp,
1182
- small, strike, strong, sub, sup, tt, var,
1183
- b, u, i, center,
1184
- dl, dt, dd, ol, ul, li,
1185
- fieldset, form, label, legend,
1186
- table, caption, tbody, tfoot, thead, tr, th, td,
1187
- article, aside, canvas, details, embed,
1188
- figure, figcaption, footer, header, hgroup,
1189
- menu, nav, output, ruby, section, summary,
1190
- time, mark, audio, video {
1191
- margin: 0;
1192
- padding: 0;
1193
- border: none;
1194
- vertical-align: baseline;
1195
- }
1196
-
1197
- code, pre, kbd, samp {
1198
- font-family: var(--oui-code-font-family);
1199
- line-height: 1.5;
1200
- }
1201
-
1202
- h1, h2, h3, h4, h5, h6, p {
1203
- font-family: inherit;
1204
- font-weight: inherit;
1205
- font-size: inherit;
1206
- }
1207
-
1208
- input, textarea, select, button {
1209
- font-family: var(--oui-font-family);
1210
- }
1211
-
1212
- em {
1213
- font-style: italic;
1214
- }
1215
-
1216
- strong {
1217
- font-weight: 700;
1218
- }
1219
-
1220
- /* HTML5 display-role reset for older browsers */
1221
- article, aside, details, figcaption, figure,
1222
- footer, header, hgroup, menu, nav, section {
1223
- display: block;
1224
- }
1225
-
1226
- html {
1227
- font-family: var(--oui-font-family);
1228
- font-weight: 400;
1229
- -webkit-text-size-adjust: 100%;
1230
- -ms-text-size-adjust: 100%;
1231
- -webkit-font-kerning: normal;
1232
- font-kerning: normal;
1233
- font-size: 18px;
1234
- color: #2A3947;
1235
- height: 100%;
1236
- background-color: #F0F2F4;
1237
- }
1238
-
1239
- body {
1240
- line-height: 1;
1241
- }
1242
-
1243
- *:focus {
1244
- outline: none;
1245
- }
1246
- *:focus::-moz-focus-inner {
1247
- border: none;
1248
- }
1249
- *:focus:-moz-focusring {
1250
- outline: none;
1251
- }
1252
-
1253
- a {
1254
- text-decoration: none;
1255
- color: #07827E;
1256
- }
1257
- a:hover {
1258
- text-decoration: none;
1259
- }
1260
- a:focus {
1261
- text-decoration: none;
1262
- outline: none;
1263
- }
1264
-
1265
- a:hover, button, [role=button] {
1266
- cursor: pointer;
1267
- }
1268
-
1269
- input {
1270
- margin: 0;
1271
- padding: 0;
1272
- }
1273
- input:disabled {
1274
- opacity: 1; /* required on iOS */
1275
- }
1276
-
1277
- button {
1278
- background: none;
1279
- border: none;
1280
- padding: 0;
1281
- margin: 0;
1282
- outline: none;
1283
- font-size: inherit;
1284
- color: inherit;
1285
- border-radius: 0;
1286
- }
1287
- button:hover {
1288
- cursor: pointer;
1289
- }
1290
-
1291
- ol, ul {
1292
- list-style: none;
1293
- }
1294
-
1295
- blockquote, q {
1296
- quotes: none;
1297
- }
1298
-
1299
- blockquote:before, blockquote:after,
1300
- q:before, q:after {
1301
- content: "";
1302
- content: none;
1303
- }
1304
-
1305
- table {
1306
- border-collapse: collapse;
1307
- border-spacing: 0;
1308
- }
1309
-
1310
- hr {
1311
- margin: 0;
1312
- }
1313
-
1314
- fieldset {
1315
- min-inline-size: auto;
1316
- }
1317
-
1318
- /*!
1319
- * SPDX-License-Identifier: Apache-2.0
1320
- *
1321
- * The OpenSearch Contributors require contributions made to
1322
- * this file be licensed under the Apache-2.0 license or a
1323
- * compatible open source license.
1324
- *
1325
- * Modifications Copyright OpenSearch Contributors. See
1326
- * GitHub history for details.
1327
- */
1328
- svg text {
1329
- letter-spacing: normal !important;
1330
- }
1331
-
1332
- /*!
1333
- * SPDX-License-Identifier: Apache-2.0
1334
- *
1335
- * The OpenSearch Contributors require contributions made to
1336
- * this file be licensed under the Apache-2.0 license or a
1337
- * compatible open source license.
1338
- *
1339
- * Modifications Copyright OpenSearch Contributors. See
1340
- * GitHub history for details.
1341
- */
1342
- html {
1343
- scrollbar-width: thin;
1344
- scrollbar-color: rgba(90, 104, 117, 0.5) transparent;
1160
+ @layer theme {
1161
+ /*!
1162
+ * SPDX-License-Identifier: Apache-2.0
1163
+ *
1164
+ * The OpenSearch Contributors require contributions made to
1165
+ * this file be licensed under the Apache-2.0 license or a
1166
+ * compatible open source license.
1167
+ *
1168
+ * Modifications Copyright OpenSearch Contributors. See
1169
+ * GitHub history for details.
1170
+ */
1171
+ /**
1172
+ * Adapted from Eric Meyer's reset (http://meyerweb.com/eric/tools/css/reset/, v2.0 | 20110126).
1173
+ *
1174
+ */
1175
+ *, *:before, *:after {
1176
+ box-sizing: border-box;
1177
+ }
1178
+ html, body, div, span, applet, object, iframe,
1179
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
1180
+ a, abbr, acronym, address, big, cite, code,
1181
+ del, dfn, em, img, ins, kbd, q, s, samp,
1182
+ small, strike, strong, sub, sup, tt, var,
1183
+ b, u, i, center,
1184
+ dl, dt, dd, ol, ul, li,
1185
+ fieldset, form, label, legend,
1186
+ table, caption, tbody, tfoot, thead, tr, th, td,
1187
+ article, aside, canvas, details, embed,
1188
+ figure, figcaption, footer, header, hgroup,
1189
+ menu, nav, output, ruby, section, summary,
1190
+ time, mark, audio, video {
1191
+ margin: 0;
1192
+ padding: 0;
1193
+ border: none;
1194
+ vertical-align: baseline;
1195
+ }
1196
+ code, pre, kbd, samp {
1197
+ font-family: var(--oui-code-font-family);
1198
+ line-height: 1.5;
1199
+ }
1200
+ h1, h2, h3, h4, h5, h6, p {
1201
+ font-family: inherit;
1202
+ font-weight: inherit;
1203
+ font-size: inherit;
1204
+ }
1205
+ input, textarea, select, button {
1206
+ font-family: var(--oui-font-family);
1207
+ }
1208
+ em {
1209
+ font-style: italic;
1210
+ }
1211
+ strong {
1212
+ font-weight: 700;
1213
+ }
1214
+ /* HTML5 display-role reset for older browsers */
1215
+ article, aside, details, figcaption, figure,
1216
+ footer, header, hgroup, menu, nav, section {
1217
+ display: block;
1218
+ }
1219
+ html {
1220
+ font-family: var(--oui-font-family);
1221
+ font-weight: 400;
1222
+ -webkit-text-size-adjust: 100%;
1223
+ -ms-text-size-adjust: 100%;
1224
+ -webkit-font-kerning: normal;
1225
+ font-kerning: normal;
1226
+ font-size: 18px;
1227
+ color: #2A3947;
1228
+ height: 100%;
1229
+ background-color: #F0F2F4;
1230
+ }
1231
+ body {
1232
+ line-height: 1;
1233
+ }
1234
+ *:focus {
1235
+ outline: none;
1236
+ }
1237
+ *:focus::-moz-focus-inner {
1238
+ border: none;
1239
+ }
1240
+ *:focus:-moz-focusring {
1241
+ outline: none;
1242
+ }
1243
+ a {
1244
+ text-decoration: none;
1245
+ color: #07827E;
1246
+ }
1247
+ a:hover {
1248
+ text-decoration: none;
1249
+ }
1250
+ a:focus {
1251
+ text-decoration: none;
1252
+ outline: none;
1253
+ }
1254
+ a:hover, button, [role=button] {
1255
+ cursor: pointer;
1256
+ }
1257
+ input {
1258
+ margin: 0;
1259
+ padding: 0;
1260
+ }
1261
+ input:disabled {
1262
+ opacity: 1; /* required on iOS */
1263
+ }
1264
+ button {
1265
+ background: none;
1266
+ border: none;
1267
+ padding: 0;
1268
+ margin: 0;
1269
+ outline: none;
1270
+ font-size: inherit;
1271
+ color: inherit;
1272
+ border-radius: 0;
1273
+ }
1274
+ button:hover {
1275
+ cursor: pointer;
1276
+ }
1277
+ ol, ul {
1278
+ list-style: none;
1279
+ }
1280
+ blockquote, q {
1281
+ quotes: none;
1282
+ }
1283
+ blockquote:before, blockquote:after,
1284
+ q:before, q:after {
1285
+ content: "";
1286
+ content: none;
1287
+ }
1288
+ table {
1289
+ border-collapse: collapse;
1290
+ border-spacing: 0;
1291
+ }
1292
+ hr {
1293
+ margin: 0;
1294
+ }
1295
+ fieldset {
1296
+ min-inline-size: auto;
1297
+ }
1298
+ /*!
1299
+ * SPDX-License-Identifier: Apache-2.0
1300
+ *
1301
+ * The OpenSearch Contributors require contributions made to
1302
+ * this file be licensed under the Apache-2.0 license or a
1303
+ * compatible open source license.
1304
+ *
1305
+ * Modifications Copyright OpenSearch Contributors. See
1306
+ * GitHub history for details.
1307
+ */
1308
+ svg text {
1309
+ letter-spacing: normal !important;
1310
+ }
1311
+ /*!
1312
+ * SPDX-License-Identifier: Apache-2.0
1313
+ *
1314
+ * The OpenSearch Contributors require contributions made to
1315
+ * this file be licensed under the Apache-2.0 license or a
1316
+ * compatible open source license.
1317
+ *
1318
+ * Modifications Copyright OpenSearch Contributors. See
1319
+ * GitHub history for details.
1320
+ */
1321
+ html {
1322
+ scrollbar-width: thin;
1323
+ scrollbar-color: rgba(90, 104, 117, 0.5) transparent;
1324
+ }
1345
1325
  }
1346
-
1347
1326
  /*
1348
1327
  * Copyright OpenSearch Contributors
1349
1328
  * SPDX-License-Identifier: Apache-2.0