@speechos/client 0.2.10 → 0.2.11
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/form-detector.d.ts.map +1 -1
- package/dist/index.cjs +296 -203
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +296 -203
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +286 -204
- package/dist/index.iife.min.js.map +1 -1
- package/dist/index.js +296 -203
- package/dist/index.js.map +1 -1
- package/dist/ui/audio-level-meter.d.ts.map +1 -1
- package/dist/ui/dictation-output-modal.d.ts.map +1 -1
- package/dist/ui/mic-button.d.ts.map +1 -1
- package/dist/ui/styles/modal-styles.d.ts.map +1 -1
- package/dist/ui/styles/popup-modal-styles.d.ts.map +1 -1
- package/dist/ui/tabs/about-tab.d.ts.map +1 -1
- package/dist/ui/tabs/history-tab.d.ts.map +1 -1
- package/dist/ui/tabs/settings-tab.d.ts.map +1 -1
- package/dist/ui/tabs/snippets-tab.d.ts.map +1 -1
- package/dist/ui/tabs/vocabulary-tab.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.iife.js
CHANGED
|
@@ -29040,6 +29040,17 @@
|
|
|
29040
29040
|
document.addEventListener("touchstart", this.touchHandler, true);
|
|
29041
29041
|
document.addEventListener("mousedown", this.mouseDownHandler, true);
|
|
29042
29042
|
this.isActive = true;
|
|
29043
|
+
// Check for already-focused form field (e.g., page loaded with autofocus)
|
|
29044
|
+
const activeElement = document.activeElement;
|
|
29045
|
+
if (isFormField(activeElement)) {
|
|
29046
|
+
console.log("[SpeechOS] FormDetector: found initially focused form field", {
|
|
29047
|
+
element: activeElement,
|
|
29048
|
+
tagName: activeElement?.tagName,
|
|
29049
|
+
});
|
|
29050
|
+
state.setFocusedElement(activeElement);
|
|
29051
|
+
state.show();
|
|
29052
|
+
events.emit("form:focus", { element: activeElement });
|
|
29053
|
+
}
|
|
29043
29054
|
}
|
|
29044
29055
|
/**
|
|
29045
29056
|
* Stop detecting form field focus events
|
|
@@ -30509,9 +30520,9 @@
|
|
|
30509
30520
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
30510
30521
|
|
|
30511
30522
|
/* Color tokens */
|
|
30512
|
-
--speechos-primary: #
|
|
30513
|
-
--speechos-primary-hover: #
|
|
30514
|
-
--speechos-primary-active: #
|
|
30523
|
+
--speechos-primary: #0d9488;
|
|
30524
|
+
--speechos-primary-hover: #0f766e;
|
|
30525
|
+
--speechos-primary-active: #115e59;
|
|
30515
30526
|
|
|
30516
30527
|
--speechos-bg: #ffffff;
|
|
30517
30528
|
--speechos-bg-hover: #f9fafb;
|
|
@@ -31076,45 +31087,51 @@
|
|
|
31076
31087
|
width: 56px;
|
|
31077
31088
|
height: 56px;
|
|
31078
31089
|
border-radius: var(--speechos-radius-full);
|
|
31079
|
-
background:
|
|
31090
|
+
background: #10b981;
|
|
31080
31091
|
border: none;
|
|
31081
31092
|
cursor: pointer;
|
|
31082
31093
|
display: flex;
|
|
31083
31094
|
align-items: center;
|
|
31084
31095
|
justify-content: center;
|
|
31085
31096
|
color: white;
|
|
31086
|
-
box-shadow: 0 4px
|
|
31087
|
-
transition: all 0.
|
|
31097
|
+
box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
|
|
31098
|
+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
31088
31099
|
position: relative;
|
|
31089
31100
|
overflow: hidden;
|
|
31090
31101
|
}
|
|
31091
31102
|
|
|
31092
31103
|
.mic-button:hover {
|
|
31104
|
+
background: #059669;
|
|
31093
31105
|
transform: scale(1.05);
|
|
31094
|
-
box-shadow: 0 6px
|
|
31106
|
+
box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
|
|
31095
31107
|
}
|
|
31096
31108
|
|
|
31097
31109
|
.mic-button:active {
|
|
31098
31110
|
transform: scale(0.98);
|
|
31099
31111
|
}
|
|
31100
31112
|
|
|
31113
|
+
.mic-button:focus {
|
|
31114
|
+
outline: none;
|
|
31115
|
+
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4), 0 4px 16px rgba(16, 185, 129, 0.35);
|
|
31116
|
+
}
|
|
31117
|
+
|
|
31101
31118
|
/* Expanded state - bubbles visible */
|
|
31102
31119
|
.mic-button.expanded {
|
|
31103
|
-
background:
|
|
31120
|
+
background: #059669;
|
|
31104
31121
|
}
|
|
31105
31122
|
|
|
31106
31123
|
/* Connecting state - Siri-style metallic spinner */
|
|
31107
31124
|
.mic-button.connecting {
|
|
31108
31125
|
background: radial-gradient(
|
|
31109
31126
|
circle at 30% 30%,
|
|
31110
|
-
#
|
|
31111
|
-
#
|
|
31112
|
-
#
|
|
31113
|
-
#
|
|
31127
|
+
#2dd4bf 0%,
|
|
31128
|
+
#14b8a6 40%,
|
|
31129
|
+
#0d9488 70%,
|
|
31130
|
+
#0f766e 100%
|
|
31114
31131
|
);
|
|
31115
31132
|
cursor: wait;
|
|
31116
|
-
box-shadow: 0 0 20px rgba(
|
|
31117
|
-
0 0 40px rgba(
|
|
31133
|
+
box-shadow: 0 0 20px rgba(13, 148, 136, 0.4),
|
|
31134
|
+
0 0 40px rgba(13, 148, 136, 0.2),
|
|
31118
31135
|
inset 0 0 20px rgba(255, 255, 255, 0.1);
|
|
31119
31136
|
}
|
|
31120
31137
|
|
|
@@ -31157,15 +31174,15 @@
|
|
|
31157
31174
|
background: conic-gradient(
|
|
31158
31175
|
from 0deg,
|
|
31159
31176
|
transparent 0deg,
|
|
31160
|
-
rgba(
|
|
31161
|
-
rgba(
|
|
31177
|
+
rgba(45, 212, 191, 0.1) 30deg,
|
|
31178
|
+
rgba(13, 148, 136, 0.8) 90deg,
|
|
31162
31179
|
rgba(255, 255, 255, 0.95) 120deg,
|
|
31163
|
-
rgba(
|
|
31164
|
-
rgba(
|
|
31165
|
-
rgba(
|
|
31180
|
+
rgba(45, 212, 191, 0.9) 150deg,
|
|
31181
|
+
rgba(13, 148, 136, 0.6) 180deg,
|
|
31182
|
+
rgba(15, 118, 110, 0.3) 210deg,
|
|
31166
31183
|
transparent 270deg,
|
|
31167
|
-
rgba(
|
|
31168
|
-
rgba(
|
|
31184
|
+
rgba(94, 234, 212, 0.2) 300deg,
|
|
31185
|
+
rgba(13, 148, 136, 0.5) 330deg,
|
|
31169
31186
|
transparent 360deg
|
|
31170
31187
|
);
|
|
31171
31188
|
-webkit-mask: linear-gradient(#fff 0 0) content-box,
|
|
@@ -31186,13 +31203,13 @@
|
|
|
31186
31203
|
background: conic-gradient(
|
|
31187
31204
|
from 180deg,
|
|
31188
31205
|
transparent 0deg,
|
|
31189
|
-
rgba(
|
|
31206
|
+
rgba(153, 246, 228, 0.3) 60deg,
|
|
31190
31207
|
rgba(255, 255, 255, 0.7) 90deg,
|
|
31191
|
-
rgba(
|
|
31208
|
+
rgba(94, 234, 212, 0.5) 120deg,
|
|
31192
31209
|
transparent 180deg,
|
|
31193
|
-
rgba(
|
|
31210
|
+
rgba(45, 212, 191, 0.2) 240deg,
|
|
31194
31211
|
rgba(255, 255, 255, 0.5) 270deg,
|
|
31195
|
-
rgba(
|
|
31212
|
+
rgba(13, 148, 136, 0.4) 300deg,
|
|
31196
31213
|
transparent 360deg
|
|
31197
31214
|
);
|
|
31198
31215
|
-webkit-mask: linear-gradient(#fff 0 0) content-box,
|
|
@@ -31233,8 +31250,8 @@
|
|
|
31233
31250
|
border-radius: 50%;
|
|
31234
31251
|
background: radial-gradient(
|
|
31235
31252
|
circle,
|
|
31236
|
-
rgba(
|
|
31237
|
-
rgba(
|
|
31253
|
+
rgba(13, 148, 136, 0.4) 0%,
|
|
31254
|
+
rgba(13, 148, 136, 0.15) 40%,
|
|
31238
31255
|
transparent 70%
|
|
31239
31256
|
);
|
|
31240
31257
|
animation: siri-glow-pulse 2s ease-in-out infinite;
|
|
@@ -32654,15 +32671,15 @@
|
|
|
32654
32671
|
}
|
|
32655
32672
|
|
|
32656
32673
|
.modal {
|
|
32657
|
-
background: #
|
|
32674
|
+
background: #f5f5f4;
|
|
32658
32675
|
border-radius: 16px;
|
|
32659
32676
|
width: 90%;
|
|
32660
32677
|
max-width: 580px;
|
|
32661
32678
|
height: min(560px, 85vh);
|
|
32662
32679
|
display: flex;
|
|
32663
32680
|
flex-direction: column;
|
|
32664
|
-
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.
|
|
32665
|
-
0 0 0 1px rgba(
|
|
32681
|
+
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
|
|
32682
|
+
0 0 0 1px rgba(0, 0, 0, 0.05);
|
|
32666
32683
|
transform: scale(0.95) translateY(10px);
|
|
32667
32684
|
transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
32668
32685
|
pointer-events: auto;
|
|
@@ -32687,16 +32704,16 @@
|
|
|
32687
32704
|
align-items: center;
|
|
32688
32705
|
justify-content: space-between;
|
|
32689
32706
|
padding: 16px 20px;
|
|
32690
|
-
border-bottom: 1px solid
|
|
32691
|
-
background:
|
|
32707
|
+
border-bottom: 1px solid #e5e5e5;
|
|
32708
|
+
background: #ffffff;
|
|
32692
32709
|
}
|
|
32693
32710
|
|
|
32694
32711
|
.modal-title {
|
|
32695
32712
|
font-size: 17px;
|
|
32696
32713
|
font-weight: 600;
|
|
32697
|
-
color:
|
|
32714
|
+
color: #171717;
|
|
32698
32715
|
margin: 0;
|
|
32699
|
-
letter-spacing: -0.
|
|
32716
|
+
letter-spacing: -0.02em;
|
|
32700
32717
|
}
|
|
32701
32718
|
|
|
32702
32719
|
.modal-logo {
|
|
@@ -32709,7 +32726,7 @@
|
|
|
32709
32726
|
width: 28px;
|
|
32710
32727
|
height: 28px;
|
|
32711
32728
|
border-radius: 8px;
|
|
32712
|
-
background: linear-gradient(135deg, #
|
|
32729
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
32713
32730
|
display: flex;
|
|
32714
32731
|
align-items: center;
|
|
32715
32732
|
justify-content: center;
|
|
@@ -32724,13 +32741,13 @@
|
|
|
32724
32741
|
.logo-text {
|
|
32725
32742
|
font-size: 17px;
|
|
32726
32743
|
font-weight: 500;
|
|
32727
|
-
color:
|
|
32744
|
+
color: #171717;
|
|
32728
32745
|
letter-spacing: -0.02em;
|
|
32729
32746
|
}
|
|
32730
32747
|
|
|
32731
32748
|
.logo-os {
|
|
32732
32749
|
font-weight: 700;
|
|
32733
|
-
background: linear-gradient(135deg, #
|
|
32750
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
32734
32751
|
-webkit-background-clip: text;
|
|
32735
32752
|
-webkit-text-fill-color: transparent;
|
|
32736
32753
|
background-clip: text;
|
|
@@ -32746,13 +32763,22 @@
|
|
|
32746
32763
|
display: flex;
|
|
32747
32764
|
align-items: center;
|
|
32748
32765
|
justify-content: center;
|
|
32749
|
-
color:
|
|
32766
|
+
color: #737373;
|
|
32750
32767
|
transition: all 0.15s ease;
|
|
32751
32768
|
}
|
|
32752
32769
|
|
|
32753
32770
|
.close-button:hover {
|
|
32754
|
-
background:
|
|
32755
|
-
color:
|
|
32771
|
+
background: #f5f5f4;
|
|
32772
|
+
color: #171717;
|
|
32773
|
+
}
|
|
32774
|
+
|
|
32775
|
+
.close-button:focus {
|
|
32776
|
+
outline: none;
|
|
32777
|
+
box-shadow: 0 0 0 2px #0d9488, 0 0 0 4px rgba(13, 148, 136, 0.2);
|
|
32778
|
+
}
|
|
32779
|
+
|
|
32780
|
+
.close-button:active {
|
|
32781
|
+
transform: scale(0.95);
|
|
32756
32782
|
}
|
|
32757
32783
|
|
|
32758
32784
|
.modal-body {
|
|
@@ -32764,8 +32790,8 @@
|
|
|
32764
32790
|
.sidebar {
|
|
32765
32791
|
width: 110px;
|
|
32766
32792
|
flex-shrink: 0;
|
|
32767
|
-
background:
|
|
32768
|
-
border-right: 1px solid
|
|
32793
|
+
background: #fafaf9;
|
|
32794
|
+
border-right: 1px solid #e5e5e5;
|
|
32769
32795
|
padding: 12px 8px;
|
|
32770
32796
|
display: flex;
|
|
32771
32797
|
flex-direction: column;
|
|
@@ -32794,19 +32820,25 @@
|
|
|
32794
32820
|
border-radius: 10px;
|
|
32795
32821
|
background: transparent;
|
|
32796
32822
|
cursor: pointer;
|
|
32797
|
-
color:
|
|
32823
|
+
color: #525252;
|
|
32798
32824
|
transition: all 0.15s ease;
|
|
32799
32825
|
position: relative;
|
|
32800
32826
|
}
|
|
32801
32827
|
|
|
32802
32828
|
.sidebar-item:hover {
|
|
32803
|
-
background:
|
|
32804
|
-
color:
|
|
32829
|
+
background: #ffffff;
|
|
32830
|
+
color: #171717;
|
|
32831
|
+
}
|
|
32832
|
+
|
|
32833
|
+
.sidebar-item:focus {
|
|
32834
|
+
outline: none;
|
|
32835
|
+
box-shadow: inset 0 0 0 2px rgba(13, 148, 136, 0.4);
|
|
32805
32836
|
}
|
|
32806
32837
|
|
|
32807
32838
|
.sidebar-item.active {
|
|
32808
|
-
background: rgba(
|
|
32809
|
-
color: #
|
|
32839
|
+
background: rgba(15, 118, 110, 0.12);
|
|
32840
|
+
color: #0f766e;
|
|
32841
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
32810
32842
|
}
|
|
32811
32843
|
|
|
32812
32844
|
.sidebar-item.active::before {
|
|
@@ -32817,7 +32849,7 @@
|
|
|
32817
32849
|
transform: translateY(-50%);
|
|
32818
32850
|
width: 3px;
|
|
32819
32851
|
height: 24px;
|
|
32820
|
-
background: #
|
|
32852
|
+
background: #0f766e;
|
|
32821
32853
|
border-radius: 0 3px 3px 0;
|
|
32822
32854
|
}
|
|
32823
32855
|
|
|
@@ -32860,14 +32892,14 @@
|
|
|
32860
32892
|
.section-title {
|
|
32861
32893
|
font-size: 15px;
|
|
32862
32894
|
font-weight: 600;
|
|
32863
|
-
color:
|
|
32895
|
+
color: #171717;
|
|
32864
32896
|
margin: 0 0 6px 0;
|
|
32865
|
-
letter-spacing: -0.
|
|
32897
|
+
letter-spacing: -0.02em;
|
|
32866
32898
|
}
|
|
32867
32899
|
|
|
32868
32900
|
.section-description {
|
|
32869
32901
|
font-size: 13px;
|
|
32870
|
-
color:
|
|
32902
|
+
color: #525252;
|
|
32871
32903
|
line-height: 1.5;
|
|
32872
32904
|
margin: 0;
|
|
32873
32905
|
}
|
|
@@ -32875,7 +32907,7 @@
|
|
|
32875
32907
|
.empty-state {
|
|
32876
32908
|
text-align: center;
|
|
32877
32909
|
padding: 40px 20px;
|
|
32878
|
-
color:
|
|
32910
|
+
color: #737373;
|
|
32879
32911
|
}
|
|
32880
32912
|
|
|
32881
32913
|
.empty-state-icon {
|
|
@@ -32887,7 +32919,7 @@
|
|
|
32887
32919
|
font-size: 15px;
|
|
32888
32920
|
font-weight: 500;
|
|
32889
32921
|
margin-bottom: 8px;
|
|
32890
|
-
color:
|
|
32922
|
+
color: #525252;
|
|
32891
32923
|
}
|
|
32892
32924
|
|
|
32893
32925
|
.empty-state-text {
|
|
@@ -32905,7 +32937,7 @@
|
|
|
32905
32937
|
display: flex;
|
|
32906
32938
|
align-items: center;
|
|
32907
32939
|
justify-content: center;
|
|
32908
|
-
color:
|
|
32940
|
+
color: #737373;
|
|
32909
32941
|
transition: all 0.15s ease;
|
|
32910
32942
|
}
|
|
32911
32943
|
|
|
@@ -32943,20 +32975,30 @@
|
|
|
32943
32975
|
align-items: center;
|
|
32944
32976
|
gap: 6px;
|
|
32945
32977
|
padding: 10px 16px;
|
|
32946
|
-
background:
|
|
32978
|
+
background: #0d9488;
|
|
32947
32979
|
border: none;
|
|
32948
32980
|
border-radius: 8px;
|
|
32949
32981
|
color: white;
|
|
32950
32982
|
font-size: 13px;
|
|
32951
32983
|
font-weight: 600;
|
|
32984
|
+
letter-spacing: 0.01em;
|
|
32952
32985
|
cursor: pointer;
|
|
32953
|
-
transition: all 0.
|
|
32954
|
-
box-shadow: 0
|
|
32986
|
+
transition: all 0.15s ease;
|
|
32987
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
32955
32988
|
}
|
|
32956
32989
|
|
|
32957
32990
|
.add-button:hover:not(:disabled) {
|
|
32958
|
-
|
|
32959
|
-
box-shadow: 0 4px 12px rgba(
|
|
32991
|
+
background: #0f766e;
|
|
32992
|
+
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
|
|
32993
|
+
}
|
|
32994
|
+
|
|
32995
|
+
.add-button:focus:not(:disabled) {
|
|
32996
|
+
outline: none;
|
|
32997
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
32998
|
+
}
|
|
32999
|
+
|
|
33000
|
+
.add-button:active:not(:disabled) {
|
|
33001
|
+
transform: scale(0.98);
|
|
32960
33002
|
}
|
|
32961
33003
|
|
|
32962
33004
|
.add-button:disabled {
|
|
@@ -32967,7 +33009,7 @@
|
|
|
32967
33009
|
|
|
32968
33010
|
.count-badge {
|
|
32969
33011
|
font-size: 12px;
|
|
32970
|
-
color:
|
|
33012
|
+
color: #737373;
|
|
32971
33013
|
font-weight: 500;
|
|
32972
33014
|
}
|
|
32973
33015
|
|
|
@@ -32979,11 +33021,12 @@
|
|
|
32979
33021
|
}
|
|
32980
33022
|
|
|
32981
33023
|
.add-form {
|
|
32982
|
-
background:
|
|
32983
|
-
border: 1px solid
|
|
33024
|
+
background: #ffffff;
|
|
33025
|
+
border: 1px solid #e5e5e5;
|
|
32984
33026
|
border-radius: 12px;
|
|
32985
33027
|
padding: 16px;
|
|
32986
33028
|
margin-bottom: 16px;
|
|
33029
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
32987
33030
|
}
|
|
32988
33031
|
|
|
32989
33032
|
.form-group {
|
|
@@ -32998,7 +33041,7 @@
|
|
|
32998
33041
|
display: block;
|
|
32999
33042
|
font-size: 12px;
|
|
33000
33043
|
font-weight: 600;
|
|
33001
|
-
color:
|
|
33044
|
+
color: #525252;
|
|
33002
33045
|
margin-bottom: 8px;
|
|
33003
33046
|
text-transform: uppercase;
|
|
33004
33047
|
letter-spacing: 0.04em;
|
|
@@ -33007,10 +33050,10 @@
|
|
|
33007
33050
|
.form-input {
|
|
33008
33051
|
width: 100%;
|
|
33009
33052
|
padding: 12px 14px;
|
|
33010
|
-
background:
|
|
33011
|
-
border: 1px solid
|
|
33053
|
+
background: #ffffff;
|
|
33054
|
+
border: 1px solid #d4d4d4;
|
|
33012
33055
|
border-radius: 8px;
|
|
33013
|
-
color:
|
|
33056
|
+
color: #171717;
|
|
33014
33057
|
font-size: 14px;
|
|
33015
33058
|
font-family: inherit;
|
|
33016
33059
|
transition: all 0.15s ease;
|
|
@@ -33019,12 +33062,12 @@
|
|
|
33019
33062
|
|
|
33020
33063
|
.form-input:focus {
|
|
33021
33064
|
outline: none;
|
|
33022
|
-
border-color: #
|
|
33023
|
-
box-shadow: 0 0 0 3px rgba(
|
|
33065
|
+
border-color: #0d9488;
|
|
33066
|
+
box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
|
|
33024
33067
|
}
|
|
33025
33068
|
|
|
33026
33069
|
.form-input::placeholder {
|
|
33027
|
-
color:
|
|
33070
|
+
color: #a3a3a3;
|
|
33028
33071
|
}
|
|
33029
33072
|
|
|
33030
33073
|
.form-input.error {
|
|
@@ -33048,7 +33091,7 @@
|
|
|
33048
33091
|
|
|
33049
33092
|
.char-count {
|
|
33050
33093
|
font-size: 11px;
|
|
33051
|
-
color:
|
|
33094
|
+
color: #737373;
|
|
33052
33095
|
font-variant-numeric: tabular-nums;
|
|
33053
33096
|
}
|
|
33054
33097
|
|
|
@@ -33082,26 +33125,35 @@
|
|
|
33082
33125
|
}
|
|
33083
33126
|
|
|
33084
33127
|
.form-btn.cancel {
|
|
33085
|
-
background:
|
|
33086
|
-
border: 1px solid
|
|
33087
|
-
color:
|
|
33128
|
+
background: #ffffff;
|
|
33129
|
+
border: 1px solid #d4d4d4;
|
|
33130
|
+
color: #525252;
|
|
33088
33131
|
}
|
|
33089
33132
|
|
|
33090
33133
|
.form-btn.cancel:hover {
|
|
33091
|
-
background:
|
|
33092
|
-
border-color:
|
|
33134
|
+
background: #fafaf9;
|
|
33135
|
+
border-color: #a3a3a3;
|
|
33093
33136
|
}
|
|
33094
33137
|
|
|
33095
33138
|
.form-btn.save {
|
|
33096
|
-
background:
|
|
33139
|
+
background: #0d9488;
|
|
33097
33140
|
border: none;
|
|
33098
33141
|
color: white;
|
|
33099
|
-
box-shadow: 0
|
|
33142
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
33100
33143
|
}
|
|
33101
33144
|
|
|
33102
33145
|
.form-btn.save:hover:not(:disabled) {
|
|
33103
|
-
|
|
33104
|
-
box-shadow: 0 4px 12px rgba(
|
|
33146
|
+
background: #0f766e;
|
|
33147
|
+
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
|
|
33148
|
+
}
|
|
33149
|
+
|
|
33150
|
+
.form-btn.save:focus:not(:disabled) {
|
|
33151
|
+
outline: none;
|
|
33152
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
33153
|
+
}
|
|
33154
|
+
|
|
33155
|
+
.form-btn.save:active:not(:disabled) {
|
|
33156
|
+
transform: scale(0.98);
|
|
33105
33157
|
}
|
|
33106
33158
|
|
|
33107
33159
|
.form-btn.save:disabled {
|
|
@@ -33135,16 +33187,17 @@
|
|
|
33135
33187
|
}
|
|
33136
33188
|
|
|
33137
33189
|
.transcript-item {
|
|
33138
|
-
background:
|
|
33139
|
-
border: 1px solid
|
|
33190
|
+
background: #ffffff;
|
|
33191
|
+
border: 1px solid #e5e5e5;
|
|
33140
33192
|
border-radius: 10px;
|
|
33141
33193
|
padding: 12px 14px;
|
|
33142
33194
|
transition: all 0.15s ease;
|
|
33195
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
33143
33196
|
}
|
|
33144
33197
|
|
|
33145
33198
|
.transcript-item:hover {
|
|
33146
|
-
|
|
33147
|
-
|
|
33199
|
+
border-color: #d4d4d4;
|
|
33200
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
33148
33201
|
}
|
|
33149
33202
|
|
|
33150
33203
|
.transcript-header {
|
|
@@ -33167,28 +33220,28 @@
|
|
|
33167
33220
|
}
|
|
33168
33221
|
|
|
33169
33222
|
.transcript-badge.dictate {
|
|
33170
|
-
background: rgba(
|
|
33171
|
-
color: #
|
|
33223
|
+
background: rgba(13, 148, 136, 0.18);
|
|
33224
|
+
color: #0f766e;
|
|
33172
33225
|
}
|
|
33173
33226
|
|
|
33174
33227
|
.transcript-badge.edit {
|
|
33175
|
-
background: rgba(139, 92, 246, 0.
|
|
33176
|
-
color: #
|
|
33228
|
+
background: rgba(139, 92, 246, 0.18);
|
|
33229
|
+
color: #7c3aed;
|
|
33177
33230
|
}
|
|
33178
33231
|
|
|
33179
33232
|
.transcript-badge.command {
|
|
33180
|
-
background: rgba(245, 158, 11, 0.
|
|
33181
|
-
color: #
|
|
33233
|
+
background: rgba(245, 158, 11, 0.18);
|
|
33234
|
+
color: #b45309;
|
|
33182
33235
|
}
|
|
33183
33236
|
|
|
33184
33237
|
.transcript-time {
|
|
33185
33238
|
font-size: 12px;
|
|
33186
|
-
color:
|
|
33239
|
+
color: #737373;
|
|
33187
33240
|
}
|
|
33188
33241
|
|
|
33189
33242
|
.transcript-text {
|
|
33190
33243
|
font-size: 14px;
|
|
33191
|
-
color:
|
|
33244
|
+
color: #171717;
|
|
33192
33245
|
line-height: 1.5;
|
|
33193
33246
|
word-break: break-word;
|
|
33194
33247
|
display: -webkit-box;
|
|
@@ -33203,7 +33256,7 @@
|
|
|
33203
33256
|
gap: 8px;
|
|
33204
33257
|
margin-top: 10px;
|
|
33205
33258
|
padding-top: 10px;
|
|
33206
|
-
border-top: 1px solid
|
|
33259
|
+
border-top: 1px solid #e5e5e5;
|
|
33207
33260
|
}
|
|
33208
33261
|
|
|
33209
33262
|
.transcript-action-btn {
|
|
@@ -33212,23 +33265,23 @@
|
|
|
33212
33265
|
gap: 6px;
|
|
33213
33266
|
padding: 6px 10px;
|
|
33214
33267
|
border-radius: 6px;
|
|
33215
|
-
background: rgba(
|
|
33268
|
+
background: rgba(0, 0, 0, 0.08);
|
|
33216
33269
|
border: none;
|
|
33217
33270
|
cursor: pointer;
|
|
33218
33271
|
font-size: 12px;
|
|
33219
33272
|
font-weight: 500;
|
|
33220
|
-
color:
|
|
33273
|
+
color: #404040;
|
|
33221
33274
|
transition: all 0.15s ease;
|
|
33222
33275
|
}
|
|
33223
33276
|
|
|
33224
33277
|
.transcript-action-btn:hover {
|
|
33225
|
-
background: rgba(
|
|
33226
|
-
color:
|
|
33278
|
+
background: rgba(0, 0, 0, 0.12);
|
|
33279
|
+
color: #171717;
|
|
33227
33280
|
}
|
|
33228
33281
|
|
|
33229
33282
|
.transcript-action-btn.copied {
|
|
33230
|
-
background: rgba(
|
|
33231
|
-
color: #
|
|
33283
|
+
background: rgba(13, 148, 136, 0.2);
|
|
33284
|
+
color: #0d9488;
|
|
33232
33285
|
}
|
|
33233
33286
|
|
|
33234
33287
|
.transcript-action-btn.delete:hover {
|
|
@@ -33242,9 +33295,9 @@
|
|
|
33242
33295
|
margin-top: 16px;
|
|
33243
33296
|
padding: 10px;
|
|
33244
33297
|
background: rgba(239, 68, 68, 0.1);
|
|
33245
|
-
border: 1px solid rgba(239, 68, 68, 0.
|
|
33298
|
+
border: 1px solid rgba(239, 68, 68, 0.2);
|
|
33246
33299
|
border-radius: 8px;
|
|
33247
|
-
color: #
|
|
33300
|
+
color: #dc2626;
|
|
33248
33301
|
font-size: 13px;
|
|
33249
33302
|
font-weight: 500;
|
|
33250
33303
|
cursor: pointer;
|
|
@@ -33253,18 +33306,18 @@
|
|
|
33253
33306
|
|
|
33254
33307
|
.clear-all-button:hover {
|
|
33255
33308
|
background: rgba(239, 68, 68, 0.18);
|
|
33256
|
-
border-color: rgba(239, 68, 68, 0.
|
|
33309
|
+
border-color: rgba(239, 68, 68, 0.3);
|
|
33257
33310
|
}
|
|
33258
33311
|
|
|
33259
33312
|
.command-matched {
|
|
33260
33313
|
font-size: 12px;
|
|
33261
|
-
color:
|
|
33314
|
+
color: #525252;
|
|
33262
33315
|
margin-top: 6px;
|
|
33263
33316
|
}
|
|
33264
33317
|
|
|
33265
33318
|
.command-matched code {
|
|
33266
33319
|
background: rgba(245, 158, 11, 0.15);
|
|
33267
|
-
color: #
|
|
33320
|
+
color: #d97706;
|
|
33268
33321
|
padding: 2px 6px;
|
|
33269
33322
|
border-radius: 4px;
|
|
33270
33323
|
font-family: monospace;
|
|
@@ -33452,21 +33505,21 @@
|
|
|
33452
33505
|
gap: 8px;
|
|
33453
33506
|
font-size: 15px;
|
|
33454
33507
|
font-weight: 600;
|
|
33455
|
-
color:
|
|
33508
|
+
color: #171717;
|
|
33456
33509
|
margin-bottom: 10px;
|
|
33457
33510
|
}
|
|
33458
33511
|
|
|
33459
33512
|
.help-title.dictate {
|
|
33460
|
-
color: #
|
|
33513
|
+
color: #0f766e;
|
|
33461
33514
|
}
|
|
33462
33515
|
|
|
33463
33516
|
.help-title.edit {
|
|
33464
|
-
color: #
|
|
33517
|
+
color: #7c3aed;
|
|
33465
33518
|
}
|
|
33466
33519
|
|
|
33467
33520
|
.help-text {
|
|
33468
33521
|
font-size: 13px;
|
|
33469
|
-
color:
|
|
33522
|
+
color: #525252;
|
|
33470
33523
|
line-height: 1.6;
|
|
33471
33524
|
margin-bottom: 10px;
|
|
33472
33525
|
}
|
|
@@ -33483,17 +33536,17 @@
|
|
|
33483
33536
|
}
|
|
33484
33537
|
|
|
33485
33538
|
.help-example {
|
|
33486
|
-
background:
|
|
33487
|
-
border: 1px solid
|
|
33539
|
+
background: #ffffff;
|
|
33540
|
+
border: 1px solid #e5e5e5;
|
|
33488
33541
|
border-radius: 6px;
|
|
33489
33542
|
padding: 8px 12px;
|
|
33490
33543
|
font-size: 12px;
|
|
33491
|
-
color:
|
|
33544
|
+
color: #525252;
|
|
33492
33545
|
font-style: italic;
|
|
33493
33546
|
}
|
|
33494
33547
|
|
|
33495
33548
|
.help-title.languages {
|
|
33496
|
-
background: linear-gradient(135deg, #
|
|
33549
|
+
background: linear-gradient(135deg, #0f766e 0%, #1d4ed8 100%);
|
|
33497
33550
|
-webkit-background-clip: text;
|
|
33498
33551
|
-webkit-text-fill-color: transparent;
|
|
33499
33552
|
background-clip: text;
|
|
@@ -33571,7 +33624,7 @@
|
|
|
33571
33624
|
width: 36px;
|
|
33572
33625
|
height: 36px;
|
|
33573
33626
|
border-radius: 10px;
|
|
33574
|
-
background: linear-gradient(135deg, #
|
|
33627
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
33575
33628
|
display: flex;
|
|
33576
33629
|
align-items: center;
|
|
33577
33630
|
justify-content: center;
|
|
@@ -33586,13 +33639,13 @@
|
|
|
33586
33639
|
.about-logo-text {
|
|
33587
33640
|
font-size: 22px;
|
|
33588
33641
|
font-weight: 500;
|
|
33589
|
-
color:
|
|
33642
|
+
color: #171717;
|
|
33590
33643
|
letter-spacing: -0.02em;
|
|
33591
33644
|
}
|
|
33592
33645
|
|
|
33593
33646
|
.logo-os {
|
|
33594
33647
|
font-weight: 700;
|
|
33595
|
-
background: linear-gradient(135deg, #
|
|
33648
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
33596
33649
|
-webkit-background-clip: text;
|
|
33597
33650
|
-webkit-text-fill-color: transparent;
|
|
33598
33651
|
background-clip: text;
|
|
@@ -33600,7 +33653,7 @@
|
|
|
33600
33653
|
|
|
33601
33654
|
.about-description {
|
|
33602
33655
|
font-size: 14px;
|
|
33603
|
-
color:
|
|
33656
|
+
color: #525252;
|
|
33604
33657
|
line-height: 1.7;
|
|
33605
33658
|
margin-bottom: 24px;
|
|
33606
33659
|
}
|
|
@@ -33618,19 +33671,29 @@
|
|
|
33618
33671
|
align-items: center;
|
|
33619
33672
|
gap: 8px;
|
|
33620
33673
|
padding: 12px 18px;
|
|
33621
|
-
background:
|
|
33674
|
+
background: #0d9488;
|
|
33622
33675
|
border-radius: 10px;
|
|
33623
33676
|
color: white;
|
|
33624
33677
|
font-size: 14px;
|
|
33625
33678
|
font-weight: 600;
|
|
33679
|
+
letter-spacing: 0.01em;
|
|
33626
33680
|
text-decoration: none;
|
|
33627
|
-
transition: all 0.
|
|
33628
|
-
box-shadow: 0
|
|
33681
|
+
transition: all 0.15s ease;
|
|
33682
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
33629
33683
|
}
|
|
33630
33684
|
|
|
33631
33685
|
.about-link:hover {
|
|
33632
|
-
|
|
33633
|
-
box-shadow: 0
|
|
33686
|
+
background: #0f766e;
|
|
33687
|
+
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
|
|
33688
|
+
}
|
|
33689
|
+
|
|
33690
|
+
.about-link:focus {
|
|
33691
|
+
outline: none;
|
|
33692
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
33693
|
+
}
|
|
33694
|
+
|
|
33695
|
+
.about-link:active {
|
|
33696
|
+
transform: scale(0.98);
|
|
33634
33697
|
}
|
|
33635
33698
|
`,
|
|
33636
33699
|
]; }
|
|
@@ -33710,20 +33773,21 @@
|
|
|
33710
33773
|
gap: 3px;
|
|
33711
33774
|
height: 32px;
|
|
33712
33775
|
padding: 8px 12px;
|
|
33713
|
-
background:
|
|
33776
|
+
background: #ffffff;
|
|
33777
|
+
border: 2px solid #e5e5e5;
|
|
33714
33778
|
border-radius: 8px;
|
|
33715
33779
|
}
|
|
33716
33780
|
|
|
33717
33781
|
.meter-bar {
|
|
33718
33782
|
width: 6px;
|
|
33719
33783
|
min-height: 4px;
|
|
33720
|
-
background:
|
|
33784
|
+
background: #d4d4d4;
|
|
33721
33785
|
border-radius: 2px;
|
|
33722
33786
|
transition: height 50ms ease-out, background 100ms ease;
|
|
33723
33787
|
}
|
|
33724
33788
|
|
|
33725
33789
|
.meter-bar.active {
|
|
33726
|
-
background:
|
|
33790
|
+
background: #10b981;
|
|
33727
33791
|
}
|
|
33728
33792
|
|
|
33729
33793
|
.meter-inactive {
|
|
@@ -33732,14 +33796,15 @@
|
|
|
33732
33796
|
justify-content: center;
|
|
33733
33797
|
height: 32px;
|
|
33734
33798
|
padding: 8px 12px;
|
|
33735
|
-
background:
|
|
33799
|
+
background: #ffffff;
|
|
33800
|
+
border: 2px solid #e5e5e5;
|
|
33736
33801
|
border-radius: 8px;
|
|
33737
|
-
color:
|
|
33802
|
+
color: #737373;
|
|
33738
33803
|
font-size: 13px;
|
|
33739
33804
|
}
|
|
33740
33805
|
|
|
33741
33806
|
.meter-error {
|
|
33742
|
-
color: #
|
|
33807
|
+
color: #dc2626;
|
|
33743
33808
|
}
|
|
33744
33809
|
`,
|
|
33745
33810
|
]; }
|
|
@@ -33936,18 +34001,18 @@
|
|
|
33936
34001
|
}
|
|
33937
34002
|
|
|
33938
34003
|
.settings-section-icon {
|
|
33939
|
-
color: #
|
|
34004
|
+
color: #0d9488;
|
|
33940
34005
|
}
|
|
33941
34006
|
|
|
33942
34007
|
.settings-section-title {
|
|
33943
34008
|
font-size: 14px;
|
|
33944
34009
|
font-weight: 600;
|
|
33945
|
-
color:
|
|
34010
|
+
color: #171717;
|
|
33946
34011
|
}
|
|
33947
34012
|
|
|
33948
34013
|
.settings-section-description {
|
|
33949
34014
|
font-size: 13px;
|
|
33950
|
-
color:
|
|
34015
|
+
color: #525252;
|
|
33951
34016
|
line-height: 1.5;
|
|
33952
34017
|
margin-bottom: 14px;
|
|
33953
34018
|
}
|
|
@@ -33976,10 +34041,10 @@
|
|
|
33976
34041
|
.settings-select {
|
|
33977
34042
|
width: 100%;
|
|
33978
34043
|
padding: 12px 40px 12px 14px;
|
|
33979
|
-
background:
|
|
33980
|
-
border: 1px solid
|
|
34044
|
+
background: #ffffff;
|
|
34045
|
+
border: 1px solid #d4d4d4;
|
|
33981
34046
|
border-radius: 10px;
|
|
33982
|
-
color:
|
|
34047
|
+
color: #171717;
|
|
33983
34048
|
font-size: 14px;
|
|
33984
34049
|
font-family: inherit;
|
|
33985
34050
|
cursor: pointer;
|
|
@@ -33989,19 +34054,19 @@
|
|
|
33989
34054
|
}
|
|
33990
34055
|
|
|
33991
34056
|
.settings-select:hover {
|
|
33992
|
-
border-color:
|
|
33993
|
-
background:
|
|
34057
|
+
border-color: #a3a3a3;
|
|
34058
|
+
background: #ffffff;
|
|
33994
34059
|
}
|
|
33995
34060
|
|
|
33996
34061
|
.settings-select:focus {
|
|
33997
34062
|
outline: none;
|
|
33998
|
-
border-color: #
|
|
33999
|
-
box-shadow: 0 0 0 3px rgba(
|
|
34063
|
+
border-color: #0d9488;
|
|
34064
|
+
box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
|
|
34000
34065
|
}
|
|
34001
34066
|
|
|
34002
34067
|
.settings-select option {
|
|
34003
|
-
background: #
|
|
34004
|
-
color:
|
|
34068
|
+
background: #ffffff;
|
|
34069
|
+
color: #171717;
|
|
34005
34070
|
padding: 8px;
|
|
34006
34071
|
}
|
|
34007
34072
|
|
|
@@ -34011,8 +34076,8 @@
|
|
|
34011
34076
|
}
|
|
34012
34077
|
|
|
34013
34078
|
.settings-select:disabled:hover {
|
|
34014
|
-
border-color:
|
|
34015
|
-
background:
|
|
34079
|
+
border-color: #d4d4d4;
|
|
34080
|
+
background: #ffffff;
|
|
34016
34081
|
}
|
|
34017
34082
|
|
|
34018
34083
|
.settings-select-arrow {
|
|
@@ -34021,12 +34086,12 @@
|
|
|
34021
34086
|
top: 50%;
|
|
34022
34087
|
transform: translateY(-50%);
|
|
34023
34088
|
pointer-events: none;
|
|
34024
|
-
color:
|
|
34089
|
+
color: #737373;
|
|
34025
34090
|
}
|
|
34026
34091
|
|
|
34027
34092
|
.settings-permission-note {
|
|
34028
34093
|
font-size: 12px;
|
|
34029
|
-
color:
|
|
34094
|
+
color: #737373;
|
|
34030
34095
|
margin-top: 10px;
|
|
34031
34096
|
font-style: italic;
|
|
34032
34097
|
}
|
|
@@ -34036,7 +34101,7 @@
|
|
|
34036
34101
|
align-items: center;
|
|
34037
34102
|
gap: 4px;
|
|
34038
34103
|
font-size: 11px;
|
|
34039
|
-
color: #
|
|
34104
|
+
color: #059669;
|
|
34040
34105
|
font-weight: 500;
|
|
34041
34106
|
opacity: 0;
|
|
34042
34107
|
transition: opacity 0.2s ease;
|
|
@@ -34052,28 +34117,34 @@
|
|
|
34052
34117
|
align-items: center;
|
|
34053
34118
|
justify-content: space-between;
|
|
34054
34119
|
padding: 12px 14px;
|
|
34055
|
-
background:
|
|
34056
|
-
border: 1px solid
|
|
34120
|
+
background: #ffffff;
|
|
34121
|
+
border: 1px solid #e5e5e5;
|
|
34057
34122
|
border-radius: 10px;
|
|
34123
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
34058
34124
|
}
|
|
34059
34125
|
|
|
34060
34126
|
.settings-toggle-label {
|
|
34061
34127
|
font-size: 14px;
|
|
34062
|
-
color:
|
|
34128
|
+
color: #171717;
|
|
34063
34129
|
}
|
|
34064
34130
|
|
|
34065
34131
|
.settings-toggle {
|
|
34066
34132
|
position: relative;
|
|
34067
34133
|
width: 44px;
|
|
34068
34134
|
height: 24px;
|
|
34069
|
-
background:
|
|
34135
|
+
background: #d4d4d4;
|
|
34070
34136
|
border-radius: 12px;
|
|
34071
34137
|
cursor: pointer;
|
|
34072
34138
|
transition: background 0.2s ease;
|
|
34073
34139
|
}
|
|
34074
34140
|
|
|
34075
34141
|
.settings-toggle.active {
|
|
34076
|
-
background: #
|
|
34142
|
+
background: #0d9488;
|
|
34143
|
+
}
|
|
34144
|
+
|
|
34145
|
+
.settings-toggle:focus {
|
|
34146
|
+
outline: none;
|
|
34147
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
34077
34148
|
}
|
|
34078
34149
|
|
|
34079
34150
|
.settings-toggle-knob {
|
|
@@ -34431,17 +34502,18 @@
|
|
|
34431
34502
|
}
|
|
34432
34503
|
|
|
34433
34504
|
.snippet-item {
|
|
34434
|
-
background:
|
|
34435
|
-
border: 1px solid
|
|
34505
|
+
background: #ffffff;
|
|
34506
|
+
border: 1px solid #e5e5e5;
|
|
34436
34507
|
border-radius: 10px;
|
|
34437
34508
|
padding: 14px;
|
|
34438
34509
|
transition: all 0.15s ease;
|
|
34439
34510
|
position: relative;
|
|
34511
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
34440
34512
|
}
|
|
34441
34513
|
|
|
34442
34514
|
.snippet-item:hover {
|
|
34443
|
-
|
|
34444
|
-
|
|
34515
|
+
border-color: #d4d4d4;
|
|
34516
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
34445
34517
|
}
|
|
34446
34518
|
|
|
34447
34519
|
.snippet-trigger {
|
|
@@ -34454,7 +34526,7 @@
|
|
|
34454
34526
|
.snippet-trigger-text {
|
|
34455
34527
|
font-size: 14px;
|
|
34456
34528
|
font-weight: 600;
|
|
34457
|
-
color: #
|
|
34529
|
+
color: #0d9488;
|
|
34458
34530
|
}
|
|
34459
34531
|
|
|
34460
34532
|
.snippet-trigger-text::before {
|
|
@@ -34472,12 +34544,12 @@
|
|
|
34472
34544
|
align-items: flex-start;
|
|
34473
34545
|
gap: 8px;
|
|
34474
34546
|
font-size: 13px;
|
|
34475
|
-
color:
|
|
34547
|
+
color: #525252;
|
|
34476
34548
|
line-height: 1.5;
|
|
34477
34549
|
}
|
|
34478
34550
|
|
|
34479
34551
|
.snippet-expansion-arrow {
|
|
34480
|
-
color:
|
|
34552
|
+
color: #a3a3a3;
|
|
34481
34553
|
flex-shrink: 0;
|
|
34482
34554
|
margin-top: 2px;
|
|
34483
34555
|
}
|
|
@@ -34506,13 +34578,13 @@
|
|
|
34506
34578
|
display: flex;
|
|
34507
34579
|
align-items: center;
|
|
34508
34580
|
justify-content: center;
|
|
34509
|
-
color:
|
|
34581
|
+
color: #737373;
|
|
34510
34582
|
transition: all 0.15s ease;
|
|
34511
34583
|
}
|
|
34512
34584
|
|
|
34513
34585
|
.edit-btn:hover {
|
|
34514
|
-
background: rgba(
|
|
34515
|
-
color: #
|
|
34586
|
+
background: rgba(13, 148, 136, 0.1);
|
|
34587
|
+
color: #0d9488;
|
|
34516
34588
|
}
|
|
34517
34589
|
`,
|
|
34518
34590
|
]; }
|
|
@@ -34795,30 +34867,32 @@
|
|
|
34795
34867
|
gap: 8px;
|
|
34796
34868
|
padding: 8px 12px;
|
|
34797
34869
|
background: rgba(139, 92, 246, 0.1);
|
|
34798
|
-
border: 1px solid rgba(139, 92, 246, 0.
|
|
34870
|
+
border: 1px solid rgba(139, 92, 246, 0.25);
|
|
34799
34871
|
border-radius: 8px;
|
|
34800
34872
|
transition: all 0.15s ease;
|
|
34801
34873
|
}
|
|
34802
34874
|
|
|
34803
34875
|
.vocabulary-chip:hover {
|
|
34804
34876
|
background: rgba(139, 92, 246, 0.15);
|
|
34805
|
-
border-color: rgba(139, 92, 246, 0.
|
|
34877
|
+
border-color: rgba(139, 92, 246, 0.35);
|
|
34806
34878
|
}
|
|
34807
34879
|
|
|
34808
34880
|
.vocabulary-chip-text {
|
|
34809
34881
|
font-size: 13px;
|
|
34810
34882
|
font-weight: 500;
|
|
34811
|
-
color: #
|
|
34883
|
+
color: #7c3aed;
|
|
34812
34884
|
}
|
|
34813
34885
|
|
|
34814
34886
|
.vocabulary-chip .delete-btn {
|
|
34815
34887
|
width: 20px;
|
|
34816
34888
|
height: 20px;
|
|
34817
34889
|
margin: -4px -4px -4px 0;
|
|
34890
|
+
color: #737373;
|
|
34818
34891
|
}
|
|
34819
34892
|
|
|
34820
34893
|
.vocabulary-chip .delete-btn:hover {
|
|
34821
34894
|
background: rgba(239, 68, 68, 0.2);
|
|
34895
|
+
color: #f87171;
|
|
34822
34896
|
}
|
|
34823
34897
|
`,
|
|
34824
34898
|
]; }
|
|
@@ -35219,14 +35293,14 @@
|
|
|
35219
35293
|
}
|
|
35220
35294
|
|
|
35221
35295
|
.modal-card {
|
|
35222
|
-
background: #
|
|
35296
|
+
background: #f5f5f4;
|
|
35223
35297
|
border-radius: 16px;
|
|
35224
35298
|
width: 90%;
|
|
35225
35299
|
max-width: 400px;
|
|
35226
35300
|
display: flex;
|
|
35227
35301
|
flex-direction: column;
|
|
35228
|
-
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.
|
|
35229
|
-
0 0 0 1px rgba(
|
|
35302
|
+
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
|
|
35303
|
+
0 0 0 1px rgba(0, 0, 0, 0.05);
|
|
35230
35304
|
transform: scale(0.95) translateY(10px);
|
|
35231
35305
|
transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
|
35232
35306
|
pointer-events: auto;
|
|
@@ -35242,14 +35316,14 @@
|
|
|
35242
35316
|
align-items: center;
|
|
35243
35317
|
justify-content: space-between;
|
|
35244
35318
|
padding: 16px 20px;
|
|
35245
|
-
border-bottom: 1px solid
|
|
35246
|
-
background:
|
|
35319
|
+
border-bottom: 1px solid #e5e5e5;
|
|
35320
|
+
background: #ffffff;
|
|
35247
35321
|
}
|
|
35248
35322
|
|
|
35249
35323
|
.modal-title {
|
|
35250
35324
|
font-size: 16px;
|
|
35251
35325
|
font-weight: 600;
|
|
35252
|
-
color:
|
|
35326
|
+
color: #171717;
|
|
35253
35327
|
margin: 0;
|
|
35254
35328
|
letter-spacing: -0.01em;
|
|
35255
35329
|
}
|
|
@@ -35264,13 +35338,22 @@
|
|
|
35264
35338
|
display: flex;
|
|
35265
35339
|
align-items: center;
|
|
35266
35340
|
justify-content: center;
|
|
35267
|
-
color:
|
|
35341
|
+
color: #737373;
|
|
35268
35342
|
transition: all 0.15s ease;
|
|
35269
35343
|
}
|
|
35270
35344
|
|
|
35271
35345
|
.close-button:hover {
|
|
35272
|
-
background:
|
|
35273
|
-
color:
|
|
35346
|
+
background: #f5f5f4;
|
|
35347
|
+
color: #171717;
|
|
35348
|
+
}
|
|
35349
|
+
|
|
35350
|
+
.close-button:focus {
|
|
35351
|
+
outline: none;
|
|
35352
|
+
box-shadow: 0 0 0 2px #0d9488, 0 0 0 4px rgba(13, 148, 136, 0.2);
|
|
35353
|
+
}
|
|
35354
|
+
|
|
35355
|
+
.close-button:active {
|
|
35356
|
+
transform: scale(0.95);
|
|
35274
35357
|
}
|
|
35275
35358
|
|
|
35276
35359
|
.modal-body {
|
|
@@ -35282,8 +35365,8 @@
|
|
|
35282
35365
|
justify-content: flex-end;
|
|
35283
35366
|
gap: 10px;
|
|
35284
35367
|
padding: 16px 20px;
|
|
35285
|
-
border-top: 1px solid
|
|
35286
|
-
background:
|
|
35368
|
+
border-top: 1px solid #e5e5e5;
|
|
35369
|
+
background: #ffffff;
|
|
35287
35370
|
}
|
|
35288
35371
|
|
|
35289
35372
|
.btn {
|
|
@@ -35300,42 +35383,47 @@
|
|
|
35300
35383
|
}
|
|
35301
35384
|
|
|
35302
35385
|
.btn-secondary {
|
|
35303
|
-
background: rgba(
|
|
35304
|
-
color:
|
|
35386
|
+
background: rgba(0, 0, 0, 0.08);
|
|
35387
|
+
color: #525252;
|
|
35305
35388
|
}
|
|
35306
35389
|
|
|
35307
35390
|
.btn-secondary:hover {
|
|
35308
|
-
background: rgba(
|
|
35309
|
-
color:
|
|
35391
|
+
background: rgba(0, 0, 0, 0.12);
|
|
35392
|
+
color: #171717;
|
|
35310
35393
|
}
|
|
35311
35394
|
|
|
35312
35395
|
.btn-primary {
|
|
35313
|
-
background:
|
|
35396
|
+
background: #0d9488;
|
|
35314
35397
|
color: white;
|
|
35315
|
-
box-shadow: 0
|
|
35398
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
35316
35399
|
}
|
|
35317
35400
|
|
|
35318
35401
|
.btn-primary:hover {
|
|
35319
|
-
|
|
35320
|
-
box-shadow: 0 4px 12px rgba(
|
|
35402
|
+
background: #0f766e;
|
|
35403
|
+
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
|
|
35404
|
+
}
|
|
35405
|
+
|
|
35406
|
+
.btn-primary:focus {
|
|
35407
|
+
outline: none;
|
|
35408
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
35321
35409
|
}
|
|
35322
35410
|
|
|
35323
35411
|
.btn-primary:active {
|
|
35324
|
-
transform:
|
|
35412
|
+
transform: scale(0.98);
|
|
35325
35413
|
}
|
|
35326
35414
|
|
|
35327
35415
|
/* Success state for copy button */
|
|
35328
35416
|
.btn-success {
|
|
35329
|
-
background:
|
|
35417
|
+
background: #059669;
|
|
35330
35418
|
}
|
|
35331
35419
|
|
|
35332
35420
|
/* Text display area */
|
|
35333
35421
|
.text-display {
|
|
35334
|
-
background:
|
|
35335
|
-
border: 1px solid
|
|
35422
|
+
background: #ffffff;
|
|
35423
|
+
border: 1px solid #e5e5e5;
|
|
35336
35424
|
border-radius: 10px;
|
|
35337
35425
|
padding: 14px 16px;
|
|
35338
|
-
color:
|
|
35426
|
+
color: #171717;
|
|
35339
35427
|
font-size: 14px;
|
|
35340
35428
|
line-height: 1.5;
|
|
35341
35429
|
max-height: 200px;
|
|
@@ -35354,12 +35442,12 @@
|
|
|
35354
35442
|
}
|
|
35355
35443
|
|
|
35356
35444
|
.text-display::-webkit-scrollbar-thumb {
|
|
35357
|
-
background: rgba(
|
|
35445
|
+
background: rgba(0, 0, 0, 0.15);
|
|
35358
35446
|
border-radius: 3px;
|
|
35359
35447
|
}
|
|
35360
35448
|
|
|
35361
35449
|
.text-display::-webkit-scrollbar-thumb:hover {
|
|
35362
|
-
background: rgba(
|
|
35450
|
+
background: rgba(0, 0, 0, 0.25);
|
|
35363
35451
|
}
|
|
35364
35452
|
|
|
35365
35453
|
/* Instruction list styling */
|
|
@@ -35374,7 +35462,7 @@
|
|
|
35374
35462
|
align-items: flex-start;
|
|
35375
35463
|
gap: 12px;
|
|
35376
35464
|
padding: 12px 0;
|
|
35377
|
-
border-bottom: 1px solid
|
|
35465
|
+
border-bottom: 1px solid #e5e5e5;
|
|
35378
35466
|
}
|
|
35379
35467
|
|
|
35380
35468
|
.instruction-item:last-child {
|
|
@@ -35385,7 +35473,7 @@
|
|
|
35385
35473
|
width: 24px;
|
|
35386
35474
|
height: 24px;
|
|
35387
35475
|
border-radius: 50%;
|
|
35388
|
-
background:
|
|
35476
|
+
background: #0d9488;
|
|
35389
35477
|
color: white;
|
|
35390
35478
|
font-size: 12px;
|
|
35391
35479
|
font-weight: 700;
|
|
@@ -35397,7 +35485,7 @@
|
|
|
35397
35485
|
|
|
35398
35486
|
.instruction-text {
|
|
35399
35487
|
font-size: 14px;
|
|
35400
|
-
color:
|
|
35488
|
+
color: #171717;
|
|
35401
35489
|
line-height: 1.5;
|
|
35402
35490
|
padding-top: 2px;
|
|
35403
35491
|
}
|
|
@@ -35455,7 +35543,7 @@
|
|
|
35455
35543
|
width: 32px;
|
|
35456
35544
|
height: 32px;
|
|
35457
35545
|
border-radius: 8px;
|
|
35458
|
-
background: linear-gradient(135deg, #
|
|
35546
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
35459
35547
|
display: flex;
|
|
35460
35548
|
align-items: center;
|
|
35461
35549
|
justify-content: center;
|
|
@@ -35469,31 +35557,35 @@
|
|
|
35469
35557
|
}
|
|
35470
35558
|
|
|
35471
35559
|
.modal-title {
|
|
35472
|
-
background: linear-gradient(135deg, #
|
|
35560
|
+
background: linear-gradient(135deg, #14b8a6 0%, #2563eb 100%);
|
|
35473
35561
|
-webkit-background-clip: text;
|
|
35474
35562
|
-webkit-text-fill-color: transparent;
|
|
35475
35563
|
background-clip: text;
|
|
35476
35564
|
}
|
|
35477
35565
|
|
|
35478
35566
|
.btn-primary {
|
|
35479
|
-
background:
|
|
35480
|
-
box-shadow: 0
|
|
35567
|
+
background: #0d9488;
|
|
35568
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
35481
35569
|
border-radius: 999px;
|
|
35482
35570
|
}
|
|
35483
35571
|
|
|
35484
35572
|
.btn-primary:hover {
|
|
35485
|
-
background:
|
|
35486
|
-
|
|
35487
|
-
|
|
35573
|
+
background: #0f766e;
|
|
35574
|
+
box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
|
|
35575
|
+
}
|
|
35576
|
+
|
|
35577
|
+
.btn-primary:focus {
|
|
35578
|
+
outline: none;
|
|
35579
|
+
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0d9488;
|
|
35488
35580
|
}
|
|
35489
35581
|
|
|
35490
35582
|
.btn-primary:active {
|
|
35491
|
-
transform:
|
|
35583
|
+
transform: scale(0.98);
|
|
35492
35584
|
}
|
|
35493
35585
|
|
|
35494
35586
|
.btn-success {
|
|
35495
|
-
background:
|
|
35496
|
-
box-shadow: 0
|
|
35587
|
+
background: #059669;
|
|
35588
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
35497
35589
|
border-radius: 999px;
|
|
35498
35590
|
}
|
|
35499
35591
|
|
|
@@ -35507,14 +35599,15 @@
|
|
|
35507
35599
|
gap: 6px;
|
|
35508
35600
|
margin-top: 12px;
|
|
35509
35601
|
padding: 8px 12px;
|
|
35510
|
-
background:
|
|
35602
|
+
background: #ffffff;
|
|
35603
|
+
border: 1px solid #e5e5e5;
|
|
35511
35604
|
border-radius: 8px;
|
|
35512
35605
|
font-size: 12px;
|
|
35513
|
-
color:
|
|
35606
|
+
color: #525252;
|
|
35514
35607
|
}
|
|
35515
35608
|
|
|
35516
35609
|
.hint-icon {
|
|
35517
|
-
color: #
|
|
35610
|
+
color: #0d9488;
|
|
35518
35611
|
flex-shrink: 0;
|
|
35519
35612
|
}
|
|
35520
35613
|
|