mirror of
https://github.com/status-im/re-frame-10x.git
synced 2025-01-14 08:24:39 +00:00
Increased body text font from 12px to 14px, adjusted checkbox so it lines up and improved the input-text styling
This commit is contained in:
parent
4ee67221ad
commit
9a6b3f55ae
@ -218,7 +218,10 @@
|
|||||||
|
|
||||||
;; input-text - set to 26px high
|
;; input-text - set to 26px high
|
||||||
[:.rc-input-text
|
[:.rc-input-text
|
||||||
[:input {:height "26px"}]]
|
[:input {:height "25px"
|
||||||
|
:border-radius "2px"
|
||||||
|
:background-color "white"
|
||||||
|
:border (str "1px solid " white-background-border-color)}]]
|
||||||
|
|
||||||
;; input-time - set to 26px high
|
;; input-time - set to 26px high
|
||||||
[:.rc-input-time {:height "26px"}]
|
[:.rc-input-time {:height "26px"}]
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
[day8.re-frame.trace.utils.re-com :as rc]
|
[day8.re-frame.trace.utils.re-com :as rc]
|
||||||
[day8.re-frame.trace.view.app-db :as app-db]
|
[day8.re-frame.trace.view.app-db :as app-db]
|
||||||
[cljs.spec.alpha :as spec]
|
[cljs.spec.alpha :as spec]
|
||||||
[day8.re-frame.trace.view.timing :as timing]))
|
[day8.re-frame.trace.view.timing :as timing]
|
||||||
|
[day8.re-frame.trace.view.settings :as settings]))
|
||||||
|
|
||||||
(def background-gray common/background-gray)
|
(def background-gray common/background-gray)
|
||||||
(def background-gray-hint common/background-gray-hint)
|
(def background-gray-hint common/background-gray-hint)
|
||||||
@ -36,7 +37,7 @@
|
|||||||
|
|
||||||
;; /*! abridged from normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
;; /*! abridged from normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
||||||
{:line-height "1.15"
|
{:line-height "1.15"
|
||||||
:font-size "12px"}
|
:font-size "14px"}
|
||||||
[:h1 {:font-size "2em"
|
[:h1 {:font-size "2em"
|
||||||
:margin "0.67em 0"}]
|
:margin "0.67em 0"}]
|
||||||
[:div :nav :h1 :h2 :h3 :h4 :h5 :h6 {:display "block"}]
|
[:div :nav :h1 :h2 :h3 :h4 :h5 :h6 {:display "block"}]
|
||||||
@ -74,7 +75,8 @@
|
|||||||
{:-webkit-appearance "button"}]
|
{:-webkit-appearance "button"}]
|
||||||
[(s/input (s/attr= "type" "checkbox"))
|
[(s/input (s/attr= "type" "checkbox"))
|
||||||
{:-webkit-appearance "checkbox"
|
{:-webkit-appearance "checkbox"
|
||||||
:box-sizing "border-box"}]
|
:box-sizing "border-box"
|
||||||
|
:margin-top "3px"}]
|
||||||
|
|
||||||
[:button:-moz-focusring
|
[:button:-moz-focusring
|
||||||
(s/attr= "type" "button")
|
(s/attr= "type" "button")
|
||||||
@ -425,7 +427,13 @@
|
|||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
(def panel-styles (apply garden/css [css-reset [:#--re-frame-trace-- rc/re-com-css] common/blue-modern re-frame-trace-styles app-db/app-db-styles timing/timing-styles]))
|
(def panel-styles (apply garden/css [css-reset
|
||||||
|
[:#--re-frame-trace-- rc/re-com-css]
|
||||||
|
common/blue-modern
|
||||||
|
re-frame-trace-styles
|
||||||
|
app-db/app-db-styles
|
||||||
|
timing/timing-styles
|
||||||
|
settings/settings-styles]))
|
||||||
;(def panel-styles (macros/slurp-macro "day8/re_frame/trace/main.css"))
|
;(def panel-styles (macros/slurp-macro "day8/re_frame/trace/main.css"))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user