File tree 2 files changed +20
-12
lines changed
2 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 116
116
(sanitize-css (string/join (check-semicolons evald-args))))))
117
117
118
118
(defmacro get-body-line-common-style []
119
- `(css " min-height: 14px;"
120
- ; apply following only as part of Firefox-specific styling
121
- " -moz-display: flex;"
122
- " -moz-align-items: start;" ))
119
+ `(css " min-height: 14px;" ))
123
120
124
121
(defmacro get-common-type-header-style []
125
122
`(css (str " color: " (named-color :type-text ) " ;" )
173
170
" vertical-align: top;"
174
171
" position: relative;"
175
172
" margin-right: 3px;"
176
- " -moz-margin-top: 2px;" ; apply just under Firefox
177
173
" border-radius: 2px;"
178
174
" user-select: none;"
179
175
(if (= ~kind :slim )
Original file line number Diff line number Diff line change 406
406
; see https://github.com/binaryage/cljs-devtools/pull/73
407
407
(def firefox-overrides-config
408
408
(delay
409
- {:fn-header-style (css " display: inline-flex;"
410
- " align-items: center;" )
411
- :type-ref-style (css (str " background-color:" (named-color :type ) " ;" )
412
- " border-radius: 0 2px 2px 0;" )
413
- :native-reference-style (css " padding: 0px 3px;"
414
- " position: relative;"
415
- " top: 1px;" )
409
+ {:native-reference-wrapper-style (css " line-height: 0;"
410
+ " margin-top: -1px;" )
411
+ :symbol-style (css " overflow: initial;" )
412
+ :fn-header-style (css " display: inline-flex;"
413
+ " align-items: center;" )
414
+ :type-ref-style (css (str " background-color:" (named-color :type ) " ;" )
415
+ " border-radius: 0 2px 2px 0;" )
416
+ :native-reference-style (css " padding: 0px 3px;"
417
+ " position: relative;"
418
+ " top: 1px;" )
419
+ :standard-li-style (css " margin-left: 0px;"
420
+ " display: flex;"
421
+ " align-items: start;" )
422
+ :standard-li-no-margin-style (css " margin-left: 0px;"
423
+ " display: flex;"
424
+ " align-items: start;" )
425
+ :aligned-li-style (css " margin-left: 0px;"
426
+ " display: flex;"
427
+ " align-items: start;" )
416
428
}))
You can’t perform that action at this time.
0 commit comments