architwin 1.14.7 → 1.14.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.
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/i18n.js +19 -1
- package/lib/atwinui/components/toolbar/modelControlsPane.js +1 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.d.ts +24 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.js +754 -211
- package/lib/atwinui/components/toolbar/spacePartition/roomTreePane.d.ts +7 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomTreePane.js +104 -9
- package/lib/atwinui/events.js +36 -5
- package/lib/loaders/polydrawerLoader.d.ts +13 -3
- package/lib/loaders/polydrawerLoader.js +329 -55
- package/lib/math/geometry.d.ts +3 -2
- package/lib/math/geometry.js +23 -9
- package/lib/types.d.ts +30 -0
- package/lib/types.js +1 -0
- package/package.json +1 -1
- package/static/atwinui.css +252 -233
- package/static/utility.css +729 -277
package/static/atwinui.css
CHANGED
|
@@ -1307,7 +1307,7 @@
|
|
|
1307
1307
|
|
|
1308
1308
|
/* Room */
|
|
1309
1309
|
|
|
1310
|
-
.
|
|
1310
|
+
.at_empty_display {
|
|
1311
1311
|
display: var(--container-display);
|
|
1312
1312
|
justify-content: center;
|
|
1313
1313
|
align-items: center;
|
|
@@ -1330,7 +1330,8 @@
|
|
|
1330
1330
|
|
|
1331
1331
|
.at_undo_btn,
|
|
1332
1332
|
.at_redo_btn,
|
|
1333
|
-
.at_draw_partition_btn
|
|
1333
|
+
.at_draw_partition_btn,
|
|
1334
|
+
.at_add_window_door_btn {
|
|
1334
1335
|
background-color: black;
|
|
1335
1336
|
border: solid white 2px;
|
|
1336
1337
|
font-size: smaller;
|
|
@@ -1342,7 +1343,8 @@
|
|
|
1342
1343
|
}
|
|
1343
1344
|
|
|
1344
1345
|
|
|
1345
|
-
.at_draw_partition_btn
|
|
1346
|
+
.at_draw_partition_btn,
|
|
1347
|
+
.at_add_window_door_btn {
|
|
1346
1348
|
flex-grow: 2;
|
|
1347
1349
|
}
|
|
1348
1350
|
|
|
@@ -1350,7 +1352,8 @@
|
|
|
1350
1352
|
font-size: x-small;
|
|
1351
1353
|
}
|
|
1352
1354
|
|
|
1353
|
-
.at_draw_partition_btn_active
|
|
1355
|
+
.at_draw_partition_btn_active,
|
|
1356
|
+
.at_add_window_door_btn_active {
|
|
1354
1357
|
background-color: var(--bg-accent);
|
|
1355
1358
|
border: solid white 2px;
|
|
1356
1359
|
font-size: smaller;
|
|
@@ -1359,24 +1362,6 @@
|
|
|
1359
1362
|
flex-grow: 2;
|
|
1360
1363
|
}
|
|
1361
1364
|
|
|
1362
|
-
.at_partition_list_container {
|
|
1363
|
-
display: var(--container-display);
|
|
1364
|
-
border-radius: var(--border-radius);
|
|
1365
|
-
background-color: black;
|
|
1366
|
-
flex-direction: column;
|
|
1367
|
-
padding: 8px 6px 8px 6px;
|
|
1368
|
-
min-height: 22rem;
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
.at_partition_item_container {
|
|
1372
|
-
display: var(--container-display);
|
|
1373
|
-
flex-direction: column;
|
|
1374
|
-
gap: 4px;
|
|
1375
|
-
margin-bottom: 0.5rem;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
.at_face_title,
|
|
1379
|
-
.at_partition_title,
|
|
1380
1365
|
.at_converted_coordinates_title {
|
|
1381
1366
|
display: var(--container-display);
|
|
1382
1367
|
background-color: hsla(0,0%,19%,1);
|
|
@@ -1391,65 +1376,6 @@
|
|
|
1391
1376
|
padding-right: 18px;
|
|
1392
1377
|
}
|
|
1393
1378
|
|
|
1394
|
-
.at_face_title .mdi-chevron-left {
|
|
1395
|
-
cursor: pointer;
|
|
1396
|
-
background-color: hsla(0, 3%, 6%, 0.8);
|
|
1397
|
-
line-height: 1;
|
|
1398
|
-
padding: 2px;
|
|
1399
|
-
border-radius: 4px;
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
.at_partition_item {
|
|
1403
|
-
display: var(--container-display);
|
|
1404
|
-
background-color: hsla(0,0%,19%,1);
|
|
1405
|
-
border-radius: 4px;
|
|
1406
|
-
justify-content: space-between;
|
|
1407
|
-
align-items: center;
|
|
1408
|
-
padding: 2px 5px 2px 5px;
|
|
1409
|
-
margin: 0 4px 0 4px;
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
|
-
.at_partition_name {
|
|
1413
|
-
display: flex;
|
|
1414
|
-
background-color: hsla(0, 3%, 6%, 0.8);
|
|
1415
|
-
border-radius: 4px;
|
|
1416
|
-
justify-content: space-between;
|
|
1417
|
-
flex: 1;
|
|
1418
|
-
padding: 0 5px 0 5px;
|
|
1419
|
-
margin: 0 20px 0 20px;
|
|
1420
|
-
font-size: 12px;
|
|
1421
|
-
font-family: Arial, sans-serif;
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.at_icon_left {
|
|
1425
|
-
line-height: 1;
|
|
1426
|
-
background-color: hsla(173,75%,58%,1);
|
|
1427
|
-
color: black;
|
|
1428
|
-
border-radius: 4px;
|
|
1429
|
-
padding: 1px;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
|
-
.at_icon_right {
|
|
1433
|
-
cursor: pointer;
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
.at_face_vertex_container,
|
|
1437
|
-
.at_coordinaes_container {
|
|
1438
|
-
display: flex;
|
|
1439
|
-
flex-direction: column;
|
|
1440
|
-
gap: 4px;
|
|
1441
|
-
padding: 0px;
|
|
1442
|
-
margin-top: 4px;
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
.at_face_vertex_item {
|
|
1446
|
-
display: var(--container-display);
|
|
1447
|
-
background-color: hsla(0,0%,19%,1);
|
|
1448
|
-
flex-direction: column;
|
|
1449
|
-
border-radius: 4px;
|
|
1450
|
-
margin: 0px 4px 0px 4px;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
1379
|
.at_face_item {
|
|
1454
1380
|
display: var(--container-display);
|
|
1455
1381
|
border-radius: 4px;
|
|
@@ -1463,96 +1389,21 @@
|
|
|
1463
1389
|
background-color: hsla(220, 20%, 25%, 1);
|
|
1464
1390
|
}
|
|
1465
1391
|
|
|
1466
|
-
.
|
|
1467
|
-
background-color: hsla(0, 3%, 6%, 0.8);
|
|
1468
|
-
border-radius: 4px;
|
|
1469
|
-
cursor: pointer;
|
|
1470
|
-
margin: 2px;
|
|
1471
|
-
font-size: 12px;
|
|
1472
|
-
font-family: Arial, sans-serif;
|
|
1473
|
-
text-align: center;
|
|
1474
|
-
width:100px;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
.at_face_icon_left {
|
|
1478
|
-
display: inline-block;
|
|
1479
|
-
line-height: 1;
|
|
1480
|
-
background-color: hsla(173,75%,58%,1);
|
|
1481
|
-
color: black;
|
|
1482
|
-
border-radius: 4px;
|
|
1483
|
-
padding: 2px;
|
|
1484
|
-
cursor: default;
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
.at_face_icon_right {
|
|
1488
|
-
cursor: pointer;
|
|
1489
|
-
}
|
|
1490
|
-
|
|
1491
|
-
.at_face_icon_right:hover {
|
|
1492
|
-
color: var(--bg-accent-azusa)
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
.at_face_icon_rotate_90 {
|
|
1496
|
-
display: inline-block;
|
|
1497
|
-
transform: rotate(90deg);
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
.at_face_icon_rotate_180 {
|
|
1501
|
-
display: inline-block;
|
|
1502
|
-
transform: rotate(180deg);
|
|
1503
|
-
}
|
|
1504
|
-
|
|
1505
|
-
.at_face_icon_rotate_270 {
|
|
1506
|
-
display: inline-block;
|
|
1507
|
-
transform: rotate(270deg);
|
|
1508
|
-
}
|
|
1509
|
-
|
|
1510
|
-
.at_edit_name {
|
|
1511
|
-
display: none;
|
|
1512
|
-
flex-direction: column;
|
|
1513
|
-
align-items: center;
|
|
1514
|
-
justify-content: center;
|
|
1515
|
-
padding-bottom: 6px;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
.at_edit_name_text {
|
|
1392
|
+
.at_edit_name, .at_edit_material {
|
|
1519
1393
|
display: flex;
|
|
1520
|
-
font-family: Arial, sans-serif;
|
|
1521
|
-
font-size: 10px;
|
|
1522
|
-
text-align: center;
|
|
1523
|
-
cursor: pointer;
|
|
1524
|
-
gap: 5px;
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
.at_edit_name_input {
|
|
1528
|
-
display: none;
|
|
1529
1394
|
align-items: center;
|
|
1530
1395
|
padding-bottom: 4px;
|
|
1396
|
+
width: 100%;
|
|
1531
1397
|
}
|
|
1532
1398
|
|
|
1533
|
-
.
|
|
1534
|
-
background-color: hsla(0,0%,19%,1);
|
|
1535
|
-
font-family: Arial, sans-serif;
|
|
1536
|
-
font-size: 10px;
|
|
1537
|
-
box-sizing: border-box;
|
|
1538
|
-
text-align: center;
|
|
1539
|
-
color: white;
|
|
1540
|
-
border:none;
|
|
1541
|
-
border-bottom: 1px solid;
|
|
1542
|
-
outline: none;
|
|
1543
|
-
padding-bottom: 2px;
|
|
1544
|
-
height: 20px;
|
|
1545
|
-
max-width: 85px;
|
|
1546
|
-
}
|
|
1547
|
-
|
|
1548
|
-
.at_edit_partition_name_input {
|
|
1399
|
+
.at_edit_name_input, .at_edit_material_input {
|
|
1549
1400
|
display:flex;
|
|
1550
|
-
background-color:
|
|
1401
|
+
background-color: inherit;
|
|
1551
1402
|
font-family: Arial, sans-serif;
|
|
1552
1403
|
font-size: 10px;
|
|
1553
1404
|
box-sizing: border-box;
|
|
1554
|
-
color: white;
|
|
1555
1405
|
border:none;
|
|
1406
|
+
color:white;
|
|
1556
1407
|
border-bottom: 1px solid;
|
|
1557
1408
|
outline: none;
|
|
1558
1409
|
padding-bottom: 2px;
|
|
@@ -1560,7 +1411,10 @@
|
|
|
1560
1411
|
width: 100%;
|
|
1561
1412
|
}
|
|
1562
1413
|
|
|
1563
|
-
.
|
|
1414
|
+
.at_edit_name .mdi-check,
|
|
1415
|
+
.at_edit_name .mdi-pencil,
|
|
1416
|
+
.at_edit_material .mdi-check,
|
|
1417
|
+
.at_edit_material .mdi-pencil {
|
|
1564
1418
|
display: inline-flex;
|
|
1565
1419
|
align-items: center;
|
|
1566
1420
|
cursor: pointer;
|
|
@@ -1569,78 +1423,8 @@
|
|
|
1569
1423
|
padding-bottom: 3px;
|
|
1570
1424
|
}
|
|
1571
1425
|
|
|
1572
|
-
.at_vertex_list {
|
|
1573
|
-
display: var(--container-display);
|
|
1574
|
-
flex-direction: column;
|
|
1575
|
-
border-radius: 4px;
|
|
1576
|
-
margin-bottom: 6px;
|
|
1577
|
-
padding-top: 6px;
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
|
-
.at_vertex_list.show {
|
|
1581
|
-
display: var(--container-display);
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
.at_vertex_item {
|
|
1585
|
-
display: var(--container-display);
|
|
1586
|
-
background-color: hsla(0, 3%, 6%, 0.8);
|
|
1587
|
-
border-radius: 4px;
|
|
1588
|
-
flex-direction: row;
|
|
1589
|
-
justify-content: space-between;
|
|
1590
|
-
align-items: center;
|
|
1591
|
-
padding: 2px 5px 2px 5px;
|
|
1592
|
-
margin: 0px 14px 4px 15px;
|
|
1593
|
-
}
|
|
1594
|
-
|
|
1595
|
-
.at_vertex_item.selected {
|
|
1596
|
-
background-color: hsla(220, 25%, 25%, 1)
|
|
1597
|
-
}
|
|
1598
|
-
|
|
1599
|
-
.at_vertex_center {
|
|
1600
|
-
display: flex;
|
|
1601
|
-
flex-direction: row;
|
|
1602
|
-
justify-content: space-between;
|
|
1603
|
-
align-items: center;
|
|
1604
|
-
gap: 6px;
|
|
1605
|
-
}
|
|
1606
|
-
|
|
1607
|
-
.at_vertex_distance {
|
|
1608
|
-
background-color:hsla(0,0%,100%,0.8) ;
|
|
1609
|
-
border-radius: 4px;
|
|
1610
|
-
color: black;
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
|
-
.at_vertex_name,
|
|
1614
|
-
.at_vertex_distance {
|
|
1615
|
-
font-size: 12px;
|
|
1616
|
-
font-family: Arial, sans-serif;
|
|
1617
|
-
white-space: nowrap;
|
|
1618
|
-
text-align: center;
|
|
1619
|
-
width: 50px;
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
.at_vertex_icon_left {
|
|
1623
|
-
display: inline-block;
|
|
1624
|
-
line-height: 1;
|
|
1625
|
-
background-color: hsla(71,96%,62%,1);
|
|
1626
|
-
color: black;
|
|
1627
|
-
border-radius: 4px;
|
|
1628
|
-
padding: 2px;
|
|
1629
|
-
cursor: default;
|
|
1630
|
-
margin: 2px;
|
|
1631
|
-
cursor: pointer;
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
.at_vertex_icon_right {
|
|
1635
|
-
cursor: pointer;
|
|
1636
|
-
}
|
|
1637
|
-
|
|
1638
|
-
.at_vertex_icon_right:hover {
|
|
1639
|
-
color: var(--bg-accent-azusa)
|
|
1640
|
-
}
|
|
1641
|
-
|
|
1642
1426
|
.at_invisible {
|
|
1643
|
-
|
|
1427
|
+
visibility: hidden;
|
|
1644
1428
|
pointer-events: none;
|
|
1645
1429
|
cursor: default;
|
|
1646
1430
|
}
|
|
@@ -2383,10 +2167,245 @@ dialog#at-screen-share-request-modal::backdrop {
|
|
|
2383
2167
|
background-color: var(--bg-accent) !important;
|
|
2384
2168
|
}
|
|
2385
2169
|
|
|
2170
|
+
|
|
2171
|
+
/* Generic Elements */
|
|
2172
|
+
|
|
2173
|
+
.at_section {
|
|
2174
|
+
display: var(--container-display);
|
|
2175
|
+
border-radius: var(--border-radius);
|
|
2176
|
+
background-color: black;
|
|
2177
|
+
flex-direction: column;
|
|
2178
|
+
padding: 8px 6px 8px 6px;
|
|
2179
|
+
min-height: 22rem;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.at_section .at_title {
|
|
2183
|
+
display: var(--container-display);
|
|
2184
|
+
background-color: hsla(0,0%,19%,1);
|
|
2185
|
+
border-radius: 4px;
|
|
2186
|
+
align-items: center;
|
|
2187
|
+
justify-content: space-between;
|
|
2188
|
+
margin-bottom: 10px;
|
|
2189
|
+
font-size: 15px;
|
|
2190
|
+
font-weight: normal;
|
|
2191
|
+
font-family: Arial, sans-serif;
|
|
2192
|
+
padding-left: 2px;
|
|
2193
|
+
padding-right: 18px;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.at_section .at_title .at_back_btn{
|
|
2197
|
+
cursor: pointer;
|
|
2198
|
+
background-color: hsla(0, 3%, 6%, 0.8);
|
|
2199
|
+
line-height: 1;
|
|
2200
|
+
padding: 2px;
|
|
2201
|
+
border-radius: 4px;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
.at_section .at_body {
|
|
2205
|
+
display: var(--container-display);
|
|
2206
|
+
flex-direction: column;
|
|
2207
|
+
gap: 4px;
|
|
2208
|
+
margin-bottom: 0.5rem;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
.at_section .at_body .at_container{
|
|
2212
|
+
display: block;
|
|
2213
|
+
background-color: hsla(0,0%,19%,1);
|
|
2214
|
+
flex-direction: column;
|
|
2215
|
+
border-radius: 4px;
|
|
2216
|
+
padding: 0px;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
.at_section .at_body .at_item {
|
|
2220
|
+
display: var(--container-display);
|
|
2221
|
+
background-color: hsla(0,0%,19%,1);
|
|
2222
|
+
border-radius: 4px;
|
|
2223
|
+
justify-content: space-between;
|
|
2224
|
+
align-items: center;
|
|
2225
|
+
padding: 2px 5px 2px 5px;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
.at_section .at_body .at_item .at_subitem_left {
|
|
2229
|
+
line-height: 1;
|
|
2230
|
+
background-color: hsla(173,75%,58%,1);
|
|
2231
|
+
color: black;
|
|
2232
|
+
border-radius: 4px;
|
|
2233
|
+
padding: 1px;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.at_section .at_body .at_item .at_subitem_right {
|
|
2237
|
+
cursor: pointer;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.at_section .at_body .at_item .at_subitem_right:hover {
|
|
2241
|
+
color: var(--bg-accent-azusa)
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.at_section .at_body .at_item .at_name {
|
|
2245
|
+
display: flex;
|
|
2246
|
+
background-color: hsla(0, 3%, 6%, 0.8);
|
|
2247
|
+
border-radius: 4px;
|
|
2248
|
+
justify-content: space-between;
|
|
2249
|
+
flex: 1;
|
|
2250
|
+
padding: 0 5px 0 5px;
|
|
2251
|
+
margin: 0 20px 0 20px;
|
|
2252
|
+
font-size: 12px;
|
|
2253
|
+
font-family: Arial, sans-serif;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.at_section .at_body .at_item.selected {
|
|
2257
|
+
background-color: hsla(220, 20%, 25%, 1);
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
.at_dropdown_item_container {
|
|
2261
|
+
display: var(--container-display);
|
|
2262
|
+
flex-direction: column;
|
|
2263
|
+
border-radius: 4px;
|
|
2264
|
+
padding: 4px;
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
.at_dropdown_item_container.show {
|
|
2268
|
+
display: var(--container-display);
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.at_section .at_body .at_container .at_dropdown_item_container .at_dropdown_item {
|
|
2272
|
+
display: var(--container-display);
|
|
2273
|
+
background-color: hsla(0, 3%, 6%, 0.8);
|
|
2274
|
+
border-radius: 4px;
|
|
2275
|
+
flex-direction: column;
|
|
2276
|
+
justify-content: space-between;
|
|
2277
|
+
align-items: center;
|
|
2278
|
+
padding: 2px 2px 2px 2px;
|
|
2279
|
+
margin: 0px 4px 2px 4px;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.at_section .at_body .at_container .at_dropdown_item_container .at_dropdown_item.selected {
|
|
2283
|
+
background-color: hsla(220, 25%, 25%, 1)
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.at_dropdown_item .at_subitem_left {
|
|
2287
|
+
display: inline-block;
|
|
2288
|
+
line-height: 1;
|
|
2289
|
+
background-color: hsla(71,96%,62%,1);
|
|
2290
|
+
color: black;
|
|
2291
|
+
border-radius: 4px;
|
|
2292
|
+
padding: 2px;
|
|
2293
|
+
margin: 2px;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.at_dropdown_item .at_subitem_right {
|
|
2297
|
+
cursor: pointer;
|
|
2298
|
+
display: flex;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
.at_dropdown_item .at_subitem_right span:hover{
|
|
2302
|
+
color: var(--bg-accent-azusa)
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
.at_dropdown_item .at_subitem_center {
|
|
2306
|
+
display: flex;
|
|
2307
|
+
justify-content: space-around;
|
|
2308
|
+
align-items: center;
|
|
2309
|
+
gap: 4px;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.at_dropdown_item .at_subitem_center .at_icon {
|
|
2313
|
+
font-size: 1em;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.at_dropdown_subitem_container {
|
|
2317
|
+
display: var(--container-display);
|
|
2318
|
+
background-color: hsla(0, 3%, 6%, 0.8);
|
|
2319
|
+
border-radius: 4px;
|
|
2320
|
+
flex-direction: row;
|
|
2321
|
+
justify-content: space-between;
|
|
2322
|
+
align-items: center;
|
|
2323
|
+
padding: 2px 2px 2px 2px;
|
|
2324
|
+
margin: 0px 4px 2px 4px;
|
|
2325
|
+
width: 100%;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.at_subitem_center .at_name {
|
|
2329
|
+
max-width: 75px;
|
|
2330
|
+
overflow: hidden;
|
|
2331
|
+
text-overflow: ellipsis;
|
|
2332
|
+
white-space: nowrap;
|
|
2333
|
+
position: relative;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.at_subitem_center .at_tooltip {
|
|
2337
|
+
position: absolute;
|
|
2338
|
+
top: -70%;
|
|
2339
|
+
left: -10%;
|
|
2340
|
+
width: min-content;
|
|
2341
|
+
color: #fff;
|
|
2342
|
+
transform: translateY(-50%);
|
|
2343
|
+
font-size: 12px;
|
|
2344
|
+
padding: 4px 8px;
|
|
2345
|
+
border-radius: 4px;
|
|
2346
|
+
white-space: nowrap;
|
|
2347
|
+
z-index: 9999999;
|
|
2348
|
+
visibility: hidden;
|
|
2349
|
+
background-color: #2A2B26;
|
|
2350
|
+
opacity: 0;
|
|
2351
|
+
transition: opacity 0.3s ease;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.at_subitem_center:hover .at_tooltip {
|
|
2355
|
+
transition: opacity 0.3s ease;
|
|
2356
|
+
visibility: visible;
|
|
2357
|
+
opacity: 1;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
.at_subitem_center .at_tooltip::after {
|
|
2361
|
+
content: "";
|
|
2362
|
+
position: absolute;
|
|
2363
|
+
top: 115%;
|
|
2364
|
+
left: 50%;
|
|
2365
|
+
margin-top: -5px;
|
|
2366
|
+
border-width: 5px;
|
|
2367
|
+
border-style: solid;
|
|
2368
|
+
border-color: #2A2B26 transparent transparent transparent;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.at_subitem_center .at_name,
|
|
2372
|
+
.at_subitem_center .at_distance {
|
|
2373
|
+
font-size: 12px;
|
|
2374
|
+
font-family: Arial, sans-serif;
|
|
2375
|
+
white-space: nowrap;
|
|
2376
|
+
text-align: center;
|
|
2377
|
+
padding-left: 5px;
|
|
2378
|
+
padding-right: 5px;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
.at_subitem_center .at_distance {
|
|
2382
|
+
background-color:hsla(0,0%,100%,0.8) ;
|
|
2383
|
+
border-radius: 4px;
|
|
2384
|
+
color: black;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.at_container .at_item .at_subitem_center {
|
|
2388
|
+
background-color: hsla(0, 3%, 6%, 0.8);
|
|
2389
|
+
border-radius: 4px;
|
|
2390
|
+
cursor: pointer;
|
|
2391
|
+
margin: 4px;
|
|
2392
|
+
font-size: 12px;
|
|
2393
|
+
text-align: center;
|
|
2394
|
+
width:100px;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2386
2397
|
.at_tags_filter_section {
|
|
2387
2398
|
display: flex;
|
|
2388
2399
|
flex-direction: row;
|
|
2389
2400
|
gap: 2px !important;
|
|
2390
2401
|
height: max-content;
|
|
2391
2402
|
height: 3rem;
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
.at_partition_wall_row_item {
|
|
2406
|
+
cursor: pointer;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.at_partition_floor_row_item {
|
|
2410
|
+
cursor: pointer;
|
|
2392
2411
|
}
|