File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 16
16
:spec
17
17
[" EUR/USD" " USD/CHF" " GBP/USD" " USD/SEK" " USD/NOK" " USD/CAD" " USD/JPY"
18
18
" AUD/USD" " NZD/USD" " USD/MXN" " USD/ZAR" " EUR/JPY" " EUR/CHF" " EUR/GBP" " GBP/JPY" ]}
19
- {:type :select :path [2 :trailing-n ], :name " DailyLoad #" , :spec [2 5 10 20 30 50 80 100 120 150 ]}
19
+ {:type :select :path [2 :trailing-n ], :name " trailing #" , :spec [2 5 10 20 30 50 80 100 120 150 ]}
20
20
{:type :select :path [2 :atr-n ], :name " dATR#" , :spec [5 10 20 30 ]}
21
21
{:type :select :path [2 :percentile ], :name " dPercentile" , :spec [10 20 30 40 50 60 70 80 90 ]}
22
22
{:type :select :path [2 :step ], :name " dStep" , :spec [0.001 1.0E-4 4.0E-5 ]}
Original file line number Diff line number Diff line change 13
13
display : grid;
14
14
gap : "1rem" ;
15
15
grid-template-columns : repeat (auto-fit, 100px 200px ); /* minmax(200px,1fr) */
16
- grid-template-rows : repeat (auto-fill , 30 px );
16
+ grid-template-rows : repeat (14 px );
17
17
grid-auto-flow : row;
18
18
19
19
}
Original file line number Diff line number Diff line change 26
26
(defn create-edit-element [{:keys [set-fn get-fn]} {:keys [path name type] :as options}]
27
27
(let [editor (get-editor type)]
28
28
[:<>
29
- [:span name] ; <label for= "pet-select" >Choose a pet:</label>
29
+ [:span
30
+ {:style {:text-overflow " ellipsis"
31
+ :overflow " hidden"
32
+ :display " inline-block" }}
33
+
34
+ name] ; <label for= "pet-select" >Choose a pet:</label>
30
35
[editor {:set-fn (partial set-fn path)
31
36
:options options}
32
37
(get-fn path)]]))
You can’t perform that action at this time.
0 commit comments