ywana-core8 0.2.20 → 0.2.21
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/index.css +2833 -714
- package/dist/index.js +433 -110
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +433 -110
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +433 -110
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/desktop/Desktop.stories.jsx +424 -11
- package/src/desktop/{ApplicationMenu.css → LaunchPad.css} +82 -107
- package/src/desktop/{ApplicationMenu.js → LaunchPad.js} +30 -29
- package/src/desktop/WindowContext.js +2 -0
- package/src/desktop/WindowManager.js +54 -0
- package/src/desktop/{desktop-linux.css → desktop-gnome.css} +64 -46
- package/src/desktop/desktop-macintosh.css +330 -0
- package/src/desktop/desktop-macos.css +60 -18
- package/src/desktop/desktop-msx.css +337 -0
- package/src/desktop/desktop-nextstep.css +315 -0
- package/src/desktop/desktop-windows.css +39 -21
- package/src/desktop/desktop-windows98.css +284 -0
- package/src/desktop/desktop-windowsxp.css +294 -0
- package/src/desktop/desktop.css +428 -1
- package/src/desktop/desktop.js +393 -69
- package/src/desktop/index.js +2 -2
- package/src/html/Menu.stories.jsx +504 -0
- package/src/html/menu.css +85 -6
- package/src/html/menu.js +40 -16
package/dist/index.css
CHANGED
@@ -5225,6 +5225,7 @@ td.actions {
|
|
5225
5225
|
}
|
5226
5226
|
}.menu-icon {
|
5227
5227
|
position: relative;
|
5228
|
+
display: inline-block;
|
5228
5229
|
}
|
5229
5230
|
|
5230
5231
|
/* Solución simple: z-index muy alto para que aparezca por encima de todo */
|
@@ -5242,8 +5243,6 @@ td.actions {
|
|
5242
5243
|
.menu-icon > menu {
|
5243
5244
|
z-index: 9999;
|
5244
5245
|
position: absolute;
|
5245
|
-
top: 3rem;
|
5246
|
-
left: 0px;
|
5247
5246
|
margin: 0;
|
5248
5247
|
border: solid 1px var(--divider-color);
|
5249
5248
|
background-color: var(--paper-color);
|
@@ -5253,16 +5252,68 @@ td.actions {
|
|
5253
5252
|
max-height: 50vh;
|
5254
5253
|
overflow: auto;
|
5255
5254
|
box-shadow: var(--shadow1);
|
5255
|
+
border-radius: 4px;
|
5256
|
+
}
|
5257
|
+
|
5258
|
+
/* Position: Bottom Left (default) */
|
5259
|
+
.menu-icon > menu.position-bottom-left {
|
5260
|
+
top: calc(100% + 0.25rem);
|
5261
|
+
left: 0;
|
5262
|
+
}
|
5263
|
+
|
5264
|
+
/* Position: Bottom Right */
|
5265
|
+
.menu-icon > menu.position-bottom-right {
|
5266
|
+
top: calc(100% + 0.25rem);
|
5267
|
+
right: 0;
|
5268
|
+
}
|
5269
|
+
|
5270
|
+
/* Position: Top Left */
|
5271
|
+
.menu-icon > menu.position-top-left {
|
5272
|
+
bottom: calc(100% + 0.25rem);
|
5273
|
+
left: 0;
|
5274
|
+
}
|
5275
|
+
|
5276
|
+
/* Position: Top Right */
|
5277
|
+
.menu-icon > menu.position-top-right {
|
5278
|
+
bottom: calc(100% + 0.25rem);
|
5279
|
+
right: 0;
|
5256
5280
|
}
|
5257
5281
|
|
5282
|
+
/* Position: Left */
|
5283
|
+
.menu-icon > menu.position-left {
|
5284
|
+
right: calc(100% + 0.25rem);
|
5285
|
+
top: 0;
|
5286
|
+
}
|
5287
|
+
|
5288
|
+
/* Position: Right */
|
5289
|
+
.menu-icon > menu.position-right {
|
5290
|
+
left: calc(100% + 0.25rem);
|
5291
|
+
top: 0;
|
5292
|
+
}
|
5293
|
+
|
5294
|
+
/* Position: Top (centered) */
|
5295
|
+
.menu-icon > menu.position-top {
|
5296
|
+
bottom: calc(100% + 0.25rem);
|
5297
|
+
left: 50%;
|
5298
|
+
transform: translateX(-50%);
|
5299
|
+
}
|
5300
|
+
|
5301
|
+
/* Position: Bottom (centered) */
|
5302
|
+
.menu-icon > menu.position-bottom {
|
5303
|
+
top: calc(100% + 0.25rem);
|
5304
|
+
left: 50%;
|
5305
|
+
transform: translateX(-50%);
|
5306
|
+
}
|
5307
|
+
|
5308
|
+
/* Backwards compatibility */
|
5258
5309
|
.menu-icon > menu.alignRight {
|
5259
|
-
|
5260
|
-
right:
|
5310
|
+
top: calc(100% + 0.25rem);
|
5311
|
+
right: 0;
|
5261
5312
|
}
|
5262
5313
|
|
5263
5314
|
.menu-icon > menu.alignLeft {
|
5264
|
-
|
5265
|
-
|
5315
|
+
top: calc(100% + 0.25rem);
|
5316
|
+
left: 0;
|
5266
5317
|
}
|
5267
5318
|
|
5268
5319
|
.menu-icon > menu ul {
|
@@ -5319,6 +5370,34 @@ td.actions {
|
|
5319
5370
|
height: 1px;
|
5320
5371
|
border-top: solid 1px var(--divider-color);
|
5321
5372
|
}
|
5373
|
+
|
5374
|
+
/* ============================================
|
5375
|
+
COMPACT MENU VARIANT
|
5376
|
+
============================================ */
|
5377
|
+
|
5378
|
+
.menu-icon > menu.menu-compact {
|
5379
|
+
min-width: 6rem;
|
5380
|
+
max-width: 12rem;
|
5381
|
+
font-size: 0.85rem;
|
5382
|
+
}
|
5383
|
+
|
5384
|
+
.menu-icon > menu.menu-compact li {
|
5385
|
+
min-height: 2rem;
|
5386
|
+
padding: 0 0.4rem;
|
5387
|
+
}
|
5388
|
+
|
5389
|
+
.menu-icon > menu.menu-compact .menu-item > label {
|
5390
|
+
font-size: 0.75rem;
|
5391
|
+
padding: 0 0.4rem 0 0;
|
5392
|
+
}
|
5393
|
+
|
5394
|
+
.menu-icon > menu.menu-compact .menu-item > .meta {
|
5395
|
+
font-size: 0.7rem;
|
5396
|
+
}
|
5397
|
+
|
5398
|
+
.menu-icon > menu.menu-compact .menu-separator {
|
5399
|
+
margin: 0.2rem 0;
|
5400
|
+
}
|
5322
5401
|
/* ActionsCell Component Styles */
|
5323
5402
|
|
5324
5403
|
.actions-cell {
|
@@ -16448,35 +16527,10 @@ li.selected,
|
|
16448
16527
|
.window--resizing * {
|
16449
16528
|
user-select: none !important;
|
16450
16529
|
}
|
16451
|
-
/*
|
16452
|
-
|
16453
|
-
.application-menu-overlay {
|
16454
|
-
position: absolute;
|
16455
|
-
top: 0;
|
16456
|
-
left: 0;
|
16457
|
-
right: 0;
|
16458
|
-
bottom: 0; /* Covers entire workspace container */
|
16459
|
-
background: rgba(0, 0, 0, 0.16);
|
16460
|
-
backdrop-filter: blur(1px);
|
16461
|
-
z-index: 10000; /* Always above all windows */
|
16462
|
-
display: flex;
|
16463
|
-
align-items: flex-end;
|
16464
|
-
justify-content: flex-start;
|
16465
|
-
animation: fadeIn 0.2s ease-out;
|
16466
|
-
pointer-events: auto; /* Ensure menu is clickable */
|
16467
|
-
padding: 0 0 0px 15px; /* Espacio para el taskbar y margen izquierdo */
|
16468
|
-
}
|
16469
|
-
|
16470
|
-
@keyframes fadeIn {
|
16471
|
-
from {
|
16472
|
-
opacity: 0;
|
16473
|
-
}
|
16474
|
-
to {
|
16475
|
-
opacity: 1;
|
16476
|
-
}
|
16477
|
-
}
|
16530
|
+
/* LaunchPad - Full-screen application launcher inspired by macOS */
|
16531
|
+
/* Note: Overlay styles are now managed by desktop.css DesktopOverlayLayer */
|
16478
16532
|
|
16479
|
-
.
|
16533
|
+
.launchpad {
|
16480
16534
|
background: #ffffff;
|
16481
16535
|
border-radius: 12px 12px 0 0;
|
16482
16536
|
box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
|
@@ -16507,7 +16561,7 @@ li.selected,
|
|
16507
16561
|
}
|
16508
16562
|
|
16509
16563
|
/* Header */
|
16510
|
-
.
|
16564
|
+
.launchpad__header {
|
16511
16565
|
grid-area: header;
|
16512
16566
|
display: flex;
|
16513
16567
|
align-items: center;
|
@@ -16518,20 +16572,20 @@ li.selected,
|
|
16518
16572
|
min-height: 40px;
|
16519
16573
|
}
|
16520
16574
|
|
16521
|
-
.
|
16575
|
+
.launchpad__header-controls {
|
16522
16576
|
display: flex;
|
16523
16577
|
align-items: center;
|
16524
16578
|
gap: 6px;
|
16525
16579
|
}
|
16526
16580
|
|
16527
|
-
.
|
16581
|
+
.launchpad__header h2 {
|
16528
16582
|
margin: 0;
|
16529
16583
|
color: #333;
|
16530
16584
|
font-size: 24px;
|
16531
16585
|
font-weight: 600;
|
16532
16586
|
}
|
16533
16587
|
|
16534
|
-
.
|
16588
|
+
.launchpad__view-toggle {
|
16535
16589
|
background: none;
|
16536
16590
|
border: 1px solid #ddd;
|
16537
16591
|
font-size: 14px;
|
@@ -16547,19 +16601,19 @@ li.selected,
|
|
16547
16601
|
justify-content: center;
|
16548
16602
|
}
|
16549
16603
|
|
16550
|
-
.
|
16604
|
+
.launchpad__view-toggle:hover {
|
16551
16605
|
background: #e9ecef;
|
16552
16606
|
color: #333;
|
16553
16607
|
border-color: #ccc;
|
16554
16608
|
}
|
16555
16609
|
|
16556
|
-
.
|
16610
|
+
.launchpad__view-toggle.active {
|
16557
16611
|
background: #1976d2;
|
16558
16612
|
color: white;
|
16559
16613
|
border-color: #1976d2;
|
16560
16614
|
}
|
16561
16615
|
|
16562
|
-
.
|
16616
|
+
.launchpad__close {
|
16563
16617
|
background: none;
|
16564
16618
|
border: none;
|
16565
16619
|
font-size: 20px;
|
@@ -16575,19 +16629,19 @@ li.selected,
|
|
16575
16629
|
justify-content: center;
|
16576
16630
|
}
|
16577
16631
|
|
16578
|
-
.
|
16632
|
+
.launchpad__close:hover {
|
16579
16633
|
background: #e0e0e0;
|
16580
16634
|
color: #333;
|
16581
16635
|
}
|
16582
16636
|
|
16583
16637
|
/* Search */
|
16584
|
-
.
|
16638
|
+
.launchpad__search {
|
16585
16639
|
grid-area: search;
|
16586
16640
|
padding: 12px 20px;
|
16587
16641
|
border-bottom: 1px solid #e0e0e0;
|
16588
16642
|
}
|
16589
16643
|
|
16590
|
-
.
|
16644
|
+
.launchpad__search-input {
|
16591
16645
|
width: 100%;
|
16592
16646
|
padding: 10px 14px;
|
16593
16647
|
border: 1px solid #ddd;
|
@@ -16597,97 +16651,97 @@ li.selected,
|
|
16597
16651
|
transition: border-color 0.2s ease;
|
16598
16652
|
}
|
16599
16653
|
|
16600
|
-
.
|
16654
|
+
.launchpad__search-input:focus {
|
16601
16655
|
border-color: #1976d2;
|
16602
16656
|
box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
|
16603
16657
|
}
|
16604
16658
|
|
16605
16659
|
/* Condensed Mode */
|
16606
|
-
.
|
16660
|
+
.launchpad--condensed .launchpad__header {
|
16607
16661
|
padding: 6px 12px;
|
16608
16662
|
min-height: 32px;
|
16609
16663
|
}
|
16610
16664
|
|
16611
|
-
.
|
16665
|
+
.launchpad--condensed .launchpad__search {
|
16612
16666
|
padding: 8px 16px;
|
16613
16667
|
}
|
16614
16668
|
|
16615
|
-
.
|
16669
|
+
.launchpad--condensed .launchpad__search-input {
|
16616
16670
|
padding: 8px 12px;
|
16617
16671
|
font-size: 13px;
|
16618
16672
|
}
|
16619
16673
|
|
16620
|
-
.
|
16674
|
+
.launchpad--condensed .launchpad__content {
|
16621
16675
|
padding: 12px 16px;
|
16622
16676
|
}
|
16623
16677
|
|
16624
|
-
.
|
16678
|
+
.launchpad--condensed .launchpad__categories {
|
16625
16679
|
padding: 4px;
|
16626
16680
|
}
|
16627
16681
|
|
16628
|
-
.
|
16682
|
+
.launchpad--condensed .launchpad__category {
|
16629
16683
|
width: 36px;
|
16630
16684
|
height: 36px;
|
16631
16685
|
padding: 6px;
|
16632
16686
|
margin: 1px;
|
16633
16687
|
}
|
16634
16688
|
|
16635
|
-
.
|
16689
|
+
.launchpad--condensed .category-icon {
|
16636
16690
|
font-size: 16px;
|
16637
16691
|
}
|
16638
16692
|
|
16639
|
-
.
|
16693
|
+
.launchpad--condensed .launchpad__category-section {
|
16640
16694
|
margin-bottom: 20px;
|
16641
16695
|
}
|
16642
16696
|
|
16643
|
-
.
|
16697
|
+
.launchpad--condensed .category-title {
|
16644
16698
|
font-size: 14px;
|
16645
16699
|
margin-bottom: 8px;
|
16646
16700
|
}
|
16647
16701
|
|
16648
|
-
.
|
16702
|
+
.launchpad--condensed .launchpad__apps-grid {
|
16649
16703
|
gap: 8px;
|
16650
16704
|
grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
|
16651
16705
|
}
|
16652
16706
|
|
16653
|
-
.
|
16707
|
+
.launchpad--condensed .launchpad__app--grid {
|
16654
16708
|
padding: 8px 6px;
|
16655
16709
|
}
|
16656
16710
|
|
16657
|
-
.
|
16711
|
+
.launchpad--condensed .launchpad__app--grid .app-icon {
|
16658
16712
|
font-size: 28px;
|
16659
16713
|
margin-bottom: 4px;
|
16660
16714
|
}
|
16661
16715
|
|
16662
|
-
.
|
16716
|
+
.launchpad--condensed .launchpad__app--grid .app-name {
|
16663
16717
|
font-size: 11px;
|
16664
16718
|
}
|
16665
16719
|
|
16666
|
-
.
|
16720
|
+
.launchpad--condensed .launchpad__apps-list {
|
16667
16721
|
gap: 1px;
|
16668
16722
|
}
|
16669
16723
|
|
16670
|
-
.
|
16724
|
+
.launchpad--condensed .launchpad__app--list {
|
16671
16725
|
padding: 6px 12px;
|
16672
16726
|
gap: 10px;
|
16673
16727
|
}
|
16674
16728
|
|
16675
|
-
.
|
16729
|
+
.launchpad--condensed .launchpad__app--list .app-icon {
|
16676
16730
|
font-size: 22px;
|
16677
16731
|
min-width: 22px;
|
16678
16732
|
}
|
16679
16733
|
|
16680
|
-
.
|
16734
|
+
.launchpad--condensed .launchpad__app--list .app-name {
|
16681
16735
|
font-size: 12px;
|
16682
16736
|
margin-bottom: 1px;
|
16683
16737
|
}
|
16684
16738
|
|
16685
|
-
.
|
16739
|
+
.launchpad--condensed .launchpad__app--list .app-description {
|
16686
16740
|
font-size: 10px;
|
16687
16741
|
}
|
16688
16742
|
|
16689
16743
|
/* Main Grid Layout */
|
16690
|
-
.
|
16744
|
+
.launchpad__main {
|
16691
16745
|
grid-area: main;
|
16692
16746
|
display: grid;
|
16693
16747
|
grid-template-columns: 60px 1fr;
|
@@ -16696,12 +16750,12 @@ li.selected,
|
|
16696
16750
|
overflow: hidden;
|
16697
16751
|
}
|
16698
16752
|
|
16699
|
-
.
|
16753
|
+
.launchpad--condensed .launchpad__main {
|
16700
16754
|
grid-template-columns: 48px 1fr;
|
16701
16755
|
}
|
16702
16756
|
|
16703
16757
|
/* Sidebar */
|
16704
|
-
.
|
16758
|
+
.launchpad__sidebar {
|
16705
16759
|
grid-area: sidebar;
|
16706
16760
|
background: #f8f9fa;
|
16707
16761
|
border-right: 1px solid #e0e0e0;
|
@@ -16711,7 +16765,7 @@ li.selected,
|
|
16711
16765
|
}
|
16712
16766
|
|
16713
16767
|
/* Categories */
|
16714
|
-
.
|
16768
|
+
.launchpad__categories {
|
16715
16769
|
flex: 1;
|
16716
16770
|
padding: 8px;
|
16717
16771
|
overflow-y: auto;
|
@@ -16719,24 +16773,24 @@ li.selected,
|
|
16719
16773
|
scrollbar-color: #ccc transparent;
|
16720
16774
|
}
|
16721
16775
|
|
16722
|
-
.
|
16776
|
+
.launchpad__categories::-webkit-scrollbar {
|
16723
16777
|
width: 6px;
|
16724
16778
|
}
|
16725
16779
|
|
16726
|
-
.
|
16780
|
+
.launchpad__categories::-webkit-scrollbar-track {
|
16727
16781
|
background: transparent;
|
16728
16782
|
}
|
16729
16783
|
|
16730
|
-
.
|
16784
|
+
.launchpad__categories::-webkit-scrollbar-thumb {
|
16731
16785
|
background: #ccc;
|
16732
16786
|
border-radius: 3px;
|
16733
16787
|
}
|
16734
16788
|
|
16735
|
-
.
|
16789
|
+
.launchpad__categories::-webkit-scrollbar-thumb:hover {
|
16736
16790
|
background: #999;
|
16737
16791
|
}
|
16738
16792
|
|
16739
|
-
.
|
16793
|
+
.launchpad__category {
|
16740
16794
|
display: flex;
|
16741
16795
|
align-items: center;
|
16742
16796
|
justify-content: center;
|
@@ -16755,12 +16809,12 @@ li.selected,
|
|
16755
16809
|
position: relative;
|
16756
16810
|
}
|
16757
16811
|
|
16758
|
-
.
|
16812
|
+
.launchpad__category:hover {
|
16759
16813
|
background: #e9ecef;
|
16760
16814
|
color: #333;
|
16761
16815
|
}
|
16762
16816
|
|
16763
|
-
.
|
16817
|
+
.launchpad__category.active {
|
16764
16818
|
background: #e3f2fd;
|
16765
16819
|
color: #1976d2;
|
16766
16820
|
font-weight: 500;
|
@@ -16776,7 +16830,7 @@ li.selected,
|
|
16776
16830
|
}
|
16777
16831
|
|
16778
16832
|
/* Content */
|
16779
|
-
.
|
16833
|
+
.launchpad__content {
|
16780
16834
|
grid-area: content;
|
16781
16835
|
overflow-y: auto;
|
16782
16836
|
padding: 20px 24px;
|
@@ -16784,25 +16838,25 @@ li.selected,
|
|
16784
16838
|
scrollbar-color: #ccc transparent;
|
16785
16839
|
}
|
16786
16840
|
|
16787
|
-
.
|
16841
|
+
.launchpad__content::-webkit-scrollbar {
|
16788
16842
|
width: 8px;
|
16789
16843
|
}
|
16790
16844
|
|
16791
|
-
.
|
16845
|
+
.launchpad__content::-webkit-scrollbar-track {
|
16792
16846
|
background: #f1f1f1;
|
16793
16847
|
border-radius: 4px;
|
16794
16848
|
}
|
16795
16849
|
|
16796
|
-
.
|
16850
|
+
.launchpad__content::-webkit-scrollbar-thumb {
|
16797
16851
|
background: #ccc;
|
16798
16852
|
border-radius: 4px;
|
16799
16853
|
}
|
16800
16854
|
|
16801
|
-
.
|
16855
|
+
.launchpad__content::-webkit-scrollbar-thumb:hover {
|
16802
16856
|
background: #999;
|
16803
16857
|
}
|
16804
16858
|
|
16805
|
-
.
|
16859
|
+
.launchpad__search-results h3,
|
16806
16860
|
.category-title {
|
16807
16861
|
margin: 0 0 12px 0;
|
16808
16862
|
color: #333;
|
@@ -16810,23 +16864,23 @@ li.selected,
|
|
16810
16864
|
font-weight: 600;
|
16811
16865
|
}
|
16812
16866
|
|
16813
|
-
.
|
16867
|
+
.launchpad__category-section {
|
16814
16868
|
margin-bottom: 32px;
|
16815
16869
|
}
|
16816
16870
|
|
16817
|
-
.
|
16871
|
+
.launchpad__category-section:last-child {
|
16818
16872
|
margin-bottom: 0;
|
16819
16873
|
}
|
16820
16874
|
|
16821
16875
|
/* Apps Grid */
|
16822
|
-
.
|
16876
|
+
.launchpad__apps-grid {
|
16823
16877
|
display: grid;
|
16824
16878
|
grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
|
16825
16879
|
gap: 12px;
|
16826
16880
|
max-width: 100%;
|
16827
16881
|
}
|
16828
16882
|
|
16829
|
-
.
|
16883
|
+
.launchpad__app--grid {
|
16830
16884
|
display: flex;
|
16831
16885
|
flex-direction: column;
|
16832
16886
|
align-items: center;
|
@@ -16839,20 +16893,20 @@ li.selected,
|
|
16839
16893
|
border: 1px solid transparent;
|
16840
16894
|
}
|
16841
16895
|
|
16842
|
-
.
|
16896
|
+
.launchpad__app--grid:hover {
|
16843
16897
|
background: #f8f9fa;
|
16844
16898
|
border-color: #e0e0e0;
|
16845
16899
|
transform: translateY(-1px);
|
16846
16900
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
16847
16901
|
}
|
16848
16902
|
|
16849
|
-
.
|
16903
|
+
.launchpad__app--grid .app-icon {
|
16850
16904
|
font-size: 36px;
|
16851
16905
|
margin-bottom: 6px;
|
16852
16906
|
line-height: 1;
|
16853
16907
|
}
|
16854
16908
|
|
16855
|
-
.
|
16909
|
+
.launchpad__app--grid .app-name {
|
16856
16910
|
font-size: 12px;
|
16857
16911
|
font-weight: 500;
|
16858
16912
|
color: #333;
|
@@ -16862,14 +16916,14 @@ li.selected,
|
|
16862
16916
|
}
|
16863
16917
|
|
16864
16918
|
/* Apps List */
|
16865
|
-
.
|
16919
|
+
.launchpad__apps-list {
|
16866
16920
|
display: flex;
|
16867
16921
|
flex-direction: column;
|
16868
16922
|
gap: 2px;
|
16869
16923
|
max-width: 100%;
|
16870
16924
|
}
|
16871
16925
|
|
16872
|
-
.
|
16926
|
+
.launchpad__app--list {
|
16873
16927
|
display: flex;
|
16874
16928
|
align-items: center;
|
16875
16929
|
padding: 10px 16px;
|
@@ -16882,12 +16936,12 @@ li.selected,
|
|
16882
16936
|
margin-bottom: 2px;
|
16883
16937
|
}
|
16884
16938
|
|
16885
|
-
.
|
16939
|
+
.launchpad__app--list:hover {
|
16886
16940
|
background: #f0f7ff;
|
16887
16941
|
color: #1976d2;
|
16888
16942
|
}
|
16889
16943
|
|
16890
|
-
.
|
16944
|
+
.launchpad__app--list .app-icon {
|
16891
16945
|
font-size: 28px;
|
16892
16946
|
min-width: 28px;
|
16893
16947
|
line-height: 1;
|
@@ -16896,13 +16950,13 @@ li.selected,
|
|
16896
16950
|
justify-content: center;
|
16897
16951
|
}
|
16898
16952
|
|
16899
|
-
.
|
16953
|
+
.launchpad__app--list .app-info {
|
16900
16954
|
flex: 1;
|
16901
16955
|
text-align: left;
|
16902
16956
|
min-width: 0;
|
16903
16957
|
}
|
16904
16958
|
|
16905
|
-
.
|
16959
|
+
.launchpad__app--list .app-name {
|
16906
16960
|
font-size: 14px;
|
16907
16961
|
font-weight: 500;
|
16908
16962
|
color: #333;
|
@@ -16913,7 +16967,7 @@ li.selected,
|
|
16913
16967
|
text-overflow: ellipsis;
|
16914
16968
|
}
|
16915
16969
|
|
16916
|
-
.
|
16970
|
+
.launchpad__app--list .app-description {
|
16917
16971
|
font-size: 12px;
|
16918
16972
|
color: #666;
|
16919
16973
|
line-height: 1.3;
|
@@ -16923,17 +16977,17 @@ li.selected,
|
|
16923
16977
|
text-overflow: ellipsis;
|
16924
16978
|
}
|
16925
16979
|
|
16926
|
-
.
|
16980
|
+
.launchpad__app--list:hover .app-name {
|
16927
16981
|
color: #1976d2;
|
16928
16982
|
}
|
16929
16983
|
|
16930
|
-
.
|
16984
|
+
.launchpad__app--list:hover .app-description {
|
16931
16985
|
color: #1565c0;
|
16932
16986
|
opacity: 1;
|
16933
16987
|
}
|
16934
16988
|
|
16935
16989
|
/* Legacy support for old class names */
|
16936
|
-
.
|
16990
|
+
.launchpad__app {
|
16937
16991
|
display: flex;
|
16938
16992
|
flex-direction: column;
|
16939
16993
|
align-items: center;
|
@@ -16946,7 +17000,7 @@ li.selected,
|
|
16946
17000
|
border: 1px solid transparent;
|
16947
17001
|
}
|
16948
17002
|
|
16949
|
-
.
|
17003
|
+
.launchpad__app:hover {
|
16950
17004
|
background: #f8f9fa;
|
16951
17005
|
border-color: #e0e0e0;
|
16952
17006
|
transform: translateY(-1px);
|
@@ -16969,37 +17023,37 @@ li.selected,
|
|
16969
17023
|
}
|
16970
17024
|
|
16971
17025
|
/* No Results */
|
16972
|
-
.
|
17026
|
+
.launchpad__no-results {
|
16973
17027
|
text-align: center;
|
16974
17028
|
padding: 60px 20px;
|
16975
17029
|
color: #666;
|
16976
17030
|
}
|
16977
17031
|
|
16978
|
-
.
|
17032
|
+
.launchpad__no-results h3 {
|
16979
17033
|
margin: 0 0 8px 0;
|
16980
17034
|
color: #333;
|
16981
17035
|
font-size: 20px;
|
16982
17036
|
}
|
16983
17037
|
|
16984
|
-
.
|
17038
|
+
.launchpad__no-results p {
|
16985
17039
|
margin: 0;
|
16986
17040
|
font-size: 16px;
|
16987
17041
|
}
|
16988
17042
|
|
16989
17043
|
/* Responsive */
|
16990
17044
|
@media (max-width: 768px) {
|
16991
|
-
.
|
17045
|
+
.launchpad {
|
16992
17046
|
width: 95%;
|
16993
17047
|
height: 95%;
|
16994
17048
|
max-height: 100%; /* Constrained by workspace container */
|
16995
17049
|
margin: 5px;
|
16996
17050
|
}
|
16997
17051
|
|
16998
|
-
.
|
17052
|
+
.launchpad__main {
|
16999
17053
|
grid-template-columns: 50px 1fr;
|
17000
17054
|
}
|
17001
17055
|
|
17002
|
-
.
|
17056
|
+
.launchpad__category {
|
17003
17057
|
padding: 8px;
|
17004
17058
|
font-size: 13px;
|
17005
17059
|
height: 40px;
|
@@ -17009,12 +17063,12 @@ li.selected,
|
|
17009
17063
|
font-size: 18px;
|
17010
17064
|
}
|
17011
17065
|
|
17012
|
-
.
|
17066
|
+
.launchpad__apps-grid {
|
17013
17067
|
grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
|
17014
17068
|
gap: 12px;
|
17015
17069
|
}
|
17016
17070
|
|
17017
|
-
.
|
17071
|
+
.launchpad__app {
|
17018
17072
|
padding: 12px 8px;
|
17019
17073
|
}
|
17020
17074
|
|
@@ -17026,16 +17080,16 @@ li.selected,
|
|
17026
17080
|
font-size: 12px;
|
17027
17081
|
}
|
17028
17082
|
|
17029
|
-
.
|
17030
|
-
.
|
17083
|
+
.launchpad__search,
|
17084
|
+
.launchpad__content {
|
17031
17085
|
padding: 16px;
|
17032
17086
|
}
|
17033
17087
|
}
|
17034
17088
|
|
17035
17089
|
@media (max-width: 480px) {
|
17036
|
-
/*
|
17090
|
+
/* LaunchPad overlay covers entire workspace on mobile */
|
17037
17091
|
|
17038
|
-
.
|
17092
|
+
.launchpad__main {
|
17039
17093
|
grid-template-columns: 1fr;
|
17040
17094
|
grid-template-rows: auto 1fr;
|
17041
17095
|
grid-template-areas:
|
@@ -17043,12 +17097,12 @@ li.selected,
|
|
17043
17097
|
"content";
|
17044
17098
|
}
|
17045
17099
|
|
17046
|
-
.
|
17100
|
+
.launchpad__sidebar {
|
17047
17101
|
border-right: none;
|
17048
17102
|
border-bottom: 1px solid #e0e0e0;
|
17049
17103
|
}
|
17050
17104
|
|
17051
|
-
.
|
17105
|
+
.launchpad__categories {
|
17052
17106
|
display: flex;
|
17053
17107
|
flex-direction: row;
|
17054
17108
|
overflow-x: auto;
|
@@ -17057,7 +17111,7 @@ li.selected,
|
|
17057
17111
|
gap: 8px;
|
17058
17112
|
}
|
17059
17113
|
|
17060
|
-
.
|
17114
|
+
.launchpad__category {
|
17061
17115
|
flex-shrink: 0;
|
17062
17116
|
white-space: nowrap;
|
17063
17117
|
margin: 0;
|
@@ -17113,7 +17167,11 @@ li.selected,
|
|
17113
17167
|
}
|
17114
17168
|
|
17115
17169
|
.desktop-taskbar {
|
17116
|
-
|
17170
|
+
position: relative;
|
17171
|
+
z-index: 10000; /* Above everything: workspace (1), windows (100-9999), overlays (9000-9999) */
|
17172
|
+
background: rgba(0, 0, 0, 0.8); /* Default dark background */
|
17173
|
+
backdrop-filter: blur(10px);
|
17174
|
+
|
17117
17175
|
& .icon {
|
17118
17176
|
color: white;
|
17119
17177
|
& :hover {
|
@@ -17121,6 +17179,45 @@ li.selected,
|
|
17121
17179
|
background-color: rgba(255, 255, 255, 0.1);
|
17122
17180
|
}
|
17123
17181
|
}
|
17182
|
+
|
17183
|
+
/* Ensure menu inside taskbar appears above everything */
|
17184
|
+
& .menu-icon > menu {
|
17185
|
+
z-index: 10001; /* Above taskbar itself */
|
17186
|
+
/* Dark theme for taskbar menus */
|
17187
|
+
background-color: rgba(40, 40, 40, 0.98);
|
17188
|
+
backdrop-filter: blur(10px);
|
17189
|
+
border-color: rgba(255, 255, 255, 0.15);
|
17190
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
17191
|
+
}
|
17192
|
+
|
17193
|
+
/* Menu items styling for dark theme */
|
17194
|
+
& .menu-icon > menu .menu-item > label {
|
17195
|
+
color: rgba(255, 255, 255, 0.95);
|
17196
|
+
}
|
17197
|
+
|
17198
|
+
& .menu-icon > menu .menu-item > .icon {
|
17199
|
+
color: rgba(255, 255, 255, 0.85);
|
17200
|
+
}
|
17201
|
+
|
17202
|
+
& .menu-icon > menu .menu-item > .meta {
|
17203
|
+
color: rgba(255, 255, 255, 0.6);
|
17204
|
+
}
|
17205
|
+
|
17206
|
+
/* Hover state for menu items */
|
17207
|
+
& .menu-icon > menu li:hover {
|
17208
|
+
background-color: rgba(255, 255, 255, 0.15);
|
17209
|
+
}
|
17210
|
+
|
17211
|
+
/* Disabled items */
|
17212
|
+
& .menu-icon > menu .menu-item.disabled > label,
|
17213
|
+
& .menu-icon > menu .menu-item.disabled > .icon {
|
17214
|
+
color: rgba(255, 255, 255, 0.3);
|
17215
|
+
}
|
17216
|
+
|
17217
|
+
/* Separator */
|
17218
|
+
& .menu-icon > menu .menu-separator {
|
17219
|
+
border-top-color: rgba(255, 255, 255, 0.15);
|
17220
|
+
}
|
17124
17221
|
}
|
17125
17222
|
|
17126
17223
|
|
@@ -17141,863 +17238,2885 @@ li.selected,
|
|
17141
17238
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
17142
17239
|
}
|
17143
17240
|
|
17144
|
-
/*
|
17145
|
-
|
17146
|
-
|
17147
|
-
|
17148
|
-
|
17149
|
-
|
17241
|
+
/* ============================================
|
17242
|
+
DESKTOP OVERLAY SYSTEM
|
17243
|
+
Z-INDEX LAYERS:
|
17244
|
+
- Workspace: 1
|
17245
|
+
- Windows: 100-9999
|
17246
|
+
- Desktop Overlays: 9000-9999
|
17247
|
+
- Taskbar: 10000
|
17248
|
+
- Taskbar Menus: 10001
|
17249
|
+
============================================ */
|
17150
17250
|
|
17151
|
-
|
17152
|
-
|
17153
|
-
|
17154
|
-
|
17251
|
+
/* Desktop Overlay Layer Container */
|
17252
|
+
/* Note: Positioned within workspace-container to not cover taskbar */
|
17253
|
+
.desktop-overlay-layer {
|
17254
|
+
position: absolute;
|
17255
|
+
top: 0;
|
17256
|
+
left: 0;
|
17257
|
+
right: 0;
|
17258
|
+
bottom: 0;
|
17259
|
+
pointer-events: none; /* Allow clicks through when no overlays */
|
17260
|
+
z-index: 9000; /* Above windows (100-9999) but below taskbar (10000) */
|
17155
17261
|
}
|
17156
|
-
/* Windows Desktop Theme */
|
17157
17262
|
|
17158
|
-
|
17159
|
-
|
17160
|
-
|
17263
|
+
/* Individual Desktop Overlay */
|
17264
|
+
.desktop-overlay {
|
17265
|
+
position: absolute;
|
17266
|
+
top: 0;
|
17267
|
+
left: 0;
|
17268
|
+
right: 0;
|
17269
|
+
bottom: 0;
|
17270
|
+
pointer-events: auto;
|
17271
|
+
display: flex;
|
17161
17272
|
}
|
17162
17273
|
|
17163
|
-
|
17164
|
-
|
17165
|
-
|
17166
|
-
radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
|
17167
|
-
radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 50%);
|
17274
|
+
/* Backdrop */
|
17275
|
+
.desktop-overlay--backdrop {
|
17276
|
+
background: rgba(0, 0, 0, 0.16);
|
17168
17277
|
}
|
17169
17278
|
|
17170
|
-
/*
|
17171
|
-
.desktop--
|
17172
|
-
|
17173
|
-
border-radius: 8px;
|
17174
|
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
17175
|
-
background: #ffffff;
|
17279
|
+
/* Backdrop with blur */
|
17280
|
+
.desktop-overlay--blur {
|
17281
|
+
backdrop-filter: blur(1px);
|
17176
17282
|
}
|
17177
17283
|
|
17178
|
-
|
17179
|
-
|
17180
|
-
|
17181
|
-
|
17182
|
-
height:
|
17183
|
-
padding: 0 12px;
|
17284
|
+
/* Overlay content container */
|
17285
|
+
.desktop-overlay__content {
|
17286
|
+
position: relative;
|
17287
|
+
max-width: 100%;
|
17288
|
+
max-height: 100%;
|
17184
17289
|
}
|
17185
17290
|
|
17186
|
-
|
17187
|
-
|
17188
|
-
|
17189
|
-
color: #333333;
|
17190
|
-
}
|
17291
|
+
/* ============================================
|
17292
|
+
POSITION VARIANTS
|
17293
|
+
============================================ */
|
17191
17294
|
|
17192
|
-
.desktop--
|
17193
|
-
width: 46px;
|
17194
|
-
height: 32px;
|
17195
|
-
border: none;
|
17196
|
-
background: transparent;
|
17197
|
-
font-size: 10px;
|
17198
|
-
font-family: 'Segoe MDL2 Assets', 'Segoe UI Symbol', sans-serif;
|
17199
|
-
color: #333333;
|
17200
|
-
display: flex;
|
17295
|
+
.desktop-overlay--position-center {
|
17201
17296
|
align-items: center;
|
17202
17297
|
justify-content: center;
|
17203
|
-
transition: background-color 0.1s ease;
|
17204
|
-
}
|
17205
|
-
|
17206
|
-
.desktop--windows .window__control:hover {
|
17207
|
-
background: rgba(0, 0, 0, 0.1);
|
17208
17298
|
}
|
17209
17299
|
|
17210
|
-
.desktop--
|
17211
|
-
|
17300
|
+
.desktop-overlay--position-top {
|
17301
|
+
align-items: flex-start;
|
17302
|
+
justify-content: center;
|
17212
17303
|
}
|
17213
17304
|
|
17214
|
-
.desktop--
|
17215
|
-
|
17305
|
+
.desktop-overlay--position-bottom {
|
17306
|
+
align-items: flex-end;
|
17307
|
+
justify-content: center;
|
17216
17308
|
}
|
17217
17309
|
|
17218
|
-
.desktop--
|
17219
|
-
|
17220
|
-
|
17310
|
+
.desktop-overlay--position-left {
|
17311
|
+
align-items: center;
|
17312
|
+
justify-content: flex-start;
|
17221
17313
|
}
|
17222
17314
|
|
17223
|
-
.desktop--
|
17224
|
-
|
17315
|
+
.desktop-overlay--position-right {
|
17316
|
+
align-items: center;
|
17317
|
+
justify-content: flex-end;
|
17225
17318
|
}
|
17226
17319
|
|
17227
|
-
.desktop--
|
17228
|
-
|
17320
|
+
.desktop-overlay--position-top-left {
|
17321
|
+
align-items: flex-start;
|
17322
|
+
justify-content: flex-start;
|
17229
17323
|
}
|
17230
17324
|
|
17231
|
-
.desktop--
|
17232
|
-
|
17325
|
+
.desktop-overlay--position-top-right {
|
17326
|
+
align-items: flex-start;
|
17327
|
+
justify-content: flex-end;
|
17233
17328
|
}
|
17234
17329
|
|
17235
|
-
|
17236
|
-
|
17237
|
-
|
17238
|
-
backdrop-filter: blur(20px);
|
17239
|
-
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
17330
|
+
.desktop-overlay--position-bottom-left {
|
17331
|
+
align-items: flex-end;
|
17332
|
+
justify-content: flex-start;
|
17240
17333
|
}
|
17241
17334
|
|
17242
|
-
.desktop--
|
17243
|
-
|
17244
|
-
|
17245
|
-
border-radius: 4px;
|
17246
|
-
color: white;
|
17247
|
-
font-family: 'Segoe UI', sans-serif;
|
17248
|
-
font-size: 14px;
|
17249
|
-
transition: all 0.2s ease;
|
17335
|
+
.desktop-overlay--position-bottom-right {
|
17336
|
+
align-items: flex-end;
|
17337
|
+
justify-content: flex-end;
|
17250
17338
|
}
|
17251
17339
|
|
17252
|
-
.desktop--
|
17253
|
-
|
17254
|
-
|
17340
|
+
.desktop-overlay--position-custom {
|
17341
|
+
align-items: flex-start;
|
17342
|
+
justify-content: flex-start;
|
17255
17343
|
}
|
17256
17344
|
|
17257
|
-
|
17258
|
-
|
17259
|
-
|
17260
|
-
}
|
17345
|
+
/* ============================================
|
17346
|
+
SIZE VARIANTS
|
17347
|
+
============================================ */
|
17261
17348
|
|
17262
|
-
|
17263
|
-
|
17264
|
-
|
17265
|
-
position: relative;
|
17266
|
-
padding: 8px 16px;
|
17267
|
-
display: flex;
|
17268
|
-
align-items: center;
|
17269
|
-
justify-content: center;
|
17270
|
-
gap: 8px;
|
17271
|
-
overflow: hidden;
|
17272
|
-
border: 1px solid rgba(255, 255, 255, 0.2);
|
17273
|
-
outline: none;
|
17274
|
-
transition: all 0.2s ease;
|
17275
|
-
color: white;
|
17276
|
-
background: linear-gradient(180deg, #0078d4 0%, #106ebe 100%);
|
17277
|
-
min-height: 40px;
|
17278
|
-
border-radius: 4px;
|
17279
|
-
cursor: pointer;
|
17280
|
-
font-family: 'Segoe UI', sans-serif;
|
17281
|
-
font-weight: 500;
|
17282
|
-
text-decoration: none;
|
17283
|
-
white-space: nowrap;
|
17284
|
-
list-style: none;
|
17285
|
-
margin: 0;
|
17286
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
17349
|
+
.desktop-overlay--size-auto .desktop-overlay__content {
|
17350
|
+
width: auto;
|
17351
|
+
height: auto;
|
17287
17352
|
}
|
17288
17353
|
|
17289
|
-
.desktop--
|
17290
|
-
|
17291
|
-
|
17292
|
-
transform: none;
|
17354
|
+
.desktop-overlay--size-full .desktop-overlay__content {
|
17355
|
+
width: 100%;
|
17356
|
+
height: 100%;
|
17293
17357
|
}
|
17294
17358
|
|
17295
|
-
.desktop--
|
17296
|
-
|
17297
|
-
|
17298
|
-
|
17299
|
-
|
17359
|
+
.desktop-overlay--size-large .desktop-overlay__content {
|
17360
|
+
width: 80%;
|
17361
|
+
height: 80%;
|
17362
|
+
max-width: 1200px;
|
17363
|
+
max-height: 800px;
|
17300
17364
|
}
|
17301
17365
|
|
17302
|
-
.desktop--
|
17303
|
-
|
17304
|
-
|
17366
|
+
.desktop-overlay--size-medium .desktop-overlay__content {
|
17367
|
+
width: 60%;
|
17368
|
+
height: 60%;
|
17369
|
+
max-width: 800px;
|
17370
|
+
max-height: 600px;
|
17305
17371
|
}
|
17306
17372
|
|
17307
|
-
.desktop--
|
17308
|
-
|
17309
|
-
|
17310
|
-
|
17311
|
-
|
17312
|
-
opacity: 1;
|
17313
|
-
box-shadow: none;
|
17373
|
+
.desktop-overlay--size-small .desktop-overlay__content {
|
17374
|
+
width: 40%;
|
17375
|
+
height: 40%;
|
17376
|
+
max-width: 500px;
|
17377
|
+
max-height: 400px;
|
17314
17378
|
}
|
17315
17379
|
|
17316
|
-
|
17317
|
-
|
17318
|
-
background: rgba(248, 248, 248, 0.95);
|
17319
|
-
backdrop-filter: blur(20px);
|
17320
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
17321
|
-
border-radius: 8px;
|
17322
|
-
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
|
17380
|
+
.desktop-overlay--size-custom .desktop-overlay__content {
|
17381
|
+
/* Custom size set via inline styles */
|
17323
17382
|
}
|
17324
17383
|
|
17325
|
-
|
17326
|
-
|
17327
|
-
|
17328
|
-
}
|
17384
|
+
/* ============================================
|
17385
|
+
ANIMATIONS - ENTER
|
17386
|
+
============================================ */
|
17329
17387
|
|
17330
|
-
|
17331
|
-
|
17332
|
-
|
17333
|
-
font-family: 'Segoe UI', sans-serif;
|
17388
|
+
/* Fade */
|
17389
|
+
.desktop-overlay--enter-fade {
|
17390
|
+
animation: desktopOverlayFadeIn var(--animation-duration, 300ms) ease-out;
|
17334
17391
|
}
|
17335
17392
|
|
17336
|
-
|
17393
|
+
@keyframes desktopOverlayFadeIn {
|
17394
|
+
from {
|
17395
|
+
opacity: 0;
|
17396
|
+
}
|
17397
|
+
to {
|
17398
|
+
opacity: 1;
|
17399
|
+
}
|
17400
|
+
}
|
17401
|
+
|
17402
|
+
/* Slide Up */
|
17403
|
+
.desktop-overlay--enter-slide-up .desktop-overlay__content {
|
17404
|
+
animation: desktopOverlaySlideUp var(--animation-duration, 300ms) ease-out;
|
17405
|
+
}
|
17406
|
+
|
17407
|
+
@keyframes desktopOverlaySlideUp {
|
17408
|
+
from {
|
17409
|
+
transform: translateY(100%);
|
17410
|
+
opacity: 0;
|
17411
|
+
}
|
17412
|
+
to {
|
17413
|
+
transform: translateY(0);
|
17414
|
+
opacity: 1;
|
17415
|
+
}
|
17416
|
+
}
|
17417
|
+
|
17418
|
+
/* Slide Down */
|
17419
|
+
.desktop-overlay--enter-slide-down .desktop-overlay__content {
|
17420
|
+
animation: desktopOverlaySlideDown var(--animation-duration, 300ms) ease-out;
|
17421
|
+
}
|
17422
|
+
|
17423
|
+
@keyframes desktopOverlaySlideDown {
|
17424
|
+
from {
|
17425
|
+
transform: translateY(-100%);
|
17426
|
+
opacity: 0;
|
17427
|
+
}
|
17428
|
+
to {
|
17429
|
+
transform: translateY(0);
|
17430
|
+
opacity: 1;
|
17431
|
+
}
|
17432
|
+
}
|
17433
|
+
|
17434
|
+
/* Slide Left */
|
17435
|
+
.desktop-overlay--enter-slide-left .desktop-overlay__content {
|
17436
|
+
animation: desktopOverlaySlideLeft var(--animation-duration, 300ms) ease-out;
|
17437
|
+
}
|
17438
|
+
|
17439
|
+
@keyframes desktopOverlaySlideLeft {
|
17440
|
+
from {
|
17441
|
+
transform: translateX(100%);
|
17442
|
+
opacity: 0;
|
17443
|
+
}
|
17444
|
+
to {
|
17445
|
+
transform: translateX(0);
|
17446
|
+
opacity: 1;
|
17447
|
+
}
|
17448
|
+
}
|
17449
|
+
|
17450
|
+
/* Slide Right */
|
17451
|
+
.desktop-overlay--enter-slide-right .desktop-overlay__content {
|
17452
|
+
animation: desktopOverlaySlideRight var(--animation-duration, 300ms) ease-out;
|
17453
|
+
}
|
17454
|
+
|
17455
|
+
@keyframes desktopOverlaySlideRight {
|
17456
|
+
from {
|
17457
|
+
transform: translateX(-100%);
|
17458
|
+
opacity: 0;
|
17459
|
+
}
|
17460
|
+
to {
|
17461
|
+
transform: translateX(0);
|
17462
|
+
opacity: 1;
|
17463
|
+
}
|
17464
|
+
}
|
17465
|
+
|
17466
|
+
/* Scale */
|
17467
|
+
.desktop-overlay--enter-scale .desktop-overlay__content {
|
17468
|
+
animation: desktopOverlayScaleIn var(--animation-duration, 300ms) ease-out;
|
17469
|
+
}
|
17470
|
+
|
17471
|
+
@keyframes desktopOverlayScaleIn {
|
17472
|
+
from {
|
17473
|
+
transform: scale(0.8);
|
17474
|
+
opacity: 0;
|
17475
|
+
}
|
17476
|
+
to {
|
17477
|
+
transform: scale(1);
|
17478
|
+
opacity: 1;
|
17479
|
+
}
|
17480
|
+
}
|
17481
|
+
|
17482
|
+
/* None */
|
17483
|
+
.desktop-overlay--enter-none {
|
17484
|
+
/* No animation */
|
17485
|
+
}
|
17486
|
+
|
17487
|
+
/* ============================================
|
17488
|
+
ANIMATIONS - EXIT
|
17489
|
+
============================================ */
|
17490
|
+
|
17491
|
+
/* Fade */
|
17492
|
+
.desktop-overlay--exit-fade {
|
17493
|
+
animation: desktopOverlayFadeOut var(--animation-duration, 300ms) ease-in;
|
17494
|
+
}
|
17495
|
+
|
17496
|
+
@keyframes desktopOverlayFadeOut {
|
17497
|
+
from {
|
17498
|
+
opacity: 1;
|
17499
|
+
}
|
17500
|
+
to {
|
17501
|
+
opacity: 0;
|
17502
|
+
}
|
17503
|
+
}
|
17504
|
+
|
17505
|
+
/* Slide Up */
|
17506
|
+
.desktop-overlay--exit-slide-up .desktop-overlay__content {
|
17507
|
+
animation: desktopOverlaySlideUpExit var(--animation-duration, 300ms) ease-in;
|
17508
|
+
}
|
17509
|
+
|
17510
|
+
@keyframes desktopOverlaySlideUpExit {
|
17511
|
+
from {
|
17512
|
+
transform: translateY(0);
|
17513
|
+
opacity: 1;
|
17514
|
+
}
|
17515
|
+
to {
|
17516
|
+
transform: translateY(-100%);
|
17517
|
+
opacity: 0;
|
17518
|
+
}
|
17519
|
+
}
|
17520
|
+
|
17521
|
+
/* Slide Down */
|
17522
|
+
.desktop-overlay--exit-slide-down .desktop-overlay__content {
|
17523
|
+
animation: desktopOverlaySlideDownExit var(--animation-duration, 300ms) ease-in;
|
17524
|
+
}
|
17525
|
+
|
17526
|
+
@keyframes desktopOverlaySlideDownExit {
|
17527
|
+
from {
|
17528
|
+
transform: translateY(0);
|
17529
|
+
opacity: 1;
|
17530
|
+
}
|
17531
|
+
to {
|
17532
|
+
transform: translateY(100%);
|
17533
|
+
opacity: 0;
|
17534
|
+
}
|
17535
|
+
}
|
17536
|
+
|
17537
|
+
/* Slide Left */
|
17538
|
+
.desktop-overlay--exit-slide-left .desktop-overlay__content {
|
17539
|
+
animation: desktopOverlaySlideLeftExit var(--animation-duration, 300ms) ease-in;
|
17540
|
+
}
|
17541
|
+
|
17542
|
+
@keyframes desktopOverlaySlideLeftExit {
|
17543
|
+
from {
|
17544
|
+
transform: translateX(0);
|
17545
|
+
opacity: 1;
|
17546
|
+
}
|
17547
|
+
to {
|
17548
|
+
transform: translateX(-100%);
|
17549
|
+
opacity: 0;
|
17550
|
+
}
|
17551
|
+
}
|
17552
|
+
|
17553
|
+
/* Slide Right */
|
17554
|
+
.desktop-overlay--exit-slide-right .desktop-overlay__content {
|
17555
|
+
animation: desktopOverlaySlideRightExit var(--animation-duration, 300ms) ease-in;
|
17556
|
+
}
|
17557
|
+
|
17558
|
+
@keyframes desktopOverlaySlideRightExit {
|
17559
|
+
from {
|
17560
|
+
transform: translateX(0);
|
17561
|
+
opacity: 1;
|
17562
|
+
}
|
17563
|
+
to {
|
17564
|
+
transform: translateX(100%);
|
17565
|
+
opacity: 0;
|
17566
|
+
}
|
17567
|
+
}
|
17568
|
+
|
17569
|
+
/* Scale */
|
17570
|
+
.desktop-overlay--exit-scale .desktop-overlay__content {
|
17571
|
+
animation: desktopOverlayScaleOut var(--animation-duration, 300ms) ease-in;
|
17572
|
+
}
|
17573
|
+
|
17574
|
+
@keyframes desktopOverlayScaleOut {
|
17575
|
+
from {
|
17576
|
+
transform: scale(1);
|
17577
|
+
opacity: 1;
|
17578
|
+
}
|
17579
|
+
to {
|
17580
|
+
transform: scale(0.8);
|
17581
|
+
opacity: 0;
|
17582
|
+
}
|
17583
|
+
}
|
17584
|
+
|
17585
|
+
/* None */
|
17586
|
+
.desktop-overlay--exit-none {
|
17587
|
+
/* No animation */
|
17588
|
+
}
|
17589
|
+
|
17590
|
+
/* ============================================
|
17591
|
+
LAUNCHPAD SPECIFIC OVERLAY
|
17592
|
+
============================================ */
|
17593
|
+
|
17594
|
+
.desktop-overlay--launchpad {
|
17595
|
+
align-items: flex-end;
|
17596
|
+
justify-content: flex-start;
|
17597
|
+
}
|
17598
|
+
|
17599
|
+
.desktop-overlay__content--launchpad {
|
17600
|
+
padding: 0 0 0 15px;
|
17601
|
+
}
|
17602
|
+
|
17603
|
+
/* Responsive design */
|
17604
|
+
@media (max-width: 768px) {
|
17605
|
+
.desktop {
|
17606
|
+
font-size: 14px;
|
17607
|
+
}
|
17608
|
+
|
17609
|
+
.desktop-overlay--size-large .desktop-overlay__content {
|
17610
|
+
width: 90%;
|
17611
|
+
height: 90%;
|
17612
|
+
}
|
17613
|
+
|
17614
|
+
.desktop-overlay--size-medium .desktop-overlay__content {
|
17615
|
+
width: 80%;
|
17616
|
+
height: 80%;
|
17617
|
+
}
|
17618
|
+
|
17619
|
+
.desktop-overlay--size-small .desktop-overlay__content {
|
17620
|
+
width: 70%;
|
17621
|
+
height: 70%;
|
17622
|
+
}
|
17623
|
+
}
|
17624
|
+
|
17625
|
+
@media (max-width: 480px) {
|
17626
|
+
.desktop {
|
17627
|
+
font-size: 12px;
|
17628
|
+
}
|
17629
|
+
|
17630
|
+
.desktop-overlay--size-large .desktop-overlay__content,
|
17631
|
+
.desktop-overlay--size-medium .desktop-overlay__content,
|
17632
|
+
.desktop-overlay--size-small .desktop-overlay__content {
|
17633
|
+
width: 95%;
|
17634
|
+
height: 95%;
|
17635
|
+
}
|
17636
|
+
}
|
17637
|
+
/* Windows 11 Desktop Theme */
|
17638
|
+
|
17639
|
+
.desktop--windows {
|
17640
|
+
background: linear-gradient(135deg, #0067C0 0%, #0078D4 50%, #00BCF2 100%);
|
17641
|
+
font-family: 'Segoe UI Variable', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
17642
|
+
}
|
17643
|
+
|
17644
|
+
.desktop--windows .desktop__background {
|
17645
|
+
background-image:
|
17646
|
+
radial-gradient(circle at 30% 70%, rgba(0, 120, 212, 0.4) 0%, transparent 60%),
|
17647
|
+
radial-gradient(circle at 70% 30%, rgba(0, 188, 242, 0.3) 0%, transparent 60%),
|
17648
|
+
radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
|
17649
|
+
}
|
17650
|
+
|
17651
|
+
/* Windows-style taskbar */
|
17652
|
+
.desktop--windows .window {
|
17653
|
+
border: 1px solid #cccccc;
|
17654
|
+
border-radius: 8px;
|
17655
|
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
17656
|
+
background: #ffffff;
|
17657
|
+
}
|
17658
|
+
|
17659
|
+
.desktop--windows .window__header {
|
17660
|
+
background: linear-gradient(180deg, #f0f0f0 0%, #e5e5e5 100%);
|
17661
|
+
border-bottom: 1px solid #d0d0d0;
|
17662
|
+
border-radius: 8px 8px 0 0;
|
17663
|
+
height: 32px;
|
17664
|
+
padding: 0 12px;
|
17665
|
+
}
|
17666
|
+
|
17667
|
+
.desktop--windows .window__title {
|
17668
|
+
font-size: 13px;
|
17669
|
+
font-weight: 400;
|
17670
|
+
color: #333333;
|
17671
|
+
}
|
17672
|
+
|
17673
|
+
.desktop--windows .window__control {
|
17674
|
+
width: 46px;
|
17675
|
+
height: 32px;
|
17676
|
+
border: none;
|
17677
|
+
background: transparent;
|
17678
|
+
font-size: 10px;
|
17679
|
+
font-family: 'Segoe MDL2 Assets', 'Segoe UI Symbol', sans-serif;
|
17680
|
+
color: #333333;
|
17681
|
+
display: flex;
|
17682
|
+
align-items: center;
|
17683
|
+
justify-content: center;
|
17684
|
+
transition: background-color 0.1s ease;
|
17685
|
+
}
|
17686
|
+
|
17687
|
+
.desktop--windows .window__control:hover {
|
17688
|
+
background: rgba(0, 0, 0, 0.1);
|
17689
|
+
}
|
17690
|
+
|
17691
|
+
.desktop--windows .window__control--minimize:hover {
|
17692
|
+
background: #e5e5e5;
|
17693
|
+
}
|
17694
|
+
|
17695
|
+
.desktop--windows .window__control--maximize:hover {
|
17696
|
+
background: #e5e5e5;
|
17697
|
+
}
|
17698
|
+
|
17699
|
+
.desktop--windows .window__control--close:hover {
|
17700
|
+
background: #e81123;
|
17701
|
+
color: white;
|
17702
|
+
}
|
17703
|
+
|
17704
|
+
.desktop--windows .window__control--minimize::before {
|
17705
|
+
content: '🗕';
|
17706
|
+
}
|
17707
|
+
|
17708
|
+
.desktop--windows .window__control--maximize::before {
|
17709
|
+
content: '🗖';
|
17710
|
+
}
|
17711
|
+
|
17712
|
+
.desktop--windows .window__control--close::before {
|
17713
|
+
content: '🗙';
|
17714
|
+
}
|
17715
|
+
|
17716
|
+
/* Windows taskbar styling */
|
17717
|
+
.desktop--windows .desktop-taskbar {
|
17718
|
+
background: rgba(0, 0, 0, 0.8);
|
17719
|
+
backdrop-filter: blur(20px);
|
17720
|
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
17721
|
+
}
|
17722
|
+
|
17723
|
+
.desktop--windows .desktop-taskbar .icon {
|
17724
|
+
color: rgba(255, 255, 255, 0.9);
|
17725
|
+
}
|
17726
|
+
|
17727
|
+
.desktop--windows .desktop-taskbar .icon:hover {
|
17728
|
+
color: #ffffff;
|
17729
|
+
background-color: rgba(255, 255, 255, 0.15);
|
17730
|
+
}
|
17731
|
+
|
17732
|
+
.desktop--windows .taskbar-button {
|
17733
|
+
background: rgba(255, 255, 255, 0.1);
|
17734
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
17735
|
+
border-radius: 4px;
|
17736
|
+
color: white;
|
17737
|
+
font-family: 'Segoe UI', sans-serif;
|
17738
|
+
font-size: 14px;
|
17739
|
+
transition: all 0.2s ease;
|
17740
|
+
}
|
17741
|
+
|
17742
|
+
.desktop--windows .taskbar-button:hover {
|
17743
|
+
background: rgba(255, 255, 255, 0.2);
|
17744
|
+
border-color: rgba(255, 255, 255, 0.3);
|
17745
|
+
}
|
17746
|
+
|
17747
|
+
.desktop--windows .taskbar-button--active {
|
17748
|
+
background: rgba(255, 255, 255, 0.25);
|
17749
|
+
border-color: rgba(255, 255, 255, 0.4);
|
17750
|
+
}
|
17751
|
+
|
17752
|
+
/* Windows Start Button Styling */
|
17753
|
+
.desktop--windows .toggle-button {
|
17754
|
+
/* Reset selector styles and apply Windows button styling */
|
17755
|
+
position: relative;
|
17756
|
+
padding: 8px 16px;
|
17757
|
+
display: flex;
|
17758
|
+
align-items: center;
|
17759
|
+
justify-content: center;
|
17760
|
+
gap: 8px;
|
17761
|
+
overflow: hidden;
|
17762
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
17763
|
+
outline: none;
|
17764
|
+
transition: all 0.2s ease;
|
17765
|
+
color: white;
|
17766
|
+
background: linear-gradient(180deg, #0078d4 0%, #106ebe 100%);
|
17767
|
+
min-height: 40px;
|
17768
|
+
border-radius: 4px;
|
17769
|
+
cursor: pointer;
|
17770
|
+
font-family: 'Segoe UI', sans-serif;
|
17771
|
+
font-weight: 500;
|
17772
|
+
text-decoration: none;
|
17773
|
+
white-space: nowrap;
|
17774
|
+
list-style: none;
|
17775
|
+
margin: 0;
|
17776
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
17777
|
+
}
|
17778
|
+
|
17779
|
+
.desktop--windows .toggle-button:hover:not(.toggle-button--disabled) {
|
17780
|
+
background: linear-gradient(180deg, #106ebe 0%, #005a9e 100%);
|
17781
|
+
border-color: rgba(255, 255, 255, 0.3);
|
17782
|
+
transform: none;
|
17783
|
+
}
|
17784
|
+
|
17785
|
+
.desktop--windows .toggle-button.selected {
|
17786
|
+
background: linear-gradient(180deg, #005a9e 0%, #004578 100%);
|
17787
|
+
color: white;
|
17788
|
+
border-color: rgba(255, 255, 255, 0.4);
|
17789
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
|
17790
|
+
}
|
17791
|
+
|
17792
|
+
.desktop--windows .toggle-button:focus {
|
17793
|
+
outline: 2px solid rgba(255, 255, 255, 0.5);
|
17794
|
+
outline-offset: 2px;
|
17795
|
+
}
|
17796
|
+
|
17797
|
+
.desktop--windows .toggle-button--disabled {
|
17798
|
+
background: rgba(200, 200, 200, 0.3) !important;
|
17799
|
+
color: rgba(100, 100, 100, 0.5) !important;
|
17800
|
+
border-color: rgba(255, 255, 255, 0.1) !important;
|
17801
|
+
cursor: not-allowed;
|
17802
|
+
opacity: 1;
|
17803
|
+
box-shadow: none;
|
17804
|
+
}
|
17805
|
+
|
17806
|
+
/* Windows LaunchPad */
|
17807
|
+
.desktop--windows .launchpad {
|
17808
|
+
background: rgba(248, 248, 248, 0.95);
|
17809
|
+
backdrop-filter: blur(20px);
|
17810
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
17811
|
+
border-radius: 8px;
|
17812
|
+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
|
17813
|
+
}
|
17814
|
+
|
17815
|
+
.desktop--windows .launchpad__header {
|
17816
|
+
background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
|
17817
|
+
border-bottom: 1px solid #d0d0d0;
|
17818
|
+
}
|
17819
|
+
|
17820
|
+
.desktop--windows .launchpad__search-input {
|
17821
|
+
border: 2px solid #e0e0e0;
|
17822
|
+
border-radius: 4px;
|
17823
|
+
font-family: 'Segoe UI', sans-serif;
|
17824
|
+
}
|
17825
|
+
|
17826
|
+
.desktop--windows .launchpad__search-input:focus {
|
17337
17827
|
border-color: #0078d4;
|
17338
17828
|
outline: none;
|
17339
17829
|
}
|
17340
17830
|
|
17341
|
-
.desktop--windows .
|
17342
|
-
background: #
|
17343
|
-
|
17831
|
+
.desktop--windows .launchpad__sidebar {
|
17832
|
+
background: #f8f8f8;
|
17833
|
+
border-right: 1px solid #e0e0e0;
|
17834
|
+
}
|
17835
|
+
|
17836
|
+
.desktop--windows .launchpad__categories {
|
17837
|
+
background: #f8f8f8;
|
17838
|
+
}
|
17839
|
+
|
17840
|
+
.desktop--windows .launchpad__category {
|
17841
|
+
background: #ffffff;
|
17842
|
+
font-family: 'Segoe UI', sans-serif;
|
17843
|
+
font-size: 13px;
|
17844
|
+
}
|
17845
|
+
|
17846
|
+
.desktop--windows .launchpad__category:hover {
|
17847
|
+
background: #f5f5f5;
|
17848
|
+
}
|
17849
|
+
|
17850
|
+
.desktop--windows .launchpad__category.active {
|
17851
|
+
background: #0078d4;
|
17852
|
+
border-color: #0078d4;
|
17853
|
+
color: white;
|
17854
|
+
}
|
17855
|
+
|
17856
|
+
.desktop--windows .launchpad__app {
|
17857
|
+
background: #ffffff;
|
17858
|
+
border: 1px solid transparent;
|
17859
|
+
border-radius: 8px;
|
17860
|
+
transition: all 0.15s ease;
|
17861
|
+
}
|
17862
|
+
|
17863
|
+
.desktop--windows .launchpad__app:hover {
|
17864
|
+
background: #f5f5f5;
|
17865
|
+
border-color: #e0e0e0;
|
17866
|
+
transform: translateY(-1px);
|
17867
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
17868
|
+
}
|
17869
|
+
|
17870
|
+
.desktop--windows .app-name {
|
17871
|
+
font-family: 'Segoe UI', sans-serif;
|
17872
|
+
font-size: 13px;
|
17873
|
+
font-weight: 400;
|
17874
|
+
color: #333333;
|
17875
|
+
}
|
17876
|
+
|
17877
|
+
/* Windows scrollbar */
|
17878
|
+
.desktop--windows .launchpad__content::-webkit-scrollbar {
|
17879
|
+
width: 12px;
|
17880
|
+
}
|
17881
|
+
|
17882
|
+
.desktop--windows .launchpad__content::-webkit-scrollbar-track {
|
17883
|
+
background: #f1f1f1;
|
17884
|
+
border-radius: 6px;
|
17885
|
+
}
|
17886
|
+
|
17887
|
+
.desktop--windows .launchpad__content::-webkit-scrollbar-thumb {
|
17888
|
+
background: #c1c1c1;
|
17889
|
+
border-radius: 6px;
|
17890
|
+
border: 2px solid #f1f1f1;
|
17891
|
+
}
|
17892
|
+
|
17893
|
+
.desktop--windows .launchpad__content::-webkit-scrollbar-thumb:hover {
|
17894
|
+
background: #a8a8a8;
|
17895
|
+
}
|
17896
|
+
/* macOS Desktop Theme */
|
17897
|
+
|
17898
|
+
.desktop--macos {
|
17899
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
17900
|
+
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
|
17901
|
+
}
|
17902
|
+
|
17903
|
+
.desktop--macos .desktop__background {
|
17904
|
+
background-image:
|
17905
|
+
radial-gradient(circle at 25% 75%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
|
17906
|
+
radial-gradient(circle at 75% 25%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
|
17907
|
+
radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
|
17908
|
+
}
|
17909
|
+
|
17910
|
+
/* macOS-style windows */
|
17911
|
+
.desktop--macos .window {
|
17912
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
17913
|
+
border-radius: 12px;
|
17914
|
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
17915
|
+
background: rgba(255, 255, 255, 0.95);
|
17916
|
+
backdrop-filter: blur(20px);
|
17917
|
+
overflow: hidden;
|
17918
|
+
}
|
17919
|
+
|
17920
|
+
.desktop--macos .window__header {
|
17921
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 245, 245, 0.8) 100%);
|
17922
|
+
backdrop-filter: blur(20px);
|
17923
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
17924
|
+
border-radius: 12px 12px 0 0;
|
17925
|
+
height: 36px;
|
17926
|
+
padding: 0 16px;
|
17927
|
+
}
|
17928
|
+
|
17929
|
+
.desktop--macos .window__title {
|
17930
|
+
font-size: 13px;
|
17931
|
+
font-weight: 600;
|
17932
|
+
color: #1d1d1f;
|
17933
|
+
text-align: center;
|
17934
|
+
}
|
17935
|
+
|
17936
|
+
.desktop--macos .window__controls {
|
17937
|
+
order: -1;
|
17938
|
+
margin-right: auto;
|
17939
|
+
}
|
17940
|
+
|
17941
|
+
.desktop--macos .window__control {
|
17942
|
+
width: 12px;
|
17943
|
+
height: 12px;
|
17944
|
+
border: none;
|
17945
|
+
border-radius: 50%;
|
17946
|
+
font-size: 8px;
|
17947
|
+
color: rgba(0, 0, 0, 0.6);
|
17948
|
+
display: flex;
|
17949
|
+
align-items: center;
|
17950
|
+
justify-content: center;
|
17951
|
+
transition: all 0.2s ease;
|
17952
|
+
margin-right: 8px;
|
17953
|
+
position: relative;
|
17954
|
+
}
|
17955
|
+
|
17956
|
+
.desktop--macos .window__control::before {
|
17957
|
+
opacity: 0;
|
17958
|
+
transition: opacity 0.2s ease;
|
17959
|
+
}
|
17960
|
+
|
17961
|
+
.desktop--macos .window:hover .window__control::before {
|
17962
|
+
opacity: 1;
|
17963
|
+
}
|
17964
|
+
|
17965
|
+
.desktop--macos .window__control--close {
|
17966
|
+
background: #ff5f57;
|
17967
|
+
border: 0.5px solid #e0443e;
|
17968
|
+
}
|
17969
|
+
|
17970
|
+
.desktop--macos .window__control--minimize {
|
17971
|
+
background: #ffbd2e;
|
17972
|
+
border: 0.5px solid #dea123;
|
17973
|
+
}
|
17974
|
+
|
17975
|
+
.desktop--macos .window__control--maximize {
|
17976
|
+
background: #28ca42;
|
17977
|
+
border: 0.5px solid #1aad34;
|
17978
|
+
}
|
17979
|
+
|
17980
|
+
.desktop--macos .window__control:hover {
|
17981
|
+
transform: scale(1.1);
|
17982
|
+
}
|
17983
|
+
|
17984
|
+
.desktop--macos .window__control--close::before {
|
17985
|
+
content: '×';
|
17986
|
+
font-weight: bold;
|
17987
|
+
font-size: 10px;
|
17988
|
+
}
|
17989
|
+
|
17990
|
+
.desktop--macos .window__control--minimize::before {
|
17991
|
+
content: '−';
|
17992
|
+
font-weight: bold;
|
17993
|
+
font-size: 8px;
|
17994
|
+
}
|
17995
|
+
|
17996
|
+
.desktop--macos .window__control--maximize::before {
|
17997
|
+
content: '+';
|
17998
|
+
font-weight: bold;
|
17999
|
+
font-size: 8px;
|
18000
|
+
}
|
18001
|
+
|
18002
|
+
/* macOS taskbar styling (Dock-inspired) */
|
18003
|
+
.desktop--macos .desktop-taskbar {
|
18004
|
+
background: rgba(255, 255, 255, 0.8);
|
18005
|
+
backdrop-filter: blur(20px);
|
18006
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
18007
|
+
border-radius: 16px 16px 0 0;
|
18008
|
+
}
|
18009
|
+
|
18010
|
+
.desktop--macos .desktop-taskbar .icon {
|
18011
|
+
color: rgba(0, 0, 0, 0.7);
|
18012
|
+
}
|
18013
|
+
|
18014
|
+
.desktop--macos .desktop-taskbar .icon:hover {
|
18015
|
+
color: rgba(0, 0, 0, 0.9);
|
18016
|
+
background-color: rgba(0, 0, 0, 0.08);
|
18017
|
+
}
|
18018
|
+
|
18019
|
+
/* macOS taskbar menu styling */
|
18020
|
+
.desktop--macos .desktop-taskbar .menu-icon > menu {
|
18021
|
+
background-color: rgba(255, 255, 255, 0.95);
|
18022
|
+
backdrop-filter: blur(40px);
|
18023
|
+
border-color: rgba(0, 0, 0, 0.15);
|
18024
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
|
18025
|
+
}
|
18026
|
+
|
18027
|
+
.desktop--macos .desktop-taskbar .menu-icon > menu .menu-item > label {
|
18028
|
+
color: rgba(0, 0, 0, 0.9);
|
18029
|
+
}
|
18030
|
+
|
18031
|
+
.desktop--macos .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
18032
|
+
color: rgba(0, 0, 0, 0.7);
|
18033
|
+
}
|
18034
|
+
|
18035
|
+
.desktop--macos .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
18036
|
+
background: rgba(0, 122, 255, 0.15);
|
18037
|
+
}
|
18038
|
+
|
18039
|
+
.desktop--macos .desktop-taskbar .menu-icon > menu .menu-separator {
|
18040
|
+
border-color: rgba(0, 0, 0, 0.1);
|
18041
|
+
}
|
18042
|
+
|
18043
|
+
.desktop--macos .taskbar-button {
|
18044
|
+
background: rgba(0, 0, 0, 0.05);
|
18045
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
18046
|
+
border-radius: 12px;
|
18047
|
+
color: #1d1d1f;
|
18048
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18049
|
+
font-size: 13px;
|
18050
|
+
font-weight: 500;
|
18051
|
+
transition: all 0.3s ease;
|
18052
|
+
backdrop-filter: blur(10px);
|
18053
|
+
}
|
18054
|
+
|
18055
|
+
.desktop--macos .taskbar-button:hover {
|
18056
|
+
background: rgba(0, 0, 0, 0.1);
|
18057
|
+
border-color: rgba(0, 0, 0, 0.2);
|
18058
|
+
transform: translateY(-2px);
|
18059
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
18060
|
+
}
|
18061
|
+
|
18062
|
+
.desktop--macos .taskbar-button--active {
|
18063
|
+
background: rgba(0, 122, 255, 0.15);
|
18064
|
+
border-color: rgba(0, 122, 255, 0.3);
|
18065
|
+
color: #007aff;
|
18066
|
+
}
|
18067
|
+
|
18068
|
+
/* macOS Start Button Styling (Dock-inspired) */
|
18069
|
+
.desktop--macos .toggle-button {
|
18070
|
+
/* Reset selector styles and apply macOS button styling */
|
18071
|
+
position: relative;
|
18072
|
+
padding: 8px 16px;
|
18073
|
+
display: flex;
|
18074
|
+
align-items: center;
|
18075
|
+
justify-content: center;
|
18076
|
+
gap: 8px;
|
18077
|
+
overflow: hidden;
|
18078
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
18079
|
+
outline: none;
|
18080
|
+
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
18081
|
+
color: #1d1d1f;
|
18082
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.9) 100%);
|
18083
|
+
min-height: 40px;
|
18084
|
+
border-radius: 12px;
|
18085
|
+
cursor: pointer;
|
18086
|
+
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
18087
|
+
font-weight: 500;
|
18088
|
+
text-decoration: none;
|
18089
|
+
white-space: nowrap;
|
18090
|
+
list-style: none;
|
18091
|
+
margin: 0;
|
18092
|
+
backdrop-filter: blur(20px);
|
18093
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
18094
|
+
}
|
18095
|
+
|
18096
|
+
.desktop--macos .toggle-button:hover:not(.toggle-button--disabled) {
|
18097
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
|
18098
|
+
border-color: rgba(0, 0, 0, 0.15);
|
18099
|
+
transform: translateY(-1px);
|
18100
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
18101
|
+
}
|
18102
|
+
|
18103
|
+
.desktop--macos .toggle-button.selected {
|
18104
|
+
background: linear-gradient(180deg, rgba(0, 122, 255, 0.9) 0%, rgba(0, 100, 210, 0.9) 100%);
|
18105
|
+
color: white;
|
18106
|
+
border-color: rgba(0, 122, 255, 0.3);
|
18107
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 122, 255, 0.3);
|
18108
|
+
}
|
18109
|
+
|
18110
|
+
.desktop--macos .toggle-button:focus {
|
18111
|
+
outline: 2px solid rgba(0, 122, 255, 0.5);
|
18112
|
+
outline-offset: 2px;
|
18113
|
+
}
|
18114
|
+
|
18115
|
+
.desktop--macos .toggle-button--disabled {
|
18116
|
+
background: rgba(248, 248, 248, 0.5) !important;
|
18117
|
+
color: rgba(60, 60, 67, 0.3) !important;
|
18118
|
+
border-color: rgba(0, 0, 0, 0.05) !important;
|
18119
|
+
cursor: not-allowed;
|
18120
|
+
opacity: 1;
|
18121
|
+
box-shadow: none;
|
18122
|
+
backdrop-filter: none;
|
18123
|
+
}
|
18124
|
+
|
18125
|
+
/* macOS LaunchPad */
|
18126
|
+
.desktop--macos .launchpad {
|
18127
|
+
background: rgba(255, 255, 255, 0.9);
|
18128
|
+
backdrop-filter: blur(40px);
|
18129
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
18130
|
+
border-radius: 20px;
|
18131
|
+
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
18132
|
+
}
|
18133
|
+
|
18134
|
+
.desktop--macos .launchpad__header {
|
18135
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 248, 248, 0.8) 100%);
|
18136
|
+
backdrop-filter: blur(20px);
|
18137
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
18138
|
+
border-radius: 20px 20px 0 0;
|
18139
|
+
}
|
18140
|
+
|
18141
|
+
.desktop--macos .launchpad__header h2 {
|
18142
|
+
color: #1d1d1f;
|
18143
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18144
|
+
font-weight: 600;
|
18145
|
+
font-size: 20px;
|
18146
|
+
}
|
18147
|
+
|
18148
|
+
.desktop--macos .launchpad__close {
|
18149
|
+
color: #8e8e93;
|
18150
|
+
background: rgba(0, 0, 0, 0.05);
|
18151
|
+
border-radius: 8px;
|
18152
|
+
font-size: 18px;
|
18153
|
+
}
|
18154
|
+
|
18155
|
+
.desktop--macos .launchpad__close:hover {
|
18156
|
+
background: rgba(255, 95, 87, 0.8);
|
18157
|
+
color: white;
|
18158
|
+
}
|
18159
|
+
|
18160
|
+
.desktop--macos .launchpad__search-input {
|
18161
|
+
background: rgba(0, 0, 0, 0.05);
|
18162
|
+
border: 2px solid rgba(0, 0, 0, 0.1);
|
18163
|
+
border-radius: 12px;
|
18164
|
+
color: #1d1d1f;
|
18165
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18166
|
+
font-size: 15px;
|
18167
|
+
}
|
18168
|
+
|
18169
|
+
.desktop--macos .launchpad__search-input::placeholder {
|
18170
|
+
color: #8e8e93;
|
18171
|
+
}
|
18172
|
+
|
18173
|
+
.desktop--macos .launchpad__search-input:focus {
|
18174
|
+
border-color: rgba(0, 122, 255, 0.8);
|
18175
|
+
background: rgba(255, 255, 255, 0.8);
|
18176
|
+
outline: none;
|
18177
|
+
box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
|
18178
|
+
}
|
18179
|
+
|
18180
|
+
.desktop--macos .launchpad__sidebar {
|
18181
|
+
background: rgba(248, 248, 248, 0.8);
|
18182
|
+
border-right: 1px solid rgba(0, 0, 0, 0.1);
|
18183
|
+
}
|
18184
|
+
|
18185
|
+
.desktop--macos .launchpad__categories {
|
18186
|
+
background: rgba(248, 248, 248, 0.8);
|
18187
|
+
}
|
18188
|
+
|
18189
|
+
.desktop--macos .launchpad__category {
|
18190
|
+
background: rgba(0, 0, 0, 0.05);
|
18191
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
18192
|
+
border-radius: 20px;
|
18193
|
+
color: #1d1d1f;
|
18194
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18195
|
+
font-size: 13px;
|
18196
|
+
font-weight: 500;
|
18197
|
+
}
|
18198
|
+
|
18199
|
+
.desktop--macos .launchpad__category:hover {
|
18200
|
+
background: rgba(0, 0, 0, 0.1);
|
18201
|
+
border-color: rgba(0, 0, 0, 0.2);
|
18202
|
+
}
|
18203
|
+
|
18204
|
+
.desktop--macos .launchpad__category.active {
|
18205
|
+
background: rgba(0, 122, 255, 0.8);
|
18206
|
+
border-color: rgba(0, 122, 255, 1);
|
18207
|
+
color: white;
|
18208
|
+
}
|
18209
|
+
|
18210
|
+
.desktop--macos .launchpad__app {
|
18211
|
+
background: rgba(255, 255, 255, 0.6);
|
18212
|
+
border: 1px solid transparent;
|
18213
|
+
border-radius: 16px;
|
18214
|
+
transition: all 0.3s ease;
|
18215
|
+
backdrop-filter: blur(10px);
|
18216
|
+
}
|
18217
|
+
|
18218
|
+
.desktop--macos .launchpad__app:hover {
|
18219
|
+
background: rgba(255, 255, 255, 0.8);
|
18220
|
+
border-color: rgba(0, 0, 0, 0.1);
|
18221
|
+
transform: translateY(-4px) scale(1.05);
|
18222
|
+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
18223
|
+
}
|
18224
|
+
|
18225
|
+
.desktop--macos .app-name {
|
18226
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18227
|
+
font-size: 12px;
|
18228
|
+
font-weight: 500;
|
18229
|
+
color: #1d1d1f;
|
18230
|
+
}
|
18231
|
+
|
18232
|
+
.desktop--macos .category-title {
|
18233
|
+
color: #1d1d1f;
|
18234
|
+
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
18235
|
+
font-weight: 600;
|
18236
|
+
}
|
18237
|
+
|
18238
|
+
/* macOS scrollbar */
|
18239
|
+
.desktop--macos .launchpad__content::-webkit-scrollbar {
|
18240
|
+
width: 6px;
|
18241
|
+
}
|
18242
|
+
|
18243
|
+
.desktop--macos .launchpad__content::-webkit-scrollbar-track {
|
18244
|
+
background: transparent;
|
18245
|
+
}
|
18246
|
+
|
18247
|
+
.desktop--macos .launchpad__content::-webkit-scrollbar-thumb {
|
18248
|
+
background: rgba(0, 0, 0, 0.2);
|
18249
|
+
border-radius: 3px;
|
18250
|
+
}
|
18251
|
+
|
18252
|
+
.desktop--macos .launchpad__content::-webkit-scrollbar-thumb:hover {
|
18253
|
+
background: rgba(0, 0, 0, 0.4);
|
18254
|
+
}
|
18255
|
+
/* GNOME Desktop Theme (Ubuntu/Fedora inspired) */
|
18256
|
+
|
18257
|
+
.desktop--gnome {
|
18258
|
+
background: linear-gradient(135deg, #2c001e 0%, #4c2c92 50%, #0e4b99 100%);
|
18259
|
+
font-family: 'Ubuntu', 'Cantarell', 'DejaVu Sans', sans-serif;
|
18260
|
+
}
|
18261
|
+
|
18262
|
+
.desktop--gnome .desktop__background {
|
18263
|
+
background-image:
|
18264
|
+
radial-gradient(circle at 30% 70%, rgba(233, 84, 32, 0.2) 0%, transparent 50%),
|
18265
|
+
radial-gradient(circle at 70% 30%, rgba(119, 41, 83, 0.3) 0%, transparent 50%),
|
18266
|
+
radial-gradient(circle at 50% 50%, rgba(14, 75, 153, 0.2) 0%, transparent 50%);
|
18267
|
+
}
|
18268
|
+
|
18269
|
+
/* GNOME-style windows */
|
18270
|
+
.desktop--gnome .window {
|
18271
|
+
border: 1px solid #2d2d2d;
|
18272
|
+
border-radius: 12px 12px 0 0;
|
18273
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
18274
|
+
background: #ffffff;
|
18275
|
+
overflow: hidden;
|
18276
|
+
}
|
18277
|
+
|
18278
|
+
.desktop--gnome .window__header {
|
18279
|
+
background: linear-gradient(180deg, #f6f5f4 0%, #e6e5e4 100%);
|
18280
|
+
border-bottom: 1px solid #d0cfce;
|
18281
|
+
border-radius: 12px 12px 0 0;
|
18282
|
+
height: 38px;
|
18283
|
+
padding: 0 16px;
|
18284
|
+
}
|
18285
|
+
|
18286
|
+
.desktop--gnome .window__title {
|
18287
|
+
font-size: 14px;
|
18288
|
+
font-weight: 500;
|
18289
|
+
color: #2e3436;
|
18290
|
+
}
|
18291
|
+
|
18292
|
+
.desktop--gnome .window__control {
|
18293
|
+
width: 24px;
|
18294
|
+
height: 24px;
|
18295
|
+
border: none;
|
18296
|
+
border-radius: 50%;
|
18297
|
+
font-size: 12px;
|
18298
|
+
color: #2e3436;
|
18299
|
+
display: flex;
|
18300
|
+
align-items: center;
|
18301
|
+
justify-content: center;
|
18302
|
+
transition: all 0.2s ease;
|
18303
|
+
margin-left: 8px;
|
18304
|
+
}
|
18305
|
+
|
18306
|
+
.desktop--gnome .window__control--minimize {
|
18307
|
+
background: #f6d32d;
|
18308
|
+
border: 1px solid #f5c211;
|
18309
|
+
}
|
18310
|
+
|
18311
|
+
.desktop--gnome .window__control--maximize {
|
18312
|
+
background: #33d17a;
|
18313
|
+
border: 1px solid #2ec27e;
|
18314
|
+
}
|
18315
|
+
|
18316
|
+
.desktop--gnome .window__control--close {
|
18317
|
+
background: #e01b24;
|
18318
|
+
border: 1px solid #c01c28;
|
18319
|
+
color: white;
|
18320
|
+
}
|
18321
|
+
|
18322
|
+
.desktop--gnome .window__control:hover {
|
18323
|
+
transform: scale(1.1);
|
18324
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
18325
|
+
}
|
18326
|
+
|
18327
|
+
.desktop--gnome .window__control--minimize::before {
|
18328
|
+
content: '−';
|
18329
|
+
font-weight: bold;
|
18330
|
+
}
|
18331
|
+
|
18332
|
+
.desktop--gnome .window__control--maximize::before {
|
18333
|
+
content: '□';
|
18334
|
+
font-weight: bold;
|
18335
|
+
}
|
18336
|
+
|
18337
|
+
.desktop--gnome .window__control--close::before {
|
18338
|
+
content: '×';
|
18339
|
+
font-weight: bold;
|
18340
|
+
}
|
18341
|
+
|
18342
|
+
/* GNOME taskbar styling (GNOME Activities) */
|
18343
|
+
.desktop--gnome .desktop-taskbar {
|
18344
|
+
background: rgba(0, 0, 0, 0.85);
|
18345
|
+
backdrop-filter: blur(10px);
|
18346
|
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
18347
|
+
}
|
18348
|
+
|
18349
|
+
.desktop--gnome .desktop-taskbar .icon {
|
18350
|
+
color: rgba(255, 255, 255, 0.9);
|
18351
|
+
}
|
18352
|
+
|
18353
|
+
.desktop--gnome .desktop-taskbar .icon:hover {
|
18354
|
+
color: #ffffff;
|
18355
|
+
background-color: rgba(255, 255, 255, 0.12);
|
18356
|
+
}
|
18357
|
+
|
18358
|
+
.desktop--gnome .taskbar-button {
|
18359
|
+
background: rgba(255, 255, 255, 0.08);
|
18360
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
18361
|
+
border-radius: 8px;
|
18362
|
+
color: #ffffff;
|
18363
|
+
font-family: 'Ubuntu', sans-serif;
|
18364
|
+
font-size: 13px;
|
18365
|
+
font-weight: 400;
|
18366
|
+
transition: all 0.3s ease;
|
18367
|
+
}
|
18368
|
+
|
18369
|
+
.desktop--gnome .taskbar-button:hover {
|
18370
|
+
background: rgba(255, 255, 255, 0.15);
|
18371
|
+
border-color: rgba(255, 255, 255, 0.25);
|
18372
|
+
transform: translateY(-1px);
|
18373
|
+
}
|
18374
|
+
|
18375
|
+
.desktop--gnome .taskbar-button--active {
|
18376
|
+
background: rgba(53, 132, 228, 0.3);
|
18377
|
+
border-color: rgba(53, 132, 228, 0.5);
|
18378
|
+
}
|
18379
|
+
|
18380
|
+
/* Linux Start Button Styling (GNOME Activities) */
|
18381
|
+
.desktop--gnome .toggle-button {
|
18382
|
+
/* Reset selector styles and apply Linux button styling */
|
18383
|
+
position: relative;
|
18384
|
+
padding: 8px 16px;
|
18385
|
+
display: flex;
|
18386
|
+
align-items: center;
|
18387
|
+
justify-content: center;
|
18388
|
+
gap: 8px;
|
18389
|
+
overflow: hidden;
|
18390
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
18391
|
+
outline: none;
|
18392
|
+
transition: all 0.3s ease;
|
18393
|
+
color: #ffffff;
|
18394
|
+
background: linear-gradient(180deg, rgba(53, 132, 228, 0.9) 0%, rgba(26, 95, 180, 0.9) 100%);
|
18395
|
+
min-height: 40px;
|
18396
|
+
border-radius: 8px;
|
18397
|
+
cursor: pointer;
|
18398
|
+
font-family: 'Ubuntu', 'Cantarell', sans-serif;
|
18399
|
+
font-weight: 500;
|
18400
|
+
text-decoration: none;
|
18401
|
+
white-space: nowrap;
|
18402
|
+
list-style: none;
|
18403
|
+
margin: 0;
|
18404
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
18405
|
+
}
|
18406
|
+
|
18407
|
+
.desktop--gnome .toggle-button:hover:not(.toggle-button--disabled) {
|
18408
|
+
background: linear-gradient(180deg, rgba(53, 132, 228, 1) 0%, rgba(26, 95, 180, 1) 100%);
|
18409
|
+
border-color: rgba(255, 255, 255, 0.25);
|
18410
|
+
transform: translateY(-1px);
|
18411
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
|
18412
|
+
}
|
18413
|
+
|
18414
|
+
.desktop--gnome .toggle-button.selected {
|
18415
|
+
background: linear-gradient(180deg, rgba(26, 95, 180, 0.9) 0%, rgba(15, 70, 140, 0.9) 100%);
|
18416
|
+
color: #ffffff;
|
18417
|
+
border-color: rgba(255, 255, 255, 0.3);
|
18418
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(53, 132, 228, 0.4);
|
18419
|
+
}
|
18420
|
+
|
18421
|
+
.desktop--gnome .toggle-button:focus {
|
18422
|
+
outline: 2px solid rgba(53, 132, 228, 0.6);
|
18423
|
+
outline-offset: 2px;
|
18424
|
+
}
|
18425
|
+
|
18426
|
+
.desktop--gnome .toggle-button--disabled {
|
18427
|
+
background: rgba(255, 255, 255, 0.1) !important;
|
18428
|
+
color: rgba(255, 255, 255, 0.4) !important;
|
18429
|
+
border-color: rgba(255, 255, 255, 0.05) !important;
|
18430
|
+
cursor: not-allowed;
|
18431
|
+
opacity: 1;
|
18432
|
+
box-shadow: none;
|
18433
|
+
}
|
18434
|
+
|
18435
|
+
/* Linux LaunchPad (Activities Overview) */
|
18436
|
+
.desktop--gnome .launchpad {
|
18437
|
+
background: rgba(36, 31, 49, 0.95);
|
18438
|
+
backdrop-filter: blur(20px);
|
18439
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
18440
|
+
border-radius: 12px;
|
18441
|
+
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
|
18442
|
+
color: #ffffff;
|
18443
|
+
}
|
18444
|
+
|
18445
|
+
.desktop--gnome .launchpad__header {
|
18446
|
+
background: linear-gradient(180deg, rgba(46, 52, 54, 0.8) 0%, rgba(36, 31, 49, 0.8) 100%);
|
18447
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
18448
|
+
color: #ffffff;
|
18449
|
+
}
|
18450
|
+
|
18451
|
+
.desktop--gnome .launchpad__header h2 {
|
18452
|
+
color: #ffffff;
|
18453
|
+
font-family: 'Ubuntu', sans-serif;
|
18454
|
+
font-weight: 500;
|
18455
|
+
}
|
18456
|
+
|
18457
|
+
.desktop--gnome .launchpad__close {
|
18458
|
+
color: #ffffff;
|
18459
|
+
background: rgba(255, 255, 255, 0.1);
|
18460
|
+
border-radius: 6px;
|
18461
|
+
}
|
18462
|
+
|
18463
|
+
.desktop--gnome .launchpad__close:hover {
|
18464
|
+
background: rgba(224, 27, 36, 0.8);
|
18465
|
+
}
|
18466
|
+
|
18467
|
+
.desktop--gnome .launchpad__search-input {
|
18468
|
+
background: rgba(255, 255, 255, 0.1);
|
18469
|
+
border: 2px solid rgba(255, 255, 255, 0.2);
|
18470
|
+
border-radius: 8px;
|
18471
|
+
color: #ffffff;
|
18472
|
+
font-family: 'Ubuntu', sans-serif;
|
18473
|
+
}
|
18474
|
+
|
18475
|
+
.desktop--gnome .launchpad__search-input::placeholder {
|
18476
|
+
color: rgba(255, 255, 255, 0.6);
|
18477
|
+
}
|
18478
|
+
|
18479
|
+
.desktop--gnome .launchpad__search-input:focus {
|
18480
|
+
border-color: rgba(53, 132, 228, 0.8);
|
18481
|
+
background: rgba(255, 255, 255, 0.15);
|
18482
|
+
outline: none;
|
18483
|
+
}
|
18484
|
+
|
18485
|
+
.desktop--gnome .launchpad__sidebar {
|
18486
|
+
background: rgba(46, 52, 54, 0.8);
|
18487
|
+
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
18488
|
+
}
|
18489
|
+
|
18490
|
+
.desktop--gnome .launchpad__categories {
|
18491
|
+
background: rgba(46, 52, 54, 0.8);
|
18492
|
+
}
|
18493
|
+
|
18494
|
+
.desktop--gnome .launchpad__category {
|
18495
|
+
background: rgba(255, 255, 255, 0.1);
|
18496
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
18497
|
+
border-radius: 20px;
|
18498
|
+
color: #ffffff;
|
18499
|
+
font-family: 'Ubuntu', sans-serif;
|
18500
|
+
font-size: 13px;
|
18501
|
+
font-weight: 400;
|
18502
|
+
}
|
18503
|
+
|
18504
|
+
.desktop--gnome .launchpad__category:hover {
|
18505
|
+
background: rgba(255, 255, 255, 0.2);
|
18506
|
+
border-color: rgba(255, 255, 255, 0.3);
|
18507
|
+
}
|
18508
|
+
|
18509
|
+
.desktop--gnome .launchpad__category.active {
|
18510
|
+
background: rgba(53, 132, 228, 0.8);
|
18511
|
+
border-color: rgba(53, 132, 228, 1);
|
18512
|
+
color: #ffffff;
|
18513
|
+
}
|
18514
|
+
|
18515
|
+
.desktop--gnome .launchpad__app {
|
18516
|
+
background: rgba(255, 255, 255, 0.05);
|
18517
|
+
border: 1px solid transparent;
|
18518
|
+
border-radius: 12px;
|
18519
|
+
transition: all 0.2s ease;
|
18520
|
+
}
|
18521
|
+
|
18522
|
+
.desktop--gnome .launchpad__app:hover {
|
18523
|
+
background: rgba(255, 255, 255, 0.15);
|
18524
|
+
border-color: rgba(255, 255, 255, 0.2);
|
18525
|
+
transform: translateY(-2px);
|
18526
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
18527
|
+
}
|
18528
|
+
|
18529
|
+
.desktop--gnome .app-name {
|
18530
|
+
font-family: 'Ubuntu', sans-serif;
|
18531
|
+
font-size: 13px;
|
18532
|
+
font-weight: 400;
|
18533
|
+
color: #ffffff;
|
18534
|
+
}
|
18535
|
+
|
18536
|
+
.desktop--gnome .category-title {
|
18537
|
+
color: #ffffff;
|
18538
|
+
font-family: 'Ubuntu', sans-serif;
|
18539
|
+
font-weight: 500;
|
18540
|
+
}
|
18541
|
+
|
18542
|
+
/* Linux scrollbar */
|
18543
|
+
.desktop--gnome .launchpad__content::-webkit-scrollbar {
|
18544
|
+
width: 8px;
|
18545
|
+
}
|
18546
|
+
|
18547
|
+
.desktop--gnome .launchpad__content::-webkit-scrollbar-track {
|
18548
|
+
background: rgba(255, 255, 255, 0.1);
|
18549
|
+
border-radius: 4px;
|
18550
|
+
}
|
18551
|
+
|
18552
|
+
.desktop--gnome .launchpad__content::-webkit-scrollbar-thumb {
|
18553
|
+
background: rgba(255, 255, 255, 0.3);
|
18554
|
+
border-radius: 4px;
|
18555
|
+
}
|
18556
|
+
|
18557
|
+
.desktop--gnome .launchpad__content::-webkit-scrollbar-thumb:hover {
|
18558
|
+
background: rgba(255, 255, 255, 0.5);
|
18559
|
+
}
|
18560
|
+
/* Windows XP Desktop Theme - Luna Blue */
|
18561
|
+
|
18562
|
+
.desktop--windowsxp {
|
18563
|
+
background: linear-gradient(180deg, #245EDC 0%, #3F8CF3 50%, #5BB0FF 100%);
|
18564
|
+
font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
|
18565
|
+
}
|
18566
|
+
|
18567
|
+
.desktop--windowsxp .desktop__background {
|
18568
|
+
background-image:
|
18569
|
+
radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
|
18570
|
+
radial-gradient(circle at 30% 70%, rgba(91, 176, 255, 0.2) 0%, transparent 50%);
|
18571
|
+
}
|
18572
|
+
|
18573
|
+
/* Windows XP-style windows */
|
18574
|
+
.desktop--windowsxp .window {
|
18575
|
+
border: 3px solid;
|
18576
|
+
border-color: #0054E3 #0054E3 #003C9E #003C9E;
|
18577
|
+
border-radius: 8px 8px 0 0;
|
18578
|
+
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
|
18579
|
+
background: #ECE9D8;
|
18580
|
+
}
|
18581
|
+
|
18582
|
+
.desktop--windowsxp .window__header {
|
18583
|
+
background: linear-gradient(180deg, #0997FF 0%, #0053EE 50%, #0050EE 50%, #003DD7 100%);
|
18584
|
+
border-bottom: none;
|
18585
|
+
border-radius: 6px 6px 0 0;
|
18586
|
+
height: 30px;
|
18587
|
+
padding: 0 8px;
|
18588
|
+
}
|
18589
|
+
|
18590
|
+
.desktop--windowsxp .window__title {
|
18591
|
+
font-size: 11px;
|
18592
|
+
font-weight: bold;
|
18593
|
+
color: #FFFFFF;
|
18594
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
|
18595
|
+
}
|
18596
|
+
|
18597
|
+
.desktop--windowsxp .window__control {
|
18598
|
+
width: 21px;
|
18599
|
+
height: 21px;
|
18600
|
+
border: 1px solid;
|
18601
|
+
border-radius: 3px;
|
18602
|
+
font-size: 9px;
|
18603
|
+
font-weight: bold;
|
18604
|
+
color: #000000;
|
18605
|
+
display: flex;
|
18606
|
+
align-items: center;
|
18607
|
+
justify-content: center;
|
18608
|
+
transition: none;
|
18609
|
+
margin-left: 2px;
|
18610
|
+
}
|
18611
|
+
|
18612
|
+
.desktop--windowsxp .window__control--minimize {
|
18613
|
+
background: linear-gradient(180deg, #EBF4FD 0%, #C1D2EE 100%);
|
18614
|
+
border-color: #003C74 #DDEEFF #DDEEFF #003C74;
|
18615
|
+
}
|
18616
|
+
|
18617
|
+
.desktop--windowsxp .window__control--maximize {
|
18618
|
+
background: linear-gradient(180deg, #EBF4FD 0%, #C1D2EE 100%);
|
18619
|
+
border-color: #003C74 #DDEEFF #DDEEFF #003C74;
|
18620
|
+
}
|
18621
|
+
|
18622
|
+
.desktop--windowsxp .window__control--close {
|
18623
|
+
background: linear-gradient(180deg, #FD9D6C 0%, #E4735A 100%);
|
18624
|
+
border-color: #8B2D1A #FFD7C7 #FFD7C7 #8B2D1A;
|
18625
|
+
color: #FFFFFF;
|
18626
|
+
}
|
18627
|
+
|
18628
|
+
.desktop--windowsxp .window__control:hover {
|
18629
|
+
filter: brightness(1.1);
|
18630
|
+
}
|
18631
|
+
|
18632
|
+
.desktop--windowsxp .window__control:active {
|
18633
|
+
filter: brightness(0.9);
|
18634
|
+
}
|
18635
|
+
|
18636
|
+
.desktop--windowsxp .window__control--minimize::before {
|
18637
|
+
content: '_';
|
18638
|
+
margin-top: -4px;
|
18639
|
+
}
|
18640
|
+
|
18641
|
+
.desktop--windowsxp .window__control--maximize::before {
|
18642
|
+
content: '□';
|
18643
|
+
font-size: 11px;
|
18644
|
+
}
|
18645
|
+
|
18646
|
+
.desktop--windowsxp .window__control--close::before {
|
18647
|
+
content: '×';
|
18648
|
+
font-size: 14px;
|
18649
|
+
}
|
18650
|
+
|
18651
|
+
/* Windows XP taskbar styling */
|
18652
|
+
.desktop--windowsxp .desktop-taskbar {
|
18653
|
+
background: linear-gradient(180deg, #3F8CF3 0%, #2373E7 50%, #1A5FD7 100%);
|
18654
|
+
border-top: 2px solid #5BB0FF;
|
18655
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
18656
|
+
}
|
18657
|
+
|
18658
|
+
.desktop--windowsxp .desktop-taskbar .icon {
|
18659
|
+
color: rgba(255, 255, 255, 0.95);
|
18660
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
18661
|
+
}
|
18662
|
+
|
18663
|
+
.desktop--windowsxp .desktop-taskbar .icon:hover {
|
18664
|
+
color: #ffffff;
|
18665
|
+
background-color: rgba(255, 255, 255, 0.15);
|
18666
|
+
border-radius: 3px;
|
18667
|
+
}
|
18668
|
+
|
18669
|
+
/* Windows XP taskbar menu styling */
|
18670
|
+
.desktop--windowsxp .desktop-taskbar .menu-icon > menu {
|
18671
|
+
background-color: #ECE9D8;
|
18672
|
+
border: 2px solid;
|
18673
|
+
border-color: #0054E3 #003C9E #003C9E #0054E3;
|
18674
|
+
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
|
18675
|
+
}
|
18676
|
+
|
18677
|
+
.desktop--windowsxp .desktop-taskbar .menu-icon > menu .menu-item > label {
|
18678
|
+
color: #000000;
|
18679
|
+
}
|
18680
|
+
|
18681
|
+
.desktop--windowsxp .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
18682
|
+
color: #000000;
|
18683
|
+
}
|
18684
|
+
|
18685
|
+
.desktop--windowsxp .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
18686
|
+
background: #EBF4FD;
|
18687
|
+
}
|
18688
|
+
|
18689
|
+
.desktop--windowsxp .desktop-taskbar .menu-icon > menu .menu-separator {
|
18690
|
+
border-color: #ACA899;
|
18691
|
+
}
|
18692
|
+
|
18693
|
+
.desktop--windowsxp .taskbar-button {
|
18694
|
+
background: linear-gradient(180deg, #3F8CF3 0%, #2373E7 100%);
|
18695
|
+
border: 1px solid #1A5FD7;
|
18696
|
+
border-radius: 3px;
|
18697
|
+
color: #FFFFFF;
|
18698
|
+
font-family: 'Tahoma', sans-serif;
|
18699
|
+
font-size: 11px;
|
18700
|
+
font-weight: bold;
|
18701
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
18702
|
+
transition: none;
|
18703
|
+
}
|
18704
|
+
|
18705
|
+
.desktop--windowsxp .taskbar-button:hover {
|
18706
|
+
background: linear-gradient(180deg, #5BB0FF 0%, #3F8CF3 100%);
|
18707
|
+
border-color: #0054E3;
|
18708
|
+
}
|
18709
|
+
|
18710
|
+
.desktop--windowsxp .taskbar-button--active {
|
18711
|
+
background: linear-gradient(180deg, #1A5FD7 0%, #0054E3 100%);
|
18712
|
+
border-color: #003C9E;
|
18713
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
|
18714
|
+
}
|
18715
|
+
|
18716
|
+
/* Windows XP Start Button */
|
18717
|
+
.desktop--windowsxp .toggle-button {
|
18718
|
+
position: relative;
|
18719
|
+
padding: 4px 12px 4px 8px;
|
18720
|
+
display: flex;
|
18721
|
+
align-items: center;
|
18722
|
+
justify-content: center;
|
18723
|
+
gap: 6px;
|
18724
|
+
border: 1px solid;
|
18725
|
+
border-color: #16A085 #0E7C68 #0E7C68 #16A085;
|
18726
|
+
outline: none;
|
18727
|
+
color: #FFFFFF;
|
18728
|
+
background: linear-gradient(180deg, #3EBD3E 0%, #2D9B2D 50%, #1F7C1F 100%);
|
18729
|
+
min-height: 32px;
|
18730
|
+
border-radius: 0 12px 12px 0;
|
18731
|
+
cursor: pointer;
|
18732
|
+
font-family: 'Tahoma', sans-serif;
|
18733
|
+
font-weight: bold;
|
18734
|
+
font-size: 11px;
|
18735
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
|
18736
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
18737
|
+
}
|
18738
|
+
|
18739
|
+
.desktop--windowsxp .toggle-button:hover:not(.toggle-button--disabled) {
|
18740
|
+
background: linear-gradient(180deg, #4ECD4E 0%, #3DAB3D 50%, #2F8C2F 100%);
|
18741
|
+
border-color: #1FB01F #0F8C0F #0F8C0F #1FB01F;
|
18742
|
+
}
|
18743
|
+
|
18744
|
+
.desktop--windowsxp .toggle-button.selected {
|
18745
|
+
background: linear-gradient(180deg, #1F7C1F 0%, #2D9B2D 50%, #3EBD3E 100%);
|
18746
|
+
box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.4);
|
18747
|
+
}
|
18748
|
+
|
18749
|
+
.desktop--windowsxp .toggle-button:focus {
|
18750
|
+
outline: 1px dotted #FFFFFF;
|
18751
|
+
outline-offset: -3px;
|
18752
|
+
}
|
18753
|
+
|
18754
|
+
/* Windows XP LaunchPad (Start Menu) */
|
18755
|
+
.desktop--windowsxp .launchpad {
|
18756
|
+
background: linear-gradient(to right,
|
18757
|
+
#3F8CF3 0%, #3F8CF3 50px,
|
18758
|
+
#FFFFFF 50px, #FFFFFF 100%);
|
18759
|
+
border: 3px solid;
|
18760
|
+
border-color: #0054E3 #003C9E #003C9E #0054E3;
|
18761
|
+
border-radius: 8px;
|
18762
|
+
box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
|
18763
|
+
}
|
18764
|
+
|
18765
|
+
.desktop--windowsxp .launchpad__header {
|
18766
|
+
background: linear-gradient(180deg, #0997FF 0%, #0053EE 100%);
|
18767
|
+
border-bottom: 2px solid #003C9E;
|
18768
|
+
color: #FFFFFF;
|
18769
|
+
}
|
18770
|
+
|
18771
|
+
.desktop--windowsxp .launchpad__header h2 {
|
18772
|
+
color: #FFFFFF;
|
18773
|
+
font-family: 'Tahoma', sans-serif;
|
18774
|
+
font-weight: bold;
|
18775
|
+
font-size: 14px;
|
18776
|
+
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
|
18777
|
+
}
|
18778
|
+
|
18779
|
+
.desktop--windowsxp .launchpad__search-input {
|
18780
|
+
background: #FFFFFF;
|
18781
|
+
border: 2px inset #7F9DB9;
|
18782
|
+
border-radius: 0;
|
18783
|
+
font-family: 'Tahoma', sans-serif;
|
18784
|
+
font-size: 11px;
|
18785
|
+
}
|
18786
|
+
|
18787
|
+
.desktop--windowsxp .launchpad__sidebar {
|
18788
|
+
background: #ECE9D8;
|
18789
|
+
border-right: 2px solid #ACA899;
|
18790
|
+
}
|
18791
|
+
|
18792
|
+
.desktop--windowsxp .launchpad__categories {
|
18793
|
+
background: #ECE9D8;
|
18794
|
+
}
|
18795
|
+
|
18796
|
+
.desktop--windowsxp .launchpad__category {
|
18797
|
+
background: #FFFFFF;
|
18798
|
+
border: 1px solid #ACA899;
|
18799
|
+
border-radius: 0;
|
18800
|
+
color: #000000;
|
18801
|
+
font-family: 'Tahoma', sans-serif;
|
18802
|
+
font-size: 11px;
|
18803
|
+
font-weight: normal;
|
18804
|
+
}
|
18805
|
+
|
18806
|
+
.desktop--windowsxp .launchpad__category:hover {
|
18807
|
+
background: #EBF4FD;
|
18808
|
+
border-color: #0054E3;
|
18809
|
+
}
|
18810
|
+
|
18811
|
+
.desktop--windowsxp .launchpad__category.active {
|
18812
|
+
background: #0054E3;
|
18813
|
+
border-color: #003C9E;
|
18814
|
+
color: #FFFFFF;
|
18815
|
+
}
|
18816
|
+
|
18817
|
+
.desktop--windowsxp .launchpad__app {
|
18818
|
+
background: #FFFFFF;
|
18819
|
+
border: 1px solid transparent;
|
18820
|
+
border-radius: 4px;
|
18821
|
+
transition: none;
|
18822
|
+
}
|
18823
|
+
|
18824
|
+
.desktop--windowsxp .launchpad__app:hover {
|
18825
|
+
background: #EBF4FD;
|
18826
|
+
border-color: #0054E3;
|
18827
|
+
}
|
18828
|
+
|
18829
|
+
.desktop--windowsxp .app-name {
|
18830
|
+
font-family: 'Tahoma', sans-serif;
|
18831
|
+
font-size: 11px;
|
18832
|
+
font-weight: normal;
|
18833
|
+
color: #000000;
|
18834
|
+
}
|
18835
|
+
|
18836
|
+
/* Windows XP scrollbar */
|
18837
|
+
.desktop--windowsxp .launchpad__content::-webkit-scrollbar {
|
18838
|
+
width: 16px;
|
18839
|
+
}
|
18840
|
+
|
18841
|
+
.desktop--windowsxp .launchpad__content::-webkit-scrollbar-track {
|
18842
|
+
background: #ECE9D8;
|
18843
|
+
}
|
18844
|
+
|
18845
|
+
.desktop--windowsxp .launchpad__content::-webkit-scrollbar-thumb {
|
18846
|
+
background: linear-gradient(90deg, #EBF4FD 0%, #C1D2EE 100%);
|
18847
|
+
border: 1px solid #003C74;
|
18848
|
+
}
|
18849
|
+
|
18850
|
+
.desktop--windowsxp .launchpad__content::-webkit-scrollbar-thumb:hover {
|
18851
|
+
background: linear-gradient(90deg, #D6E8FF 0%, #B0C4DE 100%);
|
18852
|
+
}
|
18853
|
+
|
18854
|
+
/* Windows 98 Desktop Theme */
|
18855
|
+
|
18856
|
+
.desktop--windows98 {
|
18857
|
+
background: #008080; /* Teal */
|
18858
|
+
font-family: 'MS Sans Serif', 'Microsoft Sans Serif', sans-serif;
|
18859
|
+
}
|
18860
|
+
|
18861
|
+
.desktop--windows98 .desktop__background {
|
18862
|
+
background: #008080;
|
18863
|
+
}
|
18864
|
+
|
18865
|
+
/* Windows 98-style windows */
|
18866
|
+
.desktop--windows98 .window {
|
18867
|
+
border: 2px outset #DFDFDF;
|
18868
|
+
border-radius: 0;
|
18869
|
+
box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
|
18870
|
+
background: #C0C0C0;
|
18871
|
+
}
|
18872
|
+
|
18873
|
+
.desktop--windows98 .window__header {
|
18874
|
+
background: linear-gradient(90deg, #000080 0%, #1084D0 100%);
|
18875
|
+
border-bottom: none;
|
18876
|
+
border-radius: 0;
|
18877
|
+
height: 24px;
|
18878
|
+
padding: 0 4px;
|
18879
|
+
}
|
18880
|
+
|
18881
|
+
.desktop--windows98 .window__title {
|
18882
|
+
font-size: 11px;
|
18883
|
+
font-weight: bold;
|
18884
|
+
color: #FFFFFF;
|
18885
|
+
}
|
18886
|
+
|
18887
|
+
.desktop--windows98 .window__control {
|
18888
|
+
width: 16px;
|
18889
|
+
height: 14px;
|
18890
|
+
border: 1px outset #DFDFDF;
|
18891
|
+
border-radius: 0;
|
18892
|
+
font-size: 8px;
|
18893
|
+
font-weight: bold;
|
18894
|
+
color: #000000;
|
18895
|
+
background: #C0C0C0;
|
18896
|
+
display: flex;
|
18897
|
+
align-items: center;
|
18898
|
+
justify-content: center;
|
18899
|
+
transition: none;
|
18900
|
+
margin-left: 2px;
|
18901
|
+
}
|
18902
|
+
|
18903
|
+
.desktop--windows98 .window__control:active {
|
18904
|
+
border-style: inset;
|
18905
|
+
}
|
18906
|
+
|
18907
|
+
.desktop--windows98 .window__control--minimize::before {
|
18908
|
+
content: '_';
|
18909
|
+
margin-top: -6px;
|
18910
|
+
}
|
18911
|
+
|
18912
|
+
.desktop--windows98 .window__control--maximize::before {
|
18913
|
+
content: '□';
|
18914
|
+
font-size: 10px;
|
18915
|
+
}
|
18916
|
+
|
18917
|
+
.desktop--windows98 .window__control--close::before {
|
18918
|
+
content: '×';
|
18919
|
+
font-size: 12px;
|
18920
|
+
}
|
18921
|
+
|
18922
|
+
/* Windows 98 taskbar styling */
|
18923
|
+
.desktop--windows98 .desktop-taskbar {
|
18924
|
+
background: #C0C0C0;
|
18925
|
+
border-top: 2px solid #FFFFFF;
|
18926
|
+
box-shadow: inset 0 1px 0 #DFDFDF;
|
18927
|
+
}
|
18928
|
+
|
18929
|
+
.desktop--windows98 .desktop-taskbar .icon {
|
18930
|
+
color: #000000;
|
18931
|
+
}
|
18932
|
+
|
18933
|
+
.desktop--windows98 .desktop-taskbar .icon:hover {
|
18934
|
+
color: #000000;
|
18935
|
+
background-color: rgba(0, 0, 0, 0.1);
|
18936
|
+
}
|
18937
|
+
|
18938
|
+
/* Windows 98 taskbar menu styling */
|
18939
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu {
|
18940
|
+
background-color: #C0C0C0;
|
18941
|
+
border: 2px outset #DFDFDF;
|
18942
|
+
box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
|
18943
|
+
}
|
18944
|
+
|
18945
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-item > label {
|
18946
|
+
color: #000000;
|
18947
|
+
}
|
18948
|
+
|
18949
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
18950
|
+
color: #000000;
|
18951
|
+
}
|
18952
|
+
|
18953
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
18954
|
+
background: #000080;
|
18955
|
+
color: #FFFFFF;
|
18956
|
+
}
|
18957
|
+
|
18958
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-item:hover > label,
|
18959
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-item:hover > .icon {
|
18960
|
+
color: #FFFFFF;
|
18961
|
+
}
|
18962
|
+
|
18963
|
+
.desktop--windows98 .desktop-taskbar .menu-icon > menu .menu-separator {
|
18964
|
+
border-color: #808080;
|
18965
|
+
}
|
18966
|
+
|
18967
|
+
.desktop--windows98 .taskbar-button {
|
18968
|
+
background: #C0C0C0;
|
18969
|
+
border: 2px outset #DFDFDF;
|
18970
|
+
border-radius: 0;
|
18971
|
+
color: #000000;
|
18972
|
+
font-family: 'MS Sans Serif', sans-serif;
|
18973
|
+
font-size: 11px;
|
18974
|
+
font-weight: normal;
|
18975
|
+
transition: none;
|
18976
|
+
text-align: left;
|
18977
|
+
}
|
18978
|
+
|
18979
|
+
.desktop--windows98 .taskbar-button:hover {
|
18980
|
+
background: #C0C0C0;
|
18981
|
+
}
|
18982
|
+
|
18983
|
+
.desktop--windows98 .taskbar-button:active,
|
18984
|
+
.desktop--windows98 .taskbar-button--active {
|
18985
|
+
border-style: inset;
|
18986
|
+
padding-left: 2px;
|
18987
|
+
padding-top: 2px;
|
18988
|
+
}
|
18989
|
+
|
18990
|
+
/* Windows 98 Start Button */
|
18991
|
+
.desktop--windows98 .toggle-button {
|
18992
|
+
position: relative;
|
18993
|
+
padding: 2px 6px;
|
18994
|
+
display: flex;
|
18995
|
+
align-items: center;
|
18996
|
+
justify-content: center;
|
18997
|
+
gap: 4px;
|
18998
|
+
border: 2px outset #DFDFDF;
|
18999
|
+
outline: none;
|
19000
|
+
color: #000000;
|
19001
|
+
background: #C0C0C0;
|
19002
|
+
min-height: 28px;
|
19003
|
+
border-radius: 0;
|
19004
|
+
cursor: pointer;
|
19005
|
+
font-family: 'MS Sans Serif', sans-serif;
|
19006
|
+
font-weight: bold;
|
19007
|
+
font-size: 11px;
|
19008
|
+
box-shadow: none;
|
19009
|
+
}
|
19010
|
+
|
19011
|
+
.desktop--windows98 .toggle-button:hover:not(.toggle-button--disabled) {
|
19012
|
+
background: #C0C0C0;
|
19013
|
+
}
|
19014
|
+
|
19015
|
+
.desktop--windows98 .toggle-button:active,
|
19016
|
+
.desktop--windows98 .toggle-button.selected {
|
19017
|
+
border-style: inset;
|
19018
|
+
padding-left: 8px;
|
19019
|
+
padding-top: 4px;
|
19020
|
+
}
|
19021
|
+
|
19022
|
+
.desktop--windows98 .toggle-button:focus {
|
19023
|
+
outline: 1px dotted #000000;
|
19024
|
+
outline-offset: -4px;
|
19025
|
+
}
|
19026
|
+
|
19027
|
+
/* Windows 98 LaunchPad (Start Menu) */
|
19028
|
+
.desktop--windows98 .launchpad {
|
19029
|
+
background: #C0C0C0;
|
19030
|
+
border: 2px outset #DFDFDF;
|
19031
|
+
border-radius: 0;
|
19032
|
+
box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
|
19033
|
+
}
|
19034
|
+
|
19035
|
+
.desktop--windows98 .launchpad__header {
|
19036
|
+
background: linear-gradient(90deg, #000080 0%, #1084D0 100%);
|
19037
|
+
border-bottom: 2px solid #FFFFFF;
|
19038
|
+
color: #FFFFFF;
|
19039
|
+
}
|
19040
|
+
|
19041
|
+
.desktop--windows98 .launchpad__header h2 {
|
19042
|
+
color: #FFFFFF;
|
19043
|
+
font-family: 'MS Sans Serif', sans-serif;
|
19044
|
+
font-weight: bold;
|
17344
19045
|
font-size: 13px;
|
17345
19046
|
}
|
17346
19047
|
|
17347
|
-
.desktop--
|
17348
|
-
background: #
|
19048
|
+
.desktop--windows98 .launchpad__search-input {
|
19049
|
+
background: #FFFFFF;
|
19050
|
+
border: 2px inset #808080;
|
19051
|
+
border-radius: 0;
|
19052
|
+
font-family: 'MS Sans Serif', sans-serif;
|
19053
|
+
font-size: 11px;
|
17349
19054
|
}
|
17350
19055
|
|
17351
|
-
.desktop--
|
17352
|
-
background: #
|
17353
|
-
border-
|
17354
|
-
color: white;
|
19056
|
+
.desktop--windows98 .launchpad__sidebar {
|
19057
|
+
background: #C0C0C0;
|
19058
|
+
border-right: 2px solid #808080;
|
17355
19059
|
}
|
17356
19060
|
|
17357
|
-
.desktop--
|
17358
|
-
background: #
|
19061
|
+
.desktop--windows98 .launchpad__categories {
|
19062
|
+
background: #C0C0C0;
|
19063
|
+
}
|
19064
|
+
|
19065
|
+
.desktop--windows98 .launchpad__category {
|
19066
|
+
background: #C0C0C0;
|
19067
|
+
border: 2px outset #DFDFDF;
|
19068
|
+
border-radius: 0;
|
19069
|
+
color: #000000;
|
19070
|
+
font-family: 'MS Sans Serif', sans-serif;
|
19071
|
+
font-size: 11px;
|
19072
|
+
font-weight: normal;
|
19073
|
+
}
|
19074
|
+
|
19075
|
+
.desktop--windows98 .launchpad__category:hover {
|
19076
|
+
background: #C0C0C0;
|
19077
|
+
}
|
19078
|
+
|
19079
|
+
.desktop--windows98 .launchpad__category:active,
|
19080
|
+
.desktop--windows98 .launchpad__category.active {
|
19081
|
+
border-style: inset;
|
19082
|
+
background: #000080;
|
19083
|
+
color: #FFFFFF;
|
19084
|
+
}
|
19085
|
+
|
19086
|
+
.desktop--windows98 .launchpad__app {
|
19087
|
+
background: #C0C0C0;
|
17359
19088
|
border: 1px solid transparent;
|
17360
|
-
border-radius:
|
17361
|
-
transition:
|
19089
|
+
border-radius: 0;
|
19090
|
+
transition: none;
|
17362
19091
|
}
|
17363
19092
|
|
17364
|
-
.desktop--
|
17365
|
-
background: #
|
17366
|
-
|
17367
|
-
|
17368
|
-
|
19093
|
+
.desktop--windows98 .launchpad__app:hover {
|
19094
|
+
background: #000080;
|
19095
|
+
color: #FFFFFF;
|
19096
|
+
}
|
19097
|
+
|
19098
|
+
.desktop--windows98 .launchpad__app:hover .app-name {
|
19099
|
+
color: #FFFFFF;
|
19100
|
+
}
|
19101
|
+
|
19102
|
+
.desktop--windows98 .app-name {
|
19103
|
+
font-family: 'MS Sans Serif', sans-serif;
|
19104
|
+
font-size: 11px;
|
19105
|
+
font-weight: normal;
|
19106
|
+
color: #000000;
|
19107
|
+
}
|
19108
|
+
|
19109
|
+
/* Windows 98 scrollbar */
|
19110
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar {
|
19111
|
+
width: 16px;
|
19112
|
+
}
|
19113
|
+
|
19114
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar-track {
|
19115
|
+
background: #C0C0C0;
|
19116
|
+
border: 1px solid #808080;
|
19117
|
+
}
|
19118
|
+
|
19119
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar-thumb {
|
19120
|
+
background: #C0C0C0;
|
19121
|
+
border: 2px outset #DFDFDF;
|
19122
|
+
}
|
19123
|
+
|
19124
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar-thumb:active {
|
19125
|
+
border-style: inset;
|
19126
|
+
}
|
19127
|
+
|
19128
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar-button {
|
19129
|
+
background: #C0C0C0;
|
19130
|
+
border: 2px outset #DFDFDF;
|
19131
|
+
height: 16px;
|
19132
|
+
}
|
19133
|
+
|
19134
|
+
.desktop--windows98 .launchpad__content::-webkit-scrollbar-button:active {
|
19135
|
+
border-style: inset;
|
19136
|
+
}
|
19137
|
+
|
19138
|
+
/* NeXTSTEP Desktop Theme */
|
19139
|
+
|
19140
|
+
.desktop--nextstep {
|
19141
|
+
background: #2B2B2B;
|
19142
|
+
font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
|
19143
|
+
}
|
19144
|
+
|
19145
|
+
.desktop--nextstep .desktop__background {
|
19146
|
+
background: #2B2B2B;
|
19147
|
+
}
|
19148
|
+
|
19149
|
+
/* NeXTSTEP-style windows */
|
19150
|
+
.desktop--nextstep .window {
|
19151
|
+
border: 1px solid #000000;
|
19152
|
+
border-radius: 0;
|
19153
|
+
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
|
19154
|
+
background: #C0C0C0;
|
19155
|
+
}
|
19156
|
+
|
19157
|
+
.desktop--nextstep .window__header {
|
19158
|
+
background: #7F7F7F;
|
19159
|
+
border-bottom: 1px solid #000000;
|
19160
|
+
border-radius: 0;
|
19161
|
+
height: 28px;
|
19162
|
+
padding: 0 8px;
|
19163
|
+
}
|
19164
|
+
|
19165
|
+
.desktop--nextstep .window__title {
|
19166
|
+
font-size: 12px;
|
19167
|
+
font-weight: bold;
|
19168
|
+
color: #FFFFFF;
|
19169
|
+
text-align: center;
|
19170
|
+
}
|
19171
|
+
|
19172
|
+
.desktop--nextstep .window__controls {
|
19173
|
+
order: -1;
|
19174
|
+
margin-right: auto;
|
19175
|
+
}
|
19176
|
+
|
19177
|
+
.desktop--nextstep .window__control {
|
19178
|
+
width: 20px;
|
19179
|
+
height: 20px;
|
19180
|
+
border: 1px solid #000000;
|
19181
|
+
border-radius: 0;
|
19182
|
+
font-size: 10px;
|
19183
|
+
font-weight: bold;
|
19184
|
+
color: #000000;
|
19185
|
+
background: #C0C0C0;
|
19186
|
+
display: flex;
|
19187
|
+
align-items: center;
|
19188
|
+
justify-content: center;
|
19189
|
+
transition: none;
|
19190
|
+
margin-right: 4px;
|
19191
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #808080 inset;
|
19192
|
+
}
|
19193
|
+
|
19194
|
+
.desktop--nextstep .window__control:active {
|
19195
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #808080 inset;
|
19196
|
+
}
|
19197
|
+
|
19198
|
+
.desktop--nextstep .window__control--close {
|
19199
|
+
background: #C0C0C0;
|
19200
|
+
}
|
19201
|
+
|
19202
|
+
.desktop--nextstep .window__control--minimize {
|
19203
|
+
background: #C0C0C0;
|
19204
|
+
}
|
19205
|
+
|
19206
|
+
.desktop--nextstep .window__control--maximize {
|
19207
|
+
background: #C0C0C0;
|
19208
|
+
}
|
19209
|
+
|
19210
|
+
.desktop--nextstep .window__control--close::before {
|
19211
|
+
content: '×';
|
19212
|
+
font-size: 14px;
|
19213
|
+
}
|
19214
|
+
|
19215
|
+
.desktop--nextstep .window__control--minimize::before {
|
19216
|
+
content: '_';
|
19217
|
+
margin-top: -4px;
|
19218
|
+
}
|
19219
|
+
|
19220
|
+
.desktop--nextstep .window__control--maximize::before {
|
19221
|
+
content: '□';
|
19222
|
+
font-size: 12px;
|
19223
|
+
}
|
19224
|
+
|
19225
|
+
/* NeXTSTEP taskbar styling (Dock) */
|
19226
|
+
.desktop--nextstep .desktop-taskbar {
|
19227
|
+
background: #7F7F7F;
|
19228
|
+
border-top: 1px solid #000000;
|
19229
|
+
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5);
|
19230
|
+
}
|
19231
|
+
|
19232
|
+
.desktop--nextstep .desktop-taskbar .icon {
|
19233
|
+
color: #FFFFFF;
|
19234
|
+
}
|
19235
|
+
|
19236
|
+
.desktop--nextstep .desktop-taskbar .icon:hover {
|
19237
|
+
color: #FFFFFF;
|
19238
|
+
background-color: rgba(0, 0, 0, 0.3);
|
19239
|
+
}
|
19240
|
+
|
19241
|
+
/* NeXTSTEP taskbar menu styling */
|
19242
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu {
|
19243
|
+
background-color: #C0C0C0;
|
19244
|
+
border: 1px solid #000000;
|
19245
|
+
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
|
19246
|
+
}
|
19247
|
+
|
19248
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-item > label {
|
19249
|
+
color: #000000;
|
19250
|
+
}
|
19251
|
+
|
19252
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
19253
|
+
color: #000000;
|
19254
|
+
}
|
19255
|
+
|
19256
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
19257
|
+
background: #000000;
|
19258
|
+
color: #FFFFFF;
|
19259
|
+
}
|
19260
|
+
|
19261
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-item:hover > label,
|
19262
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-item:hover > .icon {
|
19263
|
+
color: #FFFFFF;
|
19264
|
+
}
|
19265
|
+
|
19266
|
+
.desktop--nextstep .desktop-taskbar .menu-icon > menu .menu-separator {
|
19267
|
+
border-color: #000000;
|
19268
|
+
}
|
19269
|
+
|
19270
|
+
.desktop--nextstep .taskbar-button {
|
19271
|
+
background: #C0C0C0;
|
19272
|
+
border: 1px solid #000000;
|
19273
|
+
border-radius: 0;
|
19274
|
+
color: #000000;
|
19275
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19276
|
+
font-size: 11px;
|
19277
|
+
font-weight: bold;
|
19278
|
+
transition: none;
|
19279
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #808080 inset;
|
19280
|
+
}
|
19281
|
+
|
19282
|
+
.desktop--nextstep .taskbar-button:hover {
|
19283
|
+
background: #D0D0D0;
|
19284
|
+
}
|
19285
|
+
|
19286
|
+
.desktop--nextstep .taskbar-button:active,
|
19287
|
+
.desktop--nextstep .taskbar-button--active {
|
19288
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #808080 inset;
|
19289
|
+
}
|
19290
|
+
|
19291
|
+
/* NeXTSTEP Start Button */
|
19292
|
+
.desktop--nextstep .toggle-button {
|
19293
|
+
position: relative;
|
19294
|
+
padding: 4px 12px;
|
19295
|
+
display: flex;
|
19296
|
+
align-items: center;
|
19297
|
+
justify-content: center;
|
19298
|
+
gap: 6px;
|
19299
|
+
border: 1px solid #000000;
|
19300
|
+
outline: none;
|
19301
|
+
color: #000000;
|
19302
|
+
background: #C0C0C0;
|
19303
|
+
min-height: 32px;
|
19304
|
+
border-radius: 0;
|
19305
|
+
cursor: pointer;
|
19306
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19307
|
+
font-weight: bold;
|
19308
|
+
font-size: 12px;
|
19309
|
+
box-shadow: 2px 2px 0 #FFFFFF inset, -2px -2px 0 #808080 inset;
|
19310
|
+
}
|
19311
|
+
|
19312
|
+
.desktop--nextstep .toggle-button:hover:not(.toggle-button--disabled) {
|
19313
|
+
background: #D0D0D0;
|
19314
|
+
}
|
19315
|
+
|
19316
|
+
.desktop--nextstep .toggle-button:active,
|
19317
|
+
.desktop--nextstep .toggle-button.selected {
|
19318
|
+
box-shadow: -2px -2px 0 #FFFFFF inset, 2px 2px 0 #808080 inset;
|
19319
|
+
}
|
19320
|
+
|
19321
|
+
.desktop--nextstep .toggle-button:focus {
|
19322
|
+
outline: 1px dotted #000000;
|
19323
|
+
outline-offset: -4px;
|
19324
|
+
}
|
19325
|
+
|
19326
|
+
/* NeXTSTEP LaunchPad (Menu) */
|
19327
|
+
.desktop--nextstep .launchpad {
|
19328
|
+
background: #C0C0C0;
|
19329
|
+
border: 1px solid #000000;
|
19330
|
+
border-radius: 0;
|
19331
|
+
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
|
19332
|
+
}
|
19333
|
+
|
19334
|
+
.desktop--nextstep .launchpad__header {
|
19335
|
+
background: #7F7F7F;
|
19336
|
+
border-bottom: 1px solid #000000;
|
19337
|
+
color: #FFFFFF;
|
19338
|
+
}
|
19339
|
+
|
19340
|
+
.desktop--nextstep .launchpad__header h2 {
|
19341
|
+
color: #FFFFFF;
|
19342
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19343
|
+
font-weight: bold;
|
19344
|
+
font-size: 14px;
|
19345
|
+
}
|
19346
|
+
|
19347
|
+
.desktop--nextstep .launchpad__close {
|
19348
|
+
color: #000000;
|
19349
|
+
background: #C0C0C0;
|
19350
|
+
border: 1px solid #000000;
|
19351
|
+
border-radius: 0;
|
19352
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #808080 inset;
|
19353
|
+
}
|
19354
|
+
|
19355
|
+
.desktop--nextstep .launchpad__close:active {
|
19356
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #808080 inset;
|
19357
|
+
}
|
19358
|
+
|
19359
|
+
.desktop--nextstep .launchpad__search-input {
|
19360
|
+
background: #FFFFFF;
|
19361
|
+
border: 2px solid #000000;
|
19362
|
+
border-radius: 0;
|
19363
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19364
|
+
font-size: 12px;
|
19365
|
+
box-shadow: -1px -1px 0 #808080 inset, 1px 1px 0 #FFFFFF inset;
|
19366
|
+
}
|
19367
|
+
|
19368
|
+
.desktop--nextstep .launchpad__sidebar {
|
19369
|
+
background: #7F7F7F;
|
19370
|
+
border-right: 1px solid #000000;
|
19371
|
+
}
|
19372
|
+
|
19373
|
+
.desktop--nextstep .launchpad__categories {
|
19374
|
+
background: #7F7F7F;
|
19375
|
+
}
|
19376
|
+
|
19377
|
+
.desktop--nextstep .launchpad__category {
|
19378
|
+
background: #C0C0C0;
|
19379
|
+
border: 1px solid #000000;
|
19380
|
+
border-radius: 0;
|
19381
|
+
color: #000000;
|
19382
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19383
|
+
font-size: 11px;
|
19384
|
+
font-weight: bold;
|
19385
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #808080 inset;
|
19386
|
+
}
|
19387
|
+
|
19388
|
+
.desktop--nextstep .launchpad__category:hover {
|
19389
|
+
background: #D0D0D0;
|
19390
|
+
}
|
19391
|
+
|
19392
|
+
.desktop--nextstep .launchpad__category:active,
|
19393
|
+
.desktop--nextstep .launchpad__category.active {
|
19394
|
+
background: #000000;
|
19395
|
+
color: #FFFFFF;
|
19396
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #808080 inset;
|
19397
|
+
}
|
19398
|
+
|
19399
|
+
.desktop--nextstep .launchpad__app {
|
19400
|
+
background: #C0C0C0;
|
19401
|
+
border: 1px solid transparent;
|
19402
|
+
border-radius: 0;
|
19403
|
+
transition: none;
|
19404
|
+
}
|
19405
|
+
|
19406
|
+
.desktop--nextstep .launchpad__app:hover {
|
19407
|
+
background: #000000;
|
19408
|
+
color: #FFFFFF;
|
19409
|
+
}
|
19410
|
+
|
19411
|
+
.desktop--nextstep .launchpad__app:hover .app-name {
|
19412
|
+
color: #FFFFFF;
|
19413
|
+
}
|
19414
|
+
|
19415
|
+
.desktop--nextstep .app-name {
|
19416
|
+
font-family: 'Helvetica Neue', sans-serif;
|
19417
|
+
font-size: 11px;
|
19418
|
+
font-weight: bold;
|
19419
|
+
color: #000000;
|
19420
|
+
}
|
19421
|
+
|
19422
|
+
/* NeXTSTEP scrollbar */
|
19423
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar {
|
19424
|
+
width: 18px;
|
19425
|
+
}
|
19426
|
+
|
19427
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar-track {
|
19428
|
+
background: #C0C0C0;
|
19429
|
+
border: 1px solid #000000;
|
19430
|
+
}
|
19431
|
+
|
19432
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar-thumb {
|
19433
|
+
background: #7F7F7F;
|
19434
|
+
border: 1px solid #000000;
|
19435
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #404040 inset;
|
19436
|
+
}
|
19437
|
+
|
19438
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar-thumb:active {
|
19439
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #404040 inset;
|
19440
|
+
}
|
19441
|
+
|
19442
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar-button {
|
19443
|
+
background: #C0C0C0;
|
19444
|
+
border: 1px solid #000000;
|
19445
|
+
height: 18px;
|
19446
|
+
box-shadow: 1px 1px 0 #FFFFFF inset, -1px -1px 0 #808080 inset;
|
19447
|
+
}
|
19448
|
+
|
19449
|
+
.desktop--nextstep .launchpad__content::-webkit-scrollbar-button:active {
|
19450
|
+
box-shadow: -1px -1px 0 #FFFFFF inset, 1px 1px 0 #808080 inset;
|
19451
|
+
}
|
19452
|
+
|
19453
|
+
/* Classic Macintosh Desktop Theme (System 7) */
|
19454
|
+
|
19455
|
+
.desktop--macintosh {
|
19456
|
+
background: #FFFFFF;
|
19457
|
+
font-family: 'Chicago', 'Charcoal', 'Geneva', monospace;
|
19458
|
+
}
|
19459
|
+
|
19460
|
+
.desktop--macintosh .desktop__background {
|
19461
|
+
background: #FFFFFF;
|
19462
|
+
background-image: repeating-linear-gradient(
|
19463
|
+
45deg,
|
19464
|
+
#FFFFFF 0px,
|
19465
|
+
#FFFFFF 2px,
|
19466
|
+
#F0F0F0 2px,
|
19467
|
+
#F0F0F0 4px
|
19468
|
+
);
|
17369
19469
|
}
|
17370
19470
|
|
17371
|
-
|
17372
|
-
|
17373
|
-
|
17374
|
-
|
17375
|
-
|
19471
|
+
/* Classic Mac-style windows */
|
19472
|
+
.desktop--macintosh .window {
|
19473
|
+
border: 2px solid #000000;
|
19474
|
+
border-radius: 8px 8px 0 0;
|
19475
|
+
box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
|
19476
|
+
background: #FFFFFF;
|
17376
19477
|
}
|
17377
19478
|
|
17378
|
-
|
17379
|
-
|
17380
|
-
|
19479
|
+
.desktop--macintosh .window__header {
|
19480
|
+
background: repeating-linear-gradient(
|
19481
|
+
90deg,
|
19482
|
+
#000000 0px,
|
19483
|
+
#000000 1px,
|
19484
|
+
#FFFFFF 1px,
|
19485
|
+
#FFFFFF 2px
|
19486
|
+
);
|
19487
|
+
border-bottom: 2px solid #000000;
|
19488
|
+
border-radius: 6px 6px 0 0;
|
19489
|
+
height: 20px;
|
19490
|
+
padding: 0 6px;
|
17381
19491
|
}
|
17382
19492
|
|
17383
|
-
.desktop--
|
17384
|
-
|
17385
|
-
|
19493
|
+
.desktop--macintosh .window__title {
|
19494
|
+
font-size: 12px;
|
19495
|
+
font-weight: bold;
|
19496
|
+
color: #000000;
|
19497
|
+
text-align: center;
|
19498
|
+
background: #FFFFFF;
|
19499
|
+
padding: 0 8px;
|
19500
|
+
border: 1px solid #000000;
|
19501
|
+
margin: 0 auto;
|
17386
19502
|
}
|
17387
19503
|
|
17388
|
-
.desktop--
|
17389
|
-
|
17390
|
-
|
17391
|
-
border: 2px solid #f1f1f1;
|
19504
|
+
.desktop--macintosh .window__controls {
|
19505
|
+
order: -1;
|
19506
|
+
margin-right: auto;
|
17392
19507
|
}
|
17393
19508
|
|
17394
|
-
.desktop--
|
17395
|
-
|
19509
|
+
.desktop--macintosh .window__control {
|
19510
|
+
width: 14px;
|
19511
|
+
height: 14px;
|
19512
|
+
border: 1px solid #000000;
|
19513
|
+
border-radius: 0;
|
19514
|
+
font-size: 9px;
|
19515
|
+
font-weight: bold;
|
19516
|
+
color: #000000;
|
19517
|
+
background: #FFFFFF;
|
19518
|
+
display: flex;
|
19519
|
+
align-items: center;
|
19520
|
+
justify-content: center;
|
19521
|
+
transition: none;
|
19522
|
+
margin-right: 3px;
|
17396
19523
|
}
|
17397
|
-
/* Linux Desktop Theme (GNOME/Ubuntu inspired) */
|
17398
19524
|
|
17399
|
-
.desktop--
|
17400
|
-
background:
|
17401
|
-
|
19525
|
+
.desktop--macintosh .window__control:active {
|
19526
|
+
background: #000000;
|
19527
|
+
color: #FFFFFF;
|
17402
19528
|
}
|
17403
19529
|
|
17404
|
-
.desktop--
|
17405
|
-
background
|
17406
|
-
radial-gradient(circle at 30% 70%, rgba(233, 84, 32, 0.2) 0%, transparent 50%),
|
17407
|
-
radial-gradient(circle at 70% 30%, rgba(119, 41, 83, 0.3) 0%, transparent 50%),
|
17408
|
-
radial-gradient(circle at 50% 50%, rgba(14, 75, 153, 0.2) 0%, transparent 50%);
|
19530
|
+
.desktop--macintosh .window__control--close {
|
19531
|
+
background: #FFFFFF;
|
17409
19532
|
}
|
17410
19533
|
|
17411
|
-
|
17412
|
-
|
17413
|
-
border: 1px solid #2d2d2d;
|
17414
|
-
border-radius: 12px 12px 0 0;
|
17415
|
-
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
17416
|
-
background: #ffffff;
|
17417
|
-
overflow: hidden;
|
19534
|
+
.desktop--macintosh .window__control--minimize {
|
19535
|
+
display: none; /* Classic Mac didn't have minimize */
|
17418
19536
|
}
|
17419
19537
|
|
17420
|
-
.desktop--
|
17421
|
-
|
17422
|
-
border-bottom: 1px solid #d0cfce;
|
17423
|
-
border-radius: 12px 12px 0 0;
|
17424
|
-
height: 38px;
|
17425
|
-
padding: 0 16px;
|
19538
|
+
.desktop--macintosh .window__control--maximize {
|
19539
|
+
display: none; /* Classic Mac didn't have maximize */
|
17426
19540
|
}
|
17427
19541
|
|
17428
|
-
.desktop--
|
17429
|
-
|
17430
|
-
font-
|
17431
|
-
color: #2e3436;
|
19542
|
+
.desktop--macintosh .window__control--close::before {
|
19543
|
+
content: '□';
|
19544
|
+
font-size: 10px;
|
17432
19545
|
}
|
17433
19546
|
|
17434
|
-
|
17435
|
-
|
17436
|
-
|
17437
|
-
border:
|
17438
|
-
|
17439
|
-
font-size: 12px;
|
17440
|
-
color: #2e3436;
|
17441
|
-
display: flex;
|
17442
|
-
align-items: center;
|
17443
|
-
justify-content: center;
|
17444
|
-
transition: all 0.2s ease;
|
17445
|
-
margin-left: 8px;
|
19547
|
+
/* Classic Mac taskbar styling (Menu Bar) */
|
19548
|
+
.desktop--macintosh .desktop-taskbar {
|
19549
|
+
background: #FFFFFF;
|
19550
|
+
border-top: 2px solid #000000;
|
19551
|
+
box-shadow: 0 -2px 0 #000000;
|
17446
19552
|
}
|
17447
19553
|
|
17448
|
-
.desktop--
|
17449
|
-
|
17450
|
-
border: 1px solid #f5c211;
|
19554
|
+
.desktop--macintosh .desktop-taskbar .icon {
|
19555
|
+
color: #000000;
|
17451
19556
|
}
|
17452
19557
|
|
17453
|
-
.desktop--
|
17454
|
-
background: #
|
17455
|
-
|
19558
|
+
.desktop--macintosh .desktop-taskbar .icon:hover {
|
19559
|
+
background-color: #000000;
|
19560
|
+
color: #FFFFFF;
|
17456
19561
|
}
|
17457
19562
|
|
17458
|
-
|
17459
|
-
|
17460
|
-
|
17461
|
-
|
19563
|
+
/* Classic Mac taskbar menu styling */
|
19564
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu {
|
19565
|
+
background-color: #FFFFFF;
|
19566
|
+
border: 2px solid #000000;
|
19567
|
+
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
|
17462
19568
|
}
|
17463
19569
|
|
17464
|
-
.desktop--
|
17465
|
-
|
17466
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
19570
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-item > label {
|
19571
|
+
color: #000000;
|
17467
19572
|
}
|
17468
19573
|
|
17469
|
-
.desktop--
|
17470
|
-
|
17471
|
-
font-weight: bold;
|
19574
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
19575
|
+
color: #000000;
|
17472
19576
|
}
|
17473
19577
|
|
17474
|
-
.desktop--
|
17475
|
-
|
17476
|
-
|
19578
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
19579
|
+
background: #000000;
|
19580
|
+
color: #FFFFFF;
|
17477
19581
|
}
|
17478
19582
|
|
17479
|
-
.desktop--
|
17480
|
-
|
17481
|
-
|
19583
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-item:hover > label,
|
19584
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-item:hover > .icon {
|
19585
|
+
color: #FFFFFF;
|
17482
19586
|
}
|
17483
19587
|
|
17484
|
-
|
17485
|
-
|
17486
|
-
background: rgba(0, 0, 0, 0.85);
|
17487
|
-
backdrop-filter: blur(10px);
|
17488
|
-
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
19588
|
+
.desktop--macintosh .desktop-taskbar .menu-icon > menu .menu-separator {
|
19589
|
+
border-color: #000000;
|
17489
19590
|
}
|
17490
19591
|
|
17491
|
-
.desktop--
|
17492
|
-
background:
|
17493
|
-
border: 1px solid
|
17494
|
-
border-radius:
|
17495
|
-
color: #
|
17496
|
-
font-family: '
|
17497
|
-
font-size:
|
17498
|
-
font-weight:
|
17499
|
-
transition:
|
19592
|
+
.desktop--macintosh .taskbar-button {
|
19593
|
+
background: #FFFFFF;
|
19594
|
+
border: 1px solid #000000;
|
19595
|
+
border-radius: 0;
|
19596
|
+
color: #000000;
|
19597
|
+
font-family: 'Chicago', monospace;
|
19598
|
+
font-size: 12px;
|
19599
|
+
font-weight: bold;
|
19600
|
+
transition: none;
|
17500
19601
|
}
|
17501
19602
|
|
17502
|
-
.desktop--
|
17503
|
-
background:
|
17504
|
-
border-color: rgba(255, 255, 255, 0.25);
|
17505
|
-
transform: translateY(-1px);
|
19603
|
+
.desktop--macintosh .taskbar-button:hover {
|
19604
|
+
background: #F0F0F0;
|
17506
19605
|
}
|
17507
19606
|
|
17508
|
-
.desktop--
|
17509
|
-
|
17510
|
-
|
19607
|
+
.desktop--macintosh .taskbar-button:active,
|
19608
|
+
.desktop--macintosh .taskbar-button--active {
|
19609
|
+
background: #000000;
|
19610
|
+
color: #FFFFFF;
|
17511
19611
|
}
|
17512
19612
|
|
17513
|
-
/*
|
17514
|
-
.desktop--
|
17515
|
-
/* Reset selector styles and apply Linux button styling */
|
19613
|
+
/* Classic Mac Start Button (Apple Menu) */
|
19614
|
+
.desktop--macintosh .toggle-button {
|
17516
19615
|
position: relative;
|
17517
|
-
padding: 8px
|
19616
|
+
padding: 2px 8px;
|
17518
19617
|
display: flex;
|
17519
19618
|
align-items: center;
|
17520
19619
|
justify-content: center;
|
17521
|
-
gap:
|
17522
|
-
|
17523
|
-
border: 1px solid rgba(255, 255, 255, 0.15);
|
19620
|
+
gap: 4px;
|
19621
|
+
border: 2px solid #000000;
|
17524
19622
|
outline: none;
|
17525
|
-
|
17526
|
-
|
17527
|
-
|
17528
|
-
|
17529
|
-
border-radius: 8px;
|
19623
|
+
color: #000000;
|
19624
|
+
background: #FFFFFF;
|
19625
|
+
min-height: 24px;
|
19626
|
+
border-radius: 0;
|
17530
19627
|
cursor: pointer;
|
17531
|
-
font-family: '
|
17532
|
-
font-weight:
|
17533
|
-
|
17534
|
-
|
17535
|
-
list-style: none;
|
17536
|
-
margin: 0;
|
17537
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
17538
|
-
}
|
17539
|
-
|
17540
|
-
.desktop--linux .toggle-button:hover:not(.toggle-button--disabled) {
|
17541
|
-
background: linear-gradient(180deg, rgba(53, 132, 228, 1) 0%, rgba(26, 95, 180, 1) 100%);
|
17542
|
-
border-color: rgba(255, 255, 255, 0.25);
|
17543
|
-
transform: translateY(-1px);
|
17544
|
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
|
19628
|
+
font-family: 'Chicago', monospace;
|
19629
|
+
font-weight: bold;
|
19630
|
+
font-size: 12px;
|
19631
|
+
box-shadow: none;
|
17545
19632
|
}
|
17546
19633
|
|
17547
|
-
.desktop--
|
17548
|
-
background:
|
17549
|
-
color: #ffffff;
|
17550
|
-
border-color: rgba(255, 255, 255, 0.3);
|
17551
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(53, 132, 228, 0.4);
|
19634
|
+
.desktop--macintosh .toggle-button:hover:not(.toggle-button--disabled) {
|
19635
|
+
background: #F0F0F0;
|
17552
19636
|
}
|
17553
19637
|
|
17554
|
-
.desktop--
|
17555
|
-
|
17556
|
-
|
19638
|
+
.desktop--macintosh .toggle-button:active,
|
19639
|
+
.desktop--macintosh .toggle-button.selected {
|
19640
|
+
background: #000000;
|
19641
|
+
color: #FFFFFF;
|
17557
19642
|
}
|
17558
19643
|
|
17559
|
-
.desktop--
|
17560
|
-
|
17561
|
-
|
17562
|
-
border-color: rgba(255, 255, 255, 0.05) !important;
|
17563
|
-
cursor: not-allowed;
|
17564
|
-
opacity: 1;
|
17565
|
-
box-shadow: none;
|
19644
|
+
.desktop--macintosh .toggle-button:focus {
|
19645
|
+
outline: 2px dotted #000000;
|
19646
|
+
outline-offset: -4px;
|
17566
19647
|
}
|
17567
19648
|
|
17568
|
-
/*
|
17569
|
-
.desktop--
|
17570
|
-
background:
|
17571
|
-
|
17572
|
-
border:
|
17573
|
-
|
17574
|
-
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
|
17575
|
-
color: #ffffff;
|
19649
|
+
/* Classic Mac LaunchPad (Apple Menu) */
|
19650
|
+
.desktop--macintosh .launchpad {
|
19651
|
+
background: #FFFFFF;
|
19652
|
+
border: 2px solid #000000;
|
19653
|
+
border-radius: 0;
|
19654
|
+
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
|
17576
19655
|
}
|
17577
19656
|
|
17578
|
-
.desktop--
|
17579
|
-
background: linear-gradient(
|
17580
|
-
|
17581
|
-
|
19657
|
+
.desktop--macintosh .launchpad__header {
|
19658
|
+
background: repeating-linear-gradient(
|
19659
|
+
90deg,
|
19660
|
+
#000000 0px,
|
19661
|
+
#000000 1px,
|
19662
|
+
#FFFFFF 1px,
|
19663
|
+
#FFFFFF 2px
|
19664
|
+
);
|
19665
|
+
border-bottom: 2px solid #000000;
|
19666
|
+
color: #000000;
|
17582
19667
|
}
|
17583
19668
|
|
17584
|
-
.desktop--
|
17585
|
-
color: #
|
17586
|
-
font-family: '
|
17587
|
-
font-weight:
|
19669
|
+
.desktop--macintosh .launchpad__header h2 {
|
19670
|
+
color: #000000;
|
19671
|
+
font-family: 'Chicago', monospace;
|
19672
|
+
font-weight: bold;
|
19673
|
+
font-size: 14px;
|
19674
|
+
background: #FFFFFF;
|
19675
|
+
padding: 0 8px;
|
19676
|
+
border: 1px solid #000000;
|
19677
|
+
display: inline-block;
|
17588
19678
|
}
|
17589
19679
|
|
17590
|
-
.desktop--
|
17591
|
-
color: #
|
17592
|
-
background:
|
17593
|
-
border
|
19680
|
+
.desktop--macintosh .launchpad__close {
|
19681
|
+
color: #000000;
|
19682
|
+
background: #FFFFFF;
|
19683
|
+
border: 1px solid #000000;
|
19684
|
+
border-radius: 0;
|
17594
19685
|
}
|
17595
19686
|
|
17596
|
-
.desktop--
|
17597
|
-
background:
|
19687
|
+
.desktop--macintosh .launchpad__close:active {
|
19688
|
+
background: #000000;
|
19689
|
+
color: #FFFFFF;
|
17598
19690
|
}
|
17599
19691
|
|
17600
|
-
.desktop--
|
17601
|
-
background:
|
17602
|
-
border: 2px solid
|
17603
|
-
border-radius:
|
17604
|
-
|
17605
|
-
font-
|
19692
|
+
.desktop--macintosh .launchpad__search-input {
|
19693
|
+
background: #FFFFFF;
|
19694
|
+
border: 2px solid #000000;
|
19695
|
+
border-radius: 0;
|
19696
|
+
font-family: 'Chicago', monospace;
|
19697
|
+
font-size: 12px;
|
17606
19698
|
}
|
17607
19699
|
|
17608
|
-
.desktop--
|
17609
|
-
|
19700
|
+
.desktop--macintosh .launchpad__sidebar {
|
19701
|
+
background: #FFFFFF;
|
19702
|
+
border-right: 2px solid #000000;
|
17610
19703
|
}
|
17611
19704
|
|
17612
|
-
.desktop--
|
17613
|
-
|
17614
|
-
background: rgba(255, 255, 255, 0.15);
|
17615
|
-
outline: none;
|
19705
|
+
.desktop--macintosh .launchpad__categories {
|
19706
|
+
background: #FFFFFF;
|
17616
19707
|
}
|
17617
19708
|
|
17618
|
-
.desktop--
|
17619
|
-
background:
|
17620
|
-
border: 1px solid
|
17621
|
-
border-radius:
|
17622
|
-
color: #
|
17623
|
-
font-family: '
|
17624
|
-
font-size:
|
17625
|
-
font-weight:
|
19709
|
+
.desktop--macintosh .launchpad__category {
|
19710
|
+
background: #FFFFFF;
|
19711
|
+
border: 1px solid #000000;
|
19712
|
+
border-radius: 0;
|
19713
|
+
color: #000000;
|
19714
|
+
font-family: 'Chicago', monospace;
|
19715
|
+
font-size: 12px;
|
19716
|
+
font-weight: bold;
|
17626
19717
|
}
|
17627
19718
|
|
17628
|
-
.desktop--
|
17629
|
-
background:
|
17630
|
-
border-color: rgba(255, 255, 255, 0.3);
|
19719
|
+
.desktop--macintosh .launchpad__category:hover {
|
19720
|
+
background: #F0F0F0;
|
17631
19721
|
}
|
17632
19722
|
|
17633
|
-
.desktop--
|
17634
|
-
|
17635
|
-
|
17636
|
-
color: #
|
19723
|
+
.desktop--macintosh .launchpad__category:active,
|
19724
|
+
.desktop--macintosh .launchpad__category.active {
|
19725
|
+
background: #000000;
|
19726
|
+
color: #FFFFFF;
|
17637
19727
|
}
|
17638
19728
|
|
17639
|
-
.desktop--
|
17640
|
-
background:
|
19729
|
+
.desktop--macintosh .launchpad__app {
|
19730
|
+
background: #FFFFFF;
|
17641
19731
|
border: 1px solid transparent;
|
17642
|
-
border-radius:
|
17643
|
-
transition:
|
17644
|
-
}
|
17645
|
-
|
17646
|
-
.desktop--linux .application-menu__app:hover {
|
17647
|
-
background: rgba(255, 255, 255, 0.15);
|
17648
|
-
border-color: rgba(255, 255, 255, 0.2);
|
17649
|
-
transform: translateY(-2px);
|
17650
|
-
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
17651
|
-
}
|
17652
|
-
|
17653
|
-
.desktop--linux .app-name {
|
17654
|
-
font-family: 'Ubuntu', sans-serif;
|
17655
|
-
font-size: 13px;
|
17656
|
-
font-weight: 400;
|
17657
|
-
color: #ffffff;
|
19732
|
+
border-radius: 0;
|
19733
|
+
transition: none;
|
17658
19734
|
}
|
17659
19735
|
|
17660
|
-
.desktop--
|
17661
|
-
|
17662
|
-
|
17663
|
-
font-weight: 500;
|
19736
|
+
.desktop--macintosh .launchpad__app:hover {
|
19737
|
+
background: #000000;
|
19738
|
+
color: #FFFFFF;
|
17664
19739
|
}
|
17665
19740
|
|
17666
|
-
|
17667
|
-
|
17668
|
-
width: 8px;
|
19741
|
+
.desktop--macintosh .launchpad__app:hover .app-name {
|
19742
|
+
color: #FFFFFF;
|
17669
19743
|
}
|
17670
19744
|
|
17671
|
-
.desktop--
|
17672
|
-
|
17673
|
-
|
19745
|
+
.desktop--macintosh .app-name {
|
19746
|
+
font-family: 'Chicago', monospace;
|
19747
|
+
font-size: 12px;
|
19748
|
+
font-weight: bold;
|
19749
|
+
color: #000000;
|
17674
19750
|
}
|
17675
19751
|
|
17676
|
-
|
17677
|
-
|
17678
|
-
|
19752
|
+
/* Classic Mac scrollbar */
|
19753
|
+
.desktop--macintosh .launchpad__content::-webkit-scrollbar {
|
19754
|
+
width: 16px;
|
17679
19755
|
}
|
17680
19756
|
|
17681
|
-
.desktop--
|
17682
|
-
background:
|
19757
|
+
.desktop--macintosh .launchpad__content::-webkit-scrollbar-track {
|
19758
|
+
background: #FFFFFF;
|
19759
|
+
border: 1px solid #000000;
|
17683
19760
|
}
|
17684
|
-
/* macOS Desktop Theme */
|
17685
19761
|
|
17686
|
-
.desktop--
|
17687
|
-
background: linear-gradient(
|
17688
|
-
|
19762
|
+
.desktop--macintosh .launchpad__content::-webkit-scrollbar-thumb {
|
19763
|
+
background: repeating-linear-gradient(
|
19764
|
+
45deg,
|
19765
|
+
#000000 0px,
|
19766
|
+
#000000 2px,
|
19767
|
+
#FFFFFF 2px,
|
19768
|
+
#FFFFFF 4px
|
19769
|
+
);
|
19770
|
+
border: 1px solid #000000;
|
17689
19771
|
}
|
17690
19772
|
|
17691
|
-
.desktop--
|
17692
|
-
background
|
17693
|
-
|
17694
|
-
|
17695
|
-
radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
|
19773
|
+
.desktop--macintosh .launchpad__content::-webkit-scrollbar-button {
|
19774
|
+
background: #FFFFFF;
|
19775
|
+
border: 1px solid #000000;
|
19776
|
+
height: 16px;
|
17696
19777
|
}
|
17697
19778
|
|
17698
|
-
|
17699
|
-
|
17700
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
17701
|
-
border-radius: 12px;
|
17702
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
17703
|
-
background: rgba(255, 255, 255, 0.95);
|
17704
|
-
backdrop-filter: blur(20px);
|
17705
|
-
overflow: hidden;
|
19779
|
+
.desktop--macintosh .launchpad__content::-webkit-scrollbar-button:active {
|
19780
|
+
background: #000000;
|
17706
19781
|
}
|
17707
19782
|
|
17708
|
-
|
17709
|
-
|
17710
|
-
|
17711
|
-
|
17712
|
-
|
17713
|
-
height: 36px;
|
17714
|
-
padding: 0 16px;
|
19783
|
+
/* MSX Desktop Theme (MSX-DOS inspired) */
|
19784
|
+
|
19785
|
+
.desktop--msx {
|
19786
|
+
background: #2121DE;
|
19787
|
+
font-family: 'Courier New', 'Consolas', monospace;
|
17715
19788
|
}
|
17716
19789
|
|
17717
|
-
.desktop--
|
17718
|
-
|
17719
|
-
|
17720
|
-
|
17721
|
-
|
19790
|
+
.desktop--msx .desktop__background {
|
19791
|
+
background: #2121DE;
|
19792
|
+
background-image:
|
19793
|
+
repeating-linear-gradient(
|
19794
|
+
0deg,
|
19795
|
+
transparent,
|
19796
|
+
transparent 2px,
|
19797
|
+
rgba(0, 0, 0, 0.1) 2px,
|
19798
|
+
rgba(0, 0, 0, 0.1) 4px
|
19799
|
+
);
|
19800
|
+
}
|
19801
|
+
|
19802
|
+
/* MSX-style windows */
|
19803
|
+
.desktop--msx .window {
|
19804
|
+
border: 4px solid #21DE21;
|
19805
|
+
border-radius: 0;
|
19806
|
+
box-shadow: 0 0 20px rgba(33, 222, 33, 0.5);
|
19807
|
+
background: #2121DE;
|
17722
19808
|
}
|
17723
19809
|
|
17724
|
-
.desktop--
|
17725
|
-
|
17726
|
-
|
19810
|
+
.desktop--msx .window__header {
|
19811
|
+
background: #21DE21;
|
19812
|
+
border-bottom: 4px solid #21DE21;
|
19813
|
+
border-radius: 0;
|
19814
|
+
height: 32px;
|
19815
|
+
padding: 0 8px;
|
17727
19816
|
}
|
17728
19817
|
|
17729
|
-
.desktop--
|
17730
|
-
|
17731
|
-
|
17732
|
-
|
17733
|
-
|
17734
|
-
|
17735
|
-
|
19818
|
+
.desktop--msx .window__title {
|
19819
|
+
font-size: 14px;
|
19820
|
+
font-weight: bold;
|
19821
|
+
color: #2121DE;
|
19822
|
+
text-transform: uppercase;
|
19823
|
+
letter-spacing: 2px;
|
19824
|
+
}
|
19825
|
+
|
19826
|
+
.desktop--msx .window__control {
|
19827
|
+
width: 24px;
|
19828
|
+
height: 24px;
|
19829
|
+
border: 2px solid #21DE21;
|
19830
|
+
border-radius: 0;
|
19831
|
+
font-size: 12px;
|
19832
|
+
font-weight: bold;
|
19833
|
+
color: #21DE21;
|
19834
|
+
background: #2121DE;
|
17736
19835
|
display: flex;
|
17737
19836
|
align-items: center;
|
17738
19837
|
justify-content: center;
|
17739
|
-
transition:
|
17740
|
-
margin-
|
17741
|
-
position: relative;
|
19838
|
+
transition: none;
|
19839
|
+
margin-left: 4px;
|
17742
19840
|
}
|
17743
19841
|
|
17744
|
-
.desktop--
|
17745
|
-
|
17746
|
-
|
19842
|
+
.desktop--msx .window__control:hover {
|
19843
|
+
background: #21DE21;
|
19844
|
+
color: #2121DE;
|
17747
19845
|
}
|
17748
19846
|
|
17749
|
-
.desktop--
|
17750
|
-
|
19847
|
+
.desktop--msx .window__control:active {
|
19848
|
+
background: #FFFFFF;
|
19849
|
+
color: #2121DE;
|
17751
19850
|
}
|
17752
19851
|
|
17753
|
-
.desktop--
|
17754
|
-
|
17755
|
-
border: 0.5px solid #e0443e;
|
19852
|
+
.desktop--msx .window__control--close::before {
|
19853
|
+
content: 'X';
|
17756
19854
|
}
|
17757
19855
|
|
17758
|
-
.desktop--
|
17759
|
-
|
17760
|
-
border: 0.5px solid #dea123;
|
19856
|
+
.desktop--msx .window__control--minimize::before {
|
19857
|
+
content: '_';
|
17761
19858
|
}
|
17762
19859
|
|
17763
|
-
.desktop--
|
17764
|
-
|
17765
|
-
border: 0.5px solid #1aad34;
|
19860
|
+
.desktop--msx .window__control--maximize::before {
|
19861
|
+
content: '□';
|
17766
19862
|
}
|
17767
19863
|
|
17768
|
-
|
17769
|
-
|
19864
|
+
/* MSX taskbar styling */
|
19865
|
+
.desktop--msx .desktop-taskbar {
|
19866
|
+
background: #21DE21;
|
19867
|
+
border-top: 4px solid #FFFFFF;
|
19868
|
+
box-shadow: 0 0 20px rgba(33, 222, 33, 0.5);
|
17770
19869
|
}
|
17771
19870
|
|
17772
|
-
.desktop--
|
17773
|
-
|
17774
|
-
|
17775
|
-
font-size: 10px;
|
19871
|
+
.desktop--msx .desktop-taskbar .icon {
|
19872
|
+
color: #2121DE;
|
19873
|
+
text-shadow: 0 0 5px rgba(33, 33, 222, 0.5);
|
17776
19874
|
}
|
17777
19875
|
|
17778
|
-
.desktop--
|
17779
|
-
|
17780
|
-
|
17781
|
-
|
19876
|
+
.desktop--msx .desktop-taskbar .icon:hover {
|
19877
|
+
color: #FFFFFF;
|
19878
|
+
background-color: #2121DE;
|
19879
|
+
box-shadow: 0 0 10px rgba(33, 33, 222, 0.8);
|
17782
19880
|
}
|
17783
19881
|
|
17784
|
-
|
17785
|
-
|
17786
|
-
|
17787
|
-
|
19882
|
+
/* MSX taskbar menu styling */
|
19883
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu {
|
19884
|
+
background-color: #2121DE;
|
19885
|
+
border: 4px solid #21DE21;
|
19886
|
+
box-shadow: 0 0 30px rgba(33, 222, 33, 0.6);
|
17788
19887
|
}
|
17789
19888
|
|
17790
|
-
|
17791
|
-
|
17792
|
-
|
17793
|
-
backdrop-filter: blur(20px);
|
17794
|
-
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
17795
|
-
border-radius: 16px 16px 0 0;
|
19889
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-item > label {
|
19890
|
+
color: #21DE21;
|
19891
|
+
text-transform: uppercase;
|
17796
19892
|
}
|
17797
19893
|
|
17798
|
-
.desktop--
|
17799
|
-
|
17800
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
17801
|
-
border-radius: 12px;
|
17802
|
-
color: #1d1d1f;
|
17803
|
-
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
17804
|
-
font-size: 13px;
|
17805
|
-
font-weight: 500;
|
17806
|
-
transition: all 0.3s ease;
|
17807
|
-
backdrop-filter: blur(10px);
|
19894
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-item > .icon {
|
19895
|
+
color: #21DE21;
|
17808
19896
|
}
|
17809
19897
|
|
17810
|
-
.desktop--
|
17811
|
-
background:
|
17812
|
-
|
17813
|
-
transform: translateY(-2px);
|
17814
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
19898
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-item:hover {
|
19899
|
+
background: #21DE21;
|
19900
|
+
color: #2121DE;
|
17815
19901
|
}
|
17816
19902
|
|
17817
|
-
.desktop--
|
17818
|
-
|
17819
|
-
|
17820
|
-
color: #007aff;
|
19903
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-item:hover > label,
|
19904
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-item:hover > .icon {
|
19905
|
+
color: #2121DE;
|
17821
19906
|
}
|
17822
19907
|
|
17823
|
-
|
17824
|
-
|
17825
|
-
|
19908
|
+
.desktop--msx .desktop-taskbar .menu-icon > menu .menu-separator {
|
19909
|
+
border-color: #21DE21;
|
19910
|
+
}
|
19911
|
+
|
19912
|
+
.desktop--msx .taskbar-button {
|
19913
|
+
background: #2121DE;
|
19914
|
+
border: 2px solid #21DE21;
|
19915
|
+
border-radius: 0;
|
19916
|
+
color: #21DE21;
|
19917
|
+
font-family: 'Courier New', monospace;
|
19918
|
+
font-size: 12px;
|
19919
|
+
font-weight: bold;
|
19920
|
+
text-transform: uppercase;
|
19921
|
+
transition: none;
|
19922
|
+
}
|
19923
|
+
|
19924
|
+
.desktop--msx .taskbar-button:hover {
|
19925
|
+
background: #21DE21;
|
19926
|
+
color: #2121DE;
|
19927
|
+
}
|
19928
|
+
|
19929
|
+
.desktop--msx .taskbar-button:active,
|
19930
|
+
.desktop--msx .taskbar-button--active {
|
19931
|
+
background: #FFFFFF;
|
19932
|
+
color: #2121DE;
|
19933
|
+
border-color: #FFFFFF;
|
19934
|
+
}
|
19935
|
+
|
19936
|
+
/* MSX Start Button */
|
19937
|
+
.desktop--msx .toggle-button {
|
17826
19938
|
position: relative;
|
17827
|
-
padding:
|
19939
|
+
padding: 6px 12px;
|
17828
19940
|
display: flex;
|
17829
19941
|
align-items: center;
|
17830
19942
|
justify-content: center;
|
17831
|
-
gap:
|
17832
|
-
|
17833
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
19943
|
+
gap: 6px;
|
19944
|
+
border: 3px solid #FFFFFF;
|
17834
19945
|
outline: none;
|
17835
|
-
|
17836
|
-
|
17837
|
-
|
17838
|
-
|
17839
|
-
border-radius: 12px;
|
19946
|
+
color: #2121DE;
|
19947
|
+
background: #21DE21;
|
19948
|
+
min-height: 36px;
|
19949
|
+
border-radius: 0;
|
17840
19950
|
cursor: pointer;
|
17841
|
-
font-family:
|
17842
|
-
font-weight:
|
17843
|
-
|
17844
|
-
|
17845
|
-
|
17846
|
-
|
17847
|
-
backdrop-filter: blur(20px);
|
17848
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
19951
|
+
font-family: 'Courier New', monospace;
|
19952
|
+
font-weight: bold;
|
19953
|
+
font-size: 13px;
|
19954
|
+
text-transform: uppercase;
|
19955
|
+
letter-spacing: 2px;
|
19956
|
+
box-shadow: 0 0 10px rgba(33, 222, 33, 0.8);
|
17849
19957
|
}
|
17850
19958
|
|
17851
|
-
.desktop--
|
17852
|
-
background:
|
17853
|
-
|
17854
|
-
|
17855
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
19959
|
+
.desktop--msx .toggle-button:hover:not(.toggle-button--disabled) {
|
19960
|
+
background: #FFFFFF;
|
19961
|
+
color: #2121DE;
|
19962
|
+
box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
|
17856
19963
|
}
|
17857
19964
|
|
17858
|
-
.desktop--
|
17859
|
-
|
17860
|
-
|
17861
|
-
|
17862
|
-
|
19965
|
+
.desktop--msx .toggle-button:active,
|
19966
|
+
.desktop--msx .toggle-button.selected {
|
19967
|
+
background: #DE2121;
|
19968
|
+
color: #FFFFFF;
|
19969
|
+
border-color: #FFFFFF;
|
19970
|
+
box-shadow: 0 0 20px rgba(222, 33, 33, 0.8);
|
17863
19971
|
}
|
17864
19972
|
|
17865
|
-
.desktop--
|
17866
|
-
outline: 2px
|
19973
|
+
.desktop--msx .toggle-button:focus {
|
19974
|
+
outline: 2px dotted #FFFFFF;
|
17867
19975
|
outline-offset: 2px;
|
17868
19976
|
}
|
17869
19977
|
|
17870
|
-
|
17871
|
-
|
17872
|
-
|
17873
|
-
border
|
17874
|
-
|
17875
|
-
|
17876
|
-
box-shadow: none;
|
17877
|
-
backdrop-filter: none;
|
19978
|
+
/* MSX LaunchPad */
|
19979
|
+
.desktop--msx .launchpad {
|
19980
|
+
background: #2121DE;
|
19981
|
+
border: 4px solid #21DE21;
|
19982
|
+
border-radius: 0;
|
19983
|
+
box-shadow: 0 0 30px rgba(33, 222, 33, 0.6);
|
17878
19984
|
}
|
17879
19985
|
|
17880
|
-
|
17881
|
-
|
17882
|
-
|
17883
|
-
|
17884
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
17885
|
-
border-radius: 20px;
|
17886
|
-
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
19986
|
+
.desktop--msx .launchpad__header {
|
19987
|
+
background: #21DE21;
|
19988
|
+
border-bottom: 4px solid #FFFFFF;
|
19989
|
+
color: #2121DE;
|
17887
19990
|
}
|
17888
19991
|
|
17889
|
-
.desktop--
|
17890
|
-
|
17891
|
-
|
17892
|
-
|
17893
|
-
|
19992
|
+
.desktop--msx .launchpad__header h2 {
|
19993
|
+
color: #2121DE;
|
19994
|
+
font-family: 'Courier New', monospace;
|
19995
|
+
font-weight: bold;
|
19996
|
+
font-size: 16px;
|
19997
|
+
text-transform: uppercase;
|
19998
|
+
letter-spacing: 3px;
|
17894
19999
|
}
|
17895
20000
|
|
17896
|
-
.desktop--
|
17897
|
-
color: #
|
17898
|
-
|
17899
|
-
|
17900
|
-
|
20001
|
+
.desktop--msx .launchpad__close {
|
20002
|
+
color: #2121DE;
|
20003
|
+
background: #FFFFFF;
|
20004
|
+
border: 2px solid #2121DE;
|
20005
|
+
border-radius: 0;
|
20006
|
+
font-weight: bold;
|
17901
20007
|
}
|
17902
20008
|
|
17903
|
-
.desktop--
|
17904
|
-
|
17905
|
-
|
17906
|
-
border-
|
17907
|
-
font-size: 18px;
|
20009
|
+
.desktop--msx .launchpad__close:hover {
|
20010
|
+
background: #DE2121;
|
20011
|
+
color: #FFFFFF;
|
20012
|
+
border-color: #FFFFFF;
|
17908
20013
|
}
|
17909
20014
|
|
17910
|
-
.desktop--
|
17911
|
-
background:
|
17912
|
-
|
20015
|
+
.desktop--msx .launchpad__search-input {
|
20016
|
+
background: #2121DE;
|
20017
|
+
border: 3px solid #21DE21;
|
20018
|
+
border-radius: 0;
|
20019
|
+
color: #21DE21;
|
20020
|
+
font-family: 'Courier New', monospace;
|
20021
|
+
font-size: 13px;
|
20022
|
+
font-weight: bold;
|
17913
20023
|
}
|
17914
20024
|
|
17915
|
-
.desktop--
|
17916
|
-
|
17917
|
-
border: 2px solid rgba(0, 0, 0, 0.1);
|
17918
|
-
border-radius: 12px;
|
17919
|
-
color: #1d1d1f;
|
17920
|
-
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
17921
|
-
font-size: 15px;
|
20025
|
+
.desktop--msx .launchpad__search-input::placeholder {
|
20026
|
+
color: rgba(33, 222, 33, 0.5);
|
17922
20027
|
}
|
17923
20028
|
|
17924
|
-
.desktop--
|
17925
|
-
color: #
|
20029
|
+
.desktop--msx .launchpad__search-input:focus {
|
20030
|
+
border-color: #FFFFFF;
|
20031
|
+
outline: none;
|
20032
|
+
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
|
17926
20033
|
}
|
17927
20034
|
|
17928
|
-
.desktop--
|
17929
|
-
|
17930
|
-
|
17931
|
-
outline: none;
|
17932
|
-
box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
|
20035
|
+
.desktop--msx .launchpad__sidebar {
|
20036
|
+
background: #2121DE;
|
20037
|
+
border-right: 3px solid #21DE21;
|
17933
20038
|
}
|
17934
20039
|
|
17935
|
-
.desktop--
|
17936
|
-
background:
|
17937
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
17938
|
-
border-radius: 20px;
|
17939
|
-
color: #1d1d1f;
|
17940
|
-
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
17941
|
-
font-size: 13px;
|
17942
|
-
font-weight: 500;
|
20040
|
+
.desktop--msx .launchpad__categories {
|
20041
|
+
background: #2121DE;
|
17943
20042
|
}
|
17944
20043
|
|
17945
|
-
.desktop--
|
17946
|
-
background:
|
17947
|
-
border
|
20044
|
+
.desktop--msx .launchpad__category {
|
20045
|
+
background: #2121DE;
|
20046
|
+
border: 2px solid #21DE21;
|
20047
|
+
border-radius: 0;
|
20048
|
+
color: #21DE21;
|
20049
|
+
font-family: 'Courier New', monospace;
|
20050
|
+
font-size: 12px;
|
20051
|
+
font-weight: bold;
|
20052
|
+
text-transform: uppercase;
|
17948
20053
|
}
|
17949
20054
|
|
17950
|
-
.desktop--
|
17951
|
-
background:
|
17952
|
-
|
17953
|
-
color: white;
|
20055
|
+
.desktop--msx .launchpad__category:hover {
|
20056
|
+
background: #21DE21;
|
20057
|
+
color: #2121DE;
|
17954
20058
|
}
|
17955
20059
|
|
17956
|
-
.desktop--
|
17957
|
-
|
17958
|
-
|
17959
|
-
|
17960
|
-
|
17961
|
-
backdrop-filter: blur(10px);
|
20060
|
+
.desktop--msx .launchpad__category:active,
|
20061
|
+
.desktop--msx .launchpad__category.active {
|
20062
|
+
background: #FFFFFF;
|
20063
|
+
color: #2121DE;
|
20064
|
+
border-color: #FFFFFF;
|
17962
20065
|
}
|
17963
20066
|
|
17964
|
-
.desktop--
|
17965
|
-
background:
|
17966
|
-
border
|
17967
|
-
|
17968
|
-
|
20067
|
+
.desktop--msx .launchpad__app {
|
20068
|
+
background: #2121DE;
|
20069
|
+
border: 2px solid transparent;
|
20070
|
+
border-radius: 0;
|
20071
|
+
transition: none;
|
17969
20072
|
}
|
17970
20073
|
|
17971
|
-
.desktop--
|
17972
|
-
|
20074
|
+
.desktop--msx .launchpad__app:hover {
|
20075
|
+
background: #21DE21;
|
20076
|
+
border-color: #21DE21;
|
20077
|
+
}
|
20078
|
+
|
20079
|
+
.desktop--msx .launchpad__app:hover .app-name {
|
20080
|
+
color: #2121DE;
|
20081
|
+
}
|
20082
|
+
|
20083
|
+
.desktop--msx .app-name {
|
20084
|
+
font-family: 'Courier New', monospace;
|
17973
20085
|
font-size: 12px;
|
17974
|
-
font-weight:
|
17975
|
-
color: #
|
20086
|
+
font-weight: bold;
|
20087
|
+
color: #21DE21;
|
20088
|
+
text-transform: uppercase;
|
17976
20089
|
}
|
17977
20090
|
|
17978
|
-
|
17979
|
-
|
17980
|
-
|
17981
|
-
font-weight: 600;
|
20091
|
+
/* MSX scrollbar */
|
20092
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar {
|
20093
|
+
width: 16px;
|
17982
20094
|
}
|
17983
20095
|
|
17984
|
-
|
17985
|
-
|
17986
|
-
|
20096
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar-track {
|
20097
|
+
background: #2121DE;
|
20098
|
+
border: 2px solid #21DE21;
|
17987
20099
|
}
|
17988
20100
|
|
17989
|
-
.desktop--
|
17990
|
-
background:
|
20101
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar-thumb {
|
20102
|
+
background: #21DE21;
|
20103
|
+
border: 2px solid #2121DE;
|
17991
20104
|
}
|
17992
20105
|
|
17993
|
-
.desktop--
|
17994
|
-
background:
|
17995
|
-
border-radius: 3px;
|
20106
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar-thumb:hover {
|
20107
|
+
background: #FFFFFF;
|
17996
20108
|
}
|
17997
20109
|
|
17998
|
-
.desktop--
|
17999
|
-
background:
|
20110
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar-button {
|
20111
|
+
background: #21DE21;
|
20112
|
+
border: 2px solid #2121DE;
|
20113
|
+
height: 16px;
|
20114
|
+
}
|
20115
|
+
|
20116
|
+
.desktop--msx .launchpad__content::-webkit-scrollbar-button:hover {
|
20117
|
+
background: #FFFFFF;
|
18000
20118
|
}
|
20119
|
+
|
18001
20120
|
/**************************************/
|
18002
20121
|
/*********** content-editor ***********/
|
18003
20122
|
/**************************************/
|