From f083bc0b32ee3422cc13ac6127fd75be3ecac818 Mon Sep 17 00:00:00 2001 From: frantic1048 Date: Thu, 18 May 2017 20:47:30 +0800 Subject: [PATCH] refine for atom 1.17.0 - style for .atom-dock-toggle-button - fix .input-checkbox bg color - fade .table border-color under .settings-veiw --- index.less | 1 + styles/atom.less | 5 +++++ styles/input-checkbox.less | 8 ++++++++ styles/settings-view.less | 5 +++++ 4 files changed, 19 insertions(+) create mode 100644 styles/input-checkbox.less diff --git a/index.less b/index.less index 236bf19..a4d5229 100644 --- a/index.less +++ b/index.less @@ -12,6 +12,7 @@ @import "styles/sites"; @import "styles/tabs"; @import "styles/text"; +@import "styles/input-checkbox"; @import "styles/tooltips"; @import "styles/tree-view"; @import "styles/utilities"; diff --git a/styles/atom.less b/styles/atom.less index 19b15ff..af24012 100644 --- a/styles/atom.less +++ b/styles/atom.less @@ -43,3 +43,8 @@ atom-notifications{ height: auto; } } + +.atom-dock-toggle-button .atom-dock-toggle-button-inner { + background: @overlay-background-color; + border: none; +} diff --git a/styles/input-checkbox.less b/styles/input-checkbox.less new file mode 100644 index 0000000..a61225f --- /dev/null +++ b/styles/input-checkbox.less @@ -0,0 +1,8 @@ +.input-checkbox:checked { + background-color: @background-color-highlight; +} + +.input-checkbox::before, +.input-checkbox::after { + background-color: @background-color-success; +} diff --git a/styles/settings-view.less b/styles/settings-view.less index d6c4275..47269bf 100644 --- a/styles/settings-view.less +++ b/styles/settings-view.less @@ -12,4 +12,9 @@ background: fade(lighten(@tab-bar-tab-background-color, 25%), 30%); } } + + .table td, + .table th { + border-color: fade(@base-border-color, 10%); + } }