diff --git a/src/components/PlayWay.vue b/src/components/PlayWay.vue
index c9fe03d0..d0adfab7 100644
--- a/src/components/PlayWay.vue
+++ b/src/components/PlayWay.vue
@@ -30,6 +30,27 @@
{{ Lang[Type].game }}
{{ tableData.number_tab_number || '0-0' }}
+
+
+
+ {{ Lang[Type].askbanker }}
+
+
+
+
+
+
+
+
+ {{ Lang[Type].askplayer }}
+
+
+
+
+
+
+
+
@@ -56,36 +77,6 @@
-
-
-
-
-
{{ Lang[Type].askbanker }}
-
-
-
-
-
-
-
-
-
-
-
-
-
{{ Lang[Type].askplayer }}
-
-
-
-
-
-
-
-
-
-
-
-
@@ -272,72 +263,60 @@ export default {
}
/* Ask Panel - Integrated into grid (bottom 3 rows, far right) */
- .ask-panel {
- position: absolute;
- right: 0;
- bottom: 0;
- width: 20%;
- height: 33%;
+ .ask-panel-inline {
+ margin-left: auto;
display: flex;
- background: rgba(255,255,255,0.92);
- border-left: 1px solid #ddd;
- border-top: 1px solid #ddd;
- z-index: 10;
+ gap: 8px;
+ align-items: center;
.ask-group {
- flex: 1;
display: flex;
- flex-direction: column;
align-items: center;
- justify-content: center;
+ gap: 3px;
cursor: pointer;
-
- &.banker {
- border-right: 1px solid #f5f5f5;
- }
- .ask-title {
- font-size: 11px !important;
+ .ask-label {
+ font-size: 10px;
font-weight: 500;
- color: #333;
- margin-bottom: 2px;
- white-space: nowrap;
+ margin-right: 2px;
}
- .ask-icons {
- display: flex;
- gap: 4px;
- align-items: center;
-
- .dot {
- display: inline-block;
- &.solid {
- width: 10px;
- height: 10px;
- border-radius: 50%;
- &.red { background: #e40000; }
- &.blue { background: #0056ee; }
- }
- &.hollow {
- width: 8px;
- height: 8px;
- border-radius: 50%;
- border: 1.5px solid;
- &.red { border-color: #e40000; }
- &.blue { border-color: #0056ee; }
- }
- &.slash {
- width: 2px;
- height: 10px;
- transform: rotate(-45deg);
- border-radius: 1px;
- &.red { background: #e40000; }
- &.blue { background: #0056ee; }
+ .dot {
+ display: inline-block;
+ &.solid {
+ width: 8px;
+ height: 8px;
+ border-radius: 50%;
+ &.red { background: #e40000; }
+ &.blue { background: #0056ee; }
+ }
+ &.hollow {
+ width: 7px;
+ height: 7px;
+ border-radius: 50%;
+ border: 1.5px solid;
+ &.red { border-color: #e40000; }
+ &.blue { border-color: #0056ee; }
+ }
+ &.slash {
+ width: 7px;
+ height: 7px;
+ position: relative;
+ &::before {
+ content: '';
+ position: absolute;
+ top: 0; left: 50%;
+ width: 1.5px;
+ height: 100%;
+ transform: rotate(45deg);
}
+ &.red::before { background: #e40000; }
+ &.blue::before { background: #0056ee; }
}
}
}
}
+
}
}